Skip to content

Commit de81212

Browse files
committed
Translate contribute/new-content/overview into Japanese
1 parent 28d5224 commit de81212

File tree

1 file changed

+26
-37
lines changed

1 file changed

+26
-37
lines changed
Lines changed: 26 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1,65 +1,54 @@
11
---
2-
title: Contributing new content overview
3-
linktitle: Overview
2+
title: 新しいコンテンツの貢献の概要
3+
linktitle: 概要
44
content_type: concept
55
main_menu: true
66
weight: 5
77
---
88

99
<!-- overview -->
1010

11-
This section contains information you should know before contributing new content.
12-
13-
14-
11+
このセクションでは、新しいコンテンツの貢献を行う前に知っておくべき情報を説明します。
1512

1613
<!-- body -->
1714

18-
## Contributing basics
15+
## 貢献の基本
1916

20-
- Write Kubernetes documentation in Markdown and build the Kubernetes site using [Hugo](https://gohugo.io/).
21-
- The source is in [GitHub](https://github.com/kubernetes/website). You can find Kubernetes documentation at `/content/en/docs/`. Some of the reference documentation is automatically generated from scripts in the `update-imported-docs/` directory.
22-
- [Page content types](/docs/contribute/style/page-content-types/) describe the presentation of documentation content in Hugo.
23-
- In addition to the standard Hugo shortcodes, we use a number of
24-
[custom Hugo shortcodes](/docs/contribute/style/hugo-shortcodes/) in our documentation to control the presentation of content.
25-
- Documentation source is available in multiple languages in `/content/`. Each
26-
language has its own folder with a two-letter code determined by the
27-
[ISO 639-1 standard](https://www.loc.gov/standards/iso639-2/php/code_list.php). For
28-
example, English documentation source is stored in `/content/en/docs/`.
29-
- For more information about contributing to documentation in multiple languages or starting a new translation, see [localization](/docs/contribute/localization).
17+
- KubernetesのドキュメントはMarkdownで書き、Kubernetesのウェブサイトは[Hugo](https://gohugo.io/)を使ってビルドします。
18+
- ソースは[GitHub](https://github.com/kubernetes/website)にあります。Kubernetesのドキュメントは`/content/en/docs/`にあります。リファレンスドキュメントの一部は、`update-imported-docs/`ディレクトリ内のスクリプトから自動的に生成されます。
19+
- [Page content types](/docs/contribute/style/page-content-types/)はHugo内のドキュメントのコンテンツの見え方を?指定します?
20+
- 標準のHugoのshortcodeに加えて、多数の[カスタムのHugo shortcode](/docs/contribute/style/hugo-shortcodes/)を使用してコンテンツの見え方をコントロールしています。
21+
- ドキュメントのソースは`/content/`内にある複数の言語で利用できます。各言語はそれぞれ[ISO 639-1標準](https://www.loc.gov/standards/iso639-2/php/code_list.php)で定義された2文字のコードの名前のフォルダを持ちます。たとえば、英語のドキュメントのソースは`/content/en/docs/`内に置かれています。
22+
- 複数言語でのドキュメントへの貢献や新しい翻訳の開始に関する情報については、[ローカライゼーション](/docs/contribute/localization)を参照してください。
3023

31-
## Before you begin {#before-you-begin}
24+
## 始める前に {#before-you-begin}
3225

33-
### Sign the CNCF CLA {#sign-the-cla}
26+
### CNCF CLAに署名する {#sign-the-cla}
3427

35-
All Kubernetes contributors **must** read the [Contributor guide](https://github.com/kubernetes/community/blob/master/contributors/guide/README.md) and [sign the Contributor License Agreement (CLA)](https://github.com/kubernetes/community/blob/master/CLA.md).
28+
すべてのKubernetesのコントリビューターは、[コントリビューターガイド](https://github.com/kubernetes/community/blob/master/contributors/guide/README.md)を読み、[Contributor License Agreement(コントリビューターライセンス契約、CLA)への署名](https://github.com/kubernetes/community/blob/master/CLA.md)**必ず行わなければなりません**
3629

37-
Pull requests from contributors who haven't signed the CLA fail the automated tests. The name and email you provide must match those found in your `git config`, and your git name and email must match those used for the CNCF CLA.
30+
CLAへの署名が完了していないコントリビューターからのpull requestは、自動化されたテストで失敗します。名前とメールアドレスは`git config`コマンドで表示されるものに一致し、gitの名前とメールアドレスはCNCF CLAで使われたものに一致しなければなりません。
3831

39-
### Choose which Git branch to use
32+
### どのGitブランチを使用するかを選ぶ
4033

41-
When opening a pull request, you need to know in advance which branch to base your work on.
34+
pull requestをオープンするときは、どのブランチをベースにして作業するかをあらかじめ知っておく必要があります。
4235

43-
Scenario | Branch
36+
シナリオ | ブランチ
4437
:---------|:------------
45-
Existing or new English language content for the current release | `master`
46-
Content for a feature change release | The branch which corresponds to the major and minor version the feature change is in, using the pattern `dev-<version>`. For example, if a feature changes in the `v{{< skew nextMinorVersion >}}` release, then add documentation changes to the ``dev-{{< skew nextMinorVersion >}}`` branch.
47-
Content in other languages (localizations) | Use the localization's convention. See the [Localization branching strategy](/docs/contribute/localization/#branching-strategy) for more information.
38+
現在のリリースに対する既存または新しい英語のコンテンツ | `master`
39+
機能変更のリリースに対するコンテンツ | 機能変更が含まれるメジャーおよびマイナーバージョンに対応する、`dev-<version>`というパターンのブランチを使います。たとえば、機能変更が`v{{< skew nextMinorVersion >}}`に含まれる場合、ドキュメントの変更は``dev-{{< skew nextMinorVersion >}}``ブランチに追加します。
40+
他の言語内のコンテンツ(翻訳) | 各翻訳対象の言語のルールに従います。詳しい情報は、[翻訳のブランチ戦略](/docs/contribute/localization/#branching-strategy)を読んでください。
4841

49-
50-
If you're still not sure which branch to choose, ask in `#sig-docs` on Slack.
42+
それでも選ぶべきブランチがわからないときは、Slack上の`#sig-docs`チャンネルで質問してください。
5143

5244
{{< note >}}
53-
If you already submitted your pull request and you know that the base branch
54-
was wrong, you (and only you, the submitter) can change it.
45+
すでにpull requestを作成していて、ベースブランチが間違っていたことに気づいた場合は、作成者であるあなただけがベースブランチを変更できます。
5546
{{< /note >}}
5647

57-
### Languages per PR
58-
59-
Limit pull requests to one language per PR. If you need to make an identical change to the same code sample in multiple languages, open a separate PR for each language.
60-
61-
## Tools for contributors
48+
### 言語ごとのPR
6249

63-
The [doc contributors tools](https://github.com/kubernetes/website/tree/master/content/en/docs/doc-contributor-tools) directory in the `kubernetes/website` repository contains tools to help your contribution journey go more smoothly.
50+
pull requestはPRごとに1つの言語に限定してください。複数の言語に同一の変更を行う必要がある場合は、言語ごとに別々のPRを作成してください。
6451

52+
## コントリビューターのためのツール
6553

54+
`kubernetes/website`リポジトリ内の[doc contributors tools](https://github.com/kubernetes/website/tree/master/content/en/docs/doc-contributor-tools)ディレクトリには、コントリビューターとしての旅を楽にしてくれるツールがあります。

0 commit comments

Comments
 (0)