mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH v2] docs: ja_JP: process: translate 'Obtain a current source tree'
@ 2026-01-26 14:19 Akiyoshi Kurita
  2026-01-27 11:56 ` Akira Yokosawa
  0 siblings, 1 reply; 2+ messages in thread
From: Akiyoshi Kurita @ 2026-01-26 14:19 UTC (permalink / raw)
  To: corbet; +Cc: akiyks, linux-doc, linux-kernel, Akiyoshi Kurita

Translate the "Obtain a current source tree" section in
Documentation/translations/ja_JP/process/submitting-patches.rst.

Use a jp_ label (.. _jp_describe_changes:) to avoid a duplicate label.

Signed-off-by: Akiyoshi Kurita <weibu@redadmin.org>
---
 .../ja_JP/process/submitting-patches.rst      | 20 +++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/Documentation/translations/ja_JP/process/submitting-patches.rst b/Documentation/translations/ja_JP/process/submitting-patches.rst
index 2ff887c86b2a..def262367055 100644
--- a/Documentation/translations/ja_JP/process/submitting-patches.rst
+++ b/Documentation/translations/ja_JP/process/submitting-patches.rst
@@ -36,3 +36,23 @@ Documentation/devicetree/bindings/submitting-patches.rst を読んでくださ
 いくつかのサブシステムやメンテナツリーには、各々のワークフローや
 期待事項に関する追加情報があります。次を参照してください:
 :ref:`Documentation/process/maintainer-handbooks.rst <maintainer_handbooks_main>`.
+
+現在のソースツリーを入手する
+----------------------------
+
+もし手元に最新のカーネルソースのリポジトリがなければ、``git`` を使って取得して
+ください。まずは mainline のリポジトリから始めるのがよいでしょう。これは
+次のようにして取得できます::
+
+  git clone git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
+
+ただし、mainline のツリーを直接対象にして開発したくない場合もあることに注意
+してください。多くのサブシステムのメンテナはそれぞれ独自のツリーを運用しており、
+そのツリーに対して作成したパッチを見たいと考えています。該当サブシステムの
+ツリーは MAINTAINERS ファイル内の **T:** エントリを参照して見つけてください。
+そこに掲載されていない場合は、メンテナに問い合わせてください。
+
+.. _jp_describe_changes:
+
+変更内容を説明する
+------------------

base-commit: a592a36e49372172d7c7551ec19ed18184c935e1
-- 
2.47.3


^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH v2] docs: ja_JP: process: translate 'Obtain a current source tree'
  2026-01-26 14:19 [PATCH v2] docs: ja_JP: process: translate 'Obtain a current source tree' Akiyoshi Kurita
@ 2026-01-27 11:56 ` Akira Yokosawa
  0 siblings, 0 replies; 2+ messages in thread
From: Akira Yokosawa @ 2026-01-27 11:56 UTC (permalink / raw)
  To: Akiyoshi Kurita; +Cc: linux-doc, linux-kernel, corbet, Akira Yokosawa

Hi,

On Mon, 26 Jan 2026 23:19:31 +0900, Akiyoshi Kurita wrote:
> Translate the "Obtain a current source tree" section in
> Documentation/translations/ja_JP/process/submitting-patches.rst.
> 
> Use a jp_ label (.. _jp_describe_changes:) to avoid a duplicate label.
> 
> Signed-off-by: Akiyoshi Kurita <weibu@redadmin.org>
> ---
>  .../ja_JP/process/submitting-patches.rst      | 20 +++++++++++++++++++
>  1 file changed, 20 insertions(+)
> 
> diff --git a/Documentation/translations/ja_JP/process/submitting-patches.rst b/Documentation/translations/ja_JP/process/submitting-patches.rst
> index 2ff887c86b2a..def262367055 100644
> --- a/Documentation/translations/ja_JP/process/submitting-patches.rst
> +++ b/Documentation/translations/ja_JP/process/submitting-patches.rst
> @@ -36,3 +36,23 @@ Documentation/devicetree/bindings/submitting-patches.rst を読んでくださ
>  いくつかのサブシステムやメンテナツリーには、各々のワークフローや
>  期待事項に関する追加情報があります。次を参照してください:
>  :ref:`Documentation/process/maintainer-handbooks.rst <maintainer_handbooks_main>`.
> +
> +現在のソースツリーを入手する
> +----------------------------
> +
> +もし手元に最新のカーネルソースのリポジトリがなければ、``git`` を使って取得して
> +ください。まずは mainline のリポジトリから始めるのがよいでしょう。これは
> +次のようにして取得できます::
> +
> +  git clone git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
> +
> +ただし、mainline のツリーを直接対象にして開発したくない場合もあることに注意
> +してください。多くのサブシステムのメンテナはそれぞれ独自のツリーを運用しており、
> +そのツリーに対して作成したパッチを見たいと考えています。

Well, the original sentence reads:

    Note, however, that you may not want to develop against the mainline
    tree directly.  Most subsystem maintainers run their own trees and
    want to see patches prepared against those trees.

Your translation of 1st sentence would be good enough if there were no
2nd sentence.  But in this case, it would be better to reflect it.

How about something like:

    ただし、直接 mainline のツリーを対象に作業すればよいとは限らないことに注意
    してください。多くのサブシステムのメンテナはそれぞれ独自のツリーを運用しており、
    そのツリーに対して作成されたパッチを見たいと考えています。

?  Might sound too non-literal to you, though.

>                                                      該当サブシステムの
> +ツリーは MAINTAINERS ファイル内の **T:** エントリを参照して見つけてください。
> +そこに掲載されていない場合は、メンテナに問い合わせてください。
> +
> +.. _jp_describe_changes:

Labels should be added only when it has references to it.
This is premature, I have to say.

Thanks, Akira

> +
> +変更内容を説明する
> +------------------
> 
> base-commit: a592a36e49372172d7c7551ec19ed18184c935e1

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2026-01-27 11:56 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-01-26 14:19 [PATCH v2] docs: ja_JP: process: translate 'Obtain a current source tree' Akiyoshi Kurita
2026-01-27 11:56 ` Akira Yokosawa

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®