All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Wu X.C." <bobwxc@email.cn>
To: yanteng si <siyanteng01@gmail.com>
Cc: Yanteng Si <siyanteng@loongson.cn>,
	Jonathan Corbet <corbet@lwn.net>, Alex Shi <alexs@kernel.org>,
	Alex Shi <alex.shi@linux.alibaba.com>,
	Huacai Chen <chenhuacai@kernel.org>,
	Jiaxun Yang <jiaxun.yang@flygoat.com>,
	Harry Wei <harryxiyou@gmail.com>,
	linux-doc@vger.kernel.org, Puyu Wang <realpuyuwang@gmail.com>
Subject: Re: [PATCH 06/11] docs/zh_CN: add core-api/index.rst translation
Date: Wed, 7 Apr 2021 13:13:57 +0800	[thread overview]
Message-ID: <20210407051357.GC20005@bobwxc.top> (raw)
In-Reply-To: <CAEensMz20X=Oj8qc5Rd6=iRT1CsmfWpF3jS74KQEXe4H4CEmrQ@mail.gmail.com>

On Wed, Apr 07, 2021 at 11:30:44AM +0800, yanteng si wrote:
> Wu X.C. <bobwxc@email.cn> 于2021年4月7日周三 上午12:39写道:
> >
> > On Tue, Apr 06, 2021 at 09:02:05PM +0800, Yanteng Si wrote:
> > > This patch translates Documentation/core-api/index.rst into Chinese.
> > > add Documentation/translations/zh_CN/core-api/irq/* to zh_CN/core-api/index.rst.
> > >
> > > Signed-off-by: Yanteng Si <siyanteng@loongson.cn>
> > > ---
> > >  .../translations/zh_CN/core-api/index.rst     | 126 ++++++++++++++++++
> > >  1 file changed, 126 insertions(+)
> > >  create mode 100644 Documentation/translations/zh_CN/core-api/index.rst
> > >
> > > diff --git a/Documentation/translations/zh_CN/core-api/index.rst b/Documentation/translations/zh_CN/core-api/index.rst
> > > new file mode 100644
> > > index 000000000000..1d0e73b03858
> > > --- /dev/null
> > > +++ b/Documentation/translations/zh_CN/core-api/index.rst
> > > @@ -0,0 +1,126 @@
> > > +.. include:: ../disclaimer-zh_CN.rst
> > > +
> > > +:Original: :doc:`../../../core-api/irq/index`
> > > +:Translator: Yanteng Si <siyanteng@loongson.cn>
> > > +
> > > +.. _cn_core-api_index.rst:
> > > +
> > > +
> > > +======================
> > > +核心API文档
> > > +======================
> > > +
> > > +这是核心内核API手册的开端。 非常感谢为本手册转换(和编写!)的文档!
> >
> > 手册的首页
> OK!
> It's been confusing me for a long time,thank you very much!
> >
> > > +
> > > +核心公用程序
> >
> > 实用程序
> >
> > 规范用词:	实用程序
> > 英语名:		utility program,utility
> > 台湾名:		公用程式,公用常式
> > 见载:		海峡两岸信息科学技术名词
> > 学科:		信息科学技术
> > 公布年度:	2008
> >
> OK!
> > > +==============
> > > +
> > > +本节有通用文件和 "核心中的核心" 文件。 第一部分是 docbook 时期遗留下
> >
> > 本节包含通用的和“核心中的核心”文档。
> >
> OK!
> > > +来的大量 kerneldoc 信息;有朝一日,当有人找到精力去做的时候,真的
> > > +应该把它拆分出来。
> >
> > 若有人之后有动力的话,应当把它们拆分出来。
> ”有朝一日“ conflicts with ”之后“
> del "之后”
> OK?

Sure.

> >
> > > +
> > > +Todolist:
> > > +
> > > +   kernel-api
> > > +   workqueue
> > > +   printk-basics
> > > +   printk-formats
> > > +   symbol-namespaces
> > > +
> > > +数据结构和低级公用程序
> >
> > 实用程序
> >
> OK!
> > > +=======================================
> > > +
> > > +在整个内核中使用的函数库。
> >
> > missing 'functionality'
> >
> > 功能在整个内核中被使用的函数库。
> >
> function -> 函数(单个黑匣子)
> functionality -> 函数(累积的那种,很多个黑匣子)
> Library -> 库

OK, not matter.

> > > +
> > > +Todolist:
> > > +
> > > +   kobject
> > > +   kref
> > > +   assoc_array
> > > +   xarray
> > > +   idr
> > > +   circular-buffers
> > > +   rbtree
> > > +   generic-radix-tree
> > > +   packing
> > > +   bus-virt-phys-mapping
> > > +   this_cpu_ops
> > > +   timekeeping
> > > +   errseq
> > > +
> > > +并发原语
> > > +======================
> > > +
> > > +Linux如何让一切同时发生。 详情请参阅
> > > +:doc:`/locking/index`
> >
> > I'm not sure if the path suitable for tanslation dir?
> I have tested it before and everything is fine!

Great!

Thanks!

Wu X.C.

> >
> > > +
> > > +.. toctree::
> > > +   :maxdepth: 1
> > > +
> > > +   irq/index
> > > +
> > > +Todolist:
> > > +
> > > +   refcount-vs-atomic
> > > +   local_ops
> > > +   padata
> > > +   ../RCU/index
> > > +
> > > +低级硬件管理
> > > +=============================
> > > +
> > > +缓存管理,CPU热插拔管理等。
> > > +
> > > +Todolist:
> > > +
> > > +   cachetlb
> > > +   cpu_hotplug
> > > +   memory-hotplug
> > > +   genericirq
> > > +   protection-keys
> > > +
> > > +
> > > +内存管理
> > > +=================
> > > +
> > > +如何在内核中分配和使用内存。请注意,在
> > > +:doc:`/vm/index` 中有更多的内存管理文档。
> >
> > so as above
> I have tested it before and everything is fine!
> >
> > > +
> > > +Todolist:
> > > +
> > > +   memory-allocation
> > > +   unaligned-memory-access
> > > +   dma-api
> > > +   dma-api-howto
> > > +   dma-attributes
> > > +   dma-isa-lpc
> > > +   mm-api
> > > +   genalloc
> > > +   pin_user_pages
> > > +   boot-time-mm
> > > +   gfp_mask-from-fs-io
> > > +
> > > +内核调试的接口
> > > +===============================
> > > +
> > > +Todolist:
> > > +
> > > +   debug-objects
> > > +   tracepoint
> > > +   debugging-via-ohci1394
> > > +
> > > +其它一切文档
> >
> > maybe remove 一切 ?
> OK!
> >
> > > +===============
> > > +
> > > +不适合放在其它地方或尚未归类的文件;
> > > +
> > > +Todolist:
> > > +
> > > +   librs
> > > +
> > > +.. only:: subproject and html
> > > +
> > > +   Indices
> > > +   =======
> > > +
> > > +   * :ref:`genindex`
> > > --
> > > 2.27.0
> >
> Thanks
> 
> Yanteng


  reply	other threads:[~2021-04-07  5:14 UTC|newest]

Thread overview: 34+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-04-06 13:01 [PATCH 00/11] docs/zh_CN: add core api and openrisc translation Yanteng Si
2021-04-06 13:02 ` [PATCH 01/11] docs/zh_CN: add core-api irq concepts.rst translation Yanteng Si
2021-04-06 15:12   ` Wu X.C.
2021-04-07  1:20     ` yanteng si
2021-04-06 13:02 ` [PATCH 02/11] docs/zh_CN: add core-api irq irq-affinity.rst translation Yanteng Si
2021-04-06 15:35   ` Wu X.C.
2021-04-07  2:08     ` yanteng si
2021-04-07  4:59       ` Wu X.C.
2021-04-07  6:59         ` yanteng si
2021-04-07  7:04           ` Wu X.C.
2021-04-06 13:02 ` [PATCH 03/11] docs/zh_CN: add core-api/irq/irq-domain.rst translation Yanteng Si
2021-04-07  7:01   ` Wu X.C.
2021-04-07  7:36     ` yanteng si
2021-04-06 13:02 ` [PATCH 04/11] docs/zh_CN: add core-api irq irqflags-tracing.rst translation Yanteng Si
2021-04-06 16:13   ` Wu X.C.
2021-04-07  3:03     ` yanteng si
2021-04-07  5:08       ` Wu X.C.
2021-04-07  7:13         ` yanteng si
2021-04-06 13:02 ` [PATCH 05/11] docs/zh_CN: add core-api irq index.rst translation Yanteng Si
2021-04-06 15:21   ` Wu X.C.
2021-04-06 13:02 ` [PATCH 06/11] docs/zh_CN: add core-api/index.rst translation Yanteng Si
2021-04-06 16:39   ` Wu X.C.
2021-04-07  3:30     ` yanteng si
2021-04-07  5:13       ` Wu X.C. [this message]
2021-04-06 13:02 ` [PATCH 07/11] docs/zh_CN: add translation to zh_CN index Yanteng Si
2021-04-06 16:40   ` Wu X.C.
2021-04-06 13:02 ` [PATCH 08/11] docs/zh_CN: add openrisc openrisc_port.rst translation Yanteng Si
2021-04-07  7:01   ` Wu X.C.
2021-04-07  7:45     ` yanteng si
2021-04-06 13:02 ` [PATCH 09/11] docs/zh_CN: add openrisc/todo.rst translation Yanteng Si
2021-04-06 16:50   ` Wu X.C.
2021-04-07  6:30     ` yanteng si
2021-04-06 13:02 ` [PATCH 10/11] docs/zh_CN: add openrisc/index.rst translation Yanteng Si
2021-04-06 16:56   ` Wu X.C.

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210407051357.GC20005@bobwxc.top \
    --to=bobwxc@email.cn \
    --cc=alex.shi@linux.alibaba.com \
    --cc=alexs@kernel.org \
    --cc=chenhuacai@kernel.org \
    --cc=corbet@lwn.net \
    --cc=harryxiyou@gmail.com \
    --cc=jiaxun.yang@flygoat.com \
    --cc=linux-doc@vger.kernel.org \
    --cc=realpuyuwang@gmail.com \
    --cc=siyanteng01@gmail.com \
    --cc=siyanteng@loongson.cn \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.