Skip to content

Commit 4acfb43

Browse files
committed
Merge pull request #167 from rhysd/doc-develop
Translate some parts of MAKING CHANGES (doc/develop.jax)
2 parents 0196d10 + 6c2a7fd commit 4acfb43

File tree

2 files changed

+15
-13
lines changed

2 files changed

+15
-13
lines changed

Diff for: catchup-7.4.1194.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
以上は変更点が100行未満なので、翻訳しやすいはず。
2121

2222
doc/change.jax
23-
doc/develop.jax
2423
doc/editing.jax
2524
doc/fold.jax
2625
doc/hangulin.jax
@@ -54,6 +53,7 @@
5453

5554
doc/autocmd.jax
5655
doc/cmdline.jax
56+
doc/develop.jax
5757
doc/filetype.jax
5858
doc/help.jax
5959
doc/index.jax

Diff for: doc/develop.jax

+14-12
Original file line numberDiff line numberDiff line change
@@ -168,28 +168,30 @@ Vimのソースコードに変更を加える際、守るべきルールがあ
168168
MAKING CHANGES *style-changes*
169169

170170
コードに変更を加える基本的なステップは:
171-
1. Get the code from github. That makes it easier to keep your changed
172-
version in sync with the main code base (it may be a while before your
173-
changes will be included). You do need to spend some time learning git,
174-
it's not the most user friendly tool.
171+
1. GitHub からコードを取得する。これによりあなたが変更したコードをメインのコー
172+
ドベースに同期するのがより簡単になる (あなたの変更がメインのコードベースに含
173+
まれるようになるまで少しかかるかもしれない) 。いくらか時間を費やして git
174+
ついて学ぶ必要がある。git はあまりユーザフレンドリーなツールではない。
175175
2. ドキュメントを調整する。最初にこれをやることで、あなたの行う変更がユーザー
176176
に与える影響について、おおまかな印象をもつことができる。
177177
3. ソースコードに変更を加える。
178178
4. 変更がリストされた項目に影響を与えていないか、../doc/todo.txtをチェックす
179179
る。
180-
5. Make a patch with "git diff". You can also create a pull request on
181-
github, but it's the diff that matters.
182-
6. Make a note about what changed, preferably mentioning the problem and the
183-
solution. Send an email to the vim-dev maillist with an explanation and
184-
include the diff. Or create a pull request on github.
180+
5. "git diff" でパッチを作成する。GitHub でプルリクエストを作成しても良いが、重
181+
要なのはその diff である。
182+
6. 何が変更されたかのノートを作成する。問題点とその解決策について書かれている
183+
のが望ましい。vim-dev のメーリングリストに説明と diff を含めたメールを送るか
184+
GitHub でプルリクエストを作成する。
185185

186186

187187
C COMPILER *style-compiler*
188188

189-
The minimal C compiler version supported is C89, also known as ANSI C.
190-
Later standards don't add much and C89 is the widest supported.
189+
サポートされている最小の C コンパイラのバージョンは C89 (ANSI C とも呼ばれてい
190+
る) である。C89 以降の標準規格にはあまり多くの機能追加が無く C89 はもっとも普及
191+
している。
191192

192-
One restriction that this implies: no // comments, only /* comments */.
193+
この項目が暗に示している制限の1つとして、 // コメントではなく /* コメント */ を
194+
使わなければならない。
193195

194196

195197
USE OF COMMON FUNCTIONS *style-functions*

0 commit comments

Comments
 (0)