貢献する

このページではフランス語 (fr) を例として使用していますが、ほかの 言語コード へ置き換えられます。その場合は必ずこのガイドの /fr を翻訳の言語に置き換えてください!(訳注: 以下の各説明で "fr" と書かれたところを "ja" に読み換えてください。)

To see which languages are currently available, you can browse the repository:

https://projects.blender.org/blender/blender-manual-translations

注釈

まず、マニュアルをビルドできることが前提です。まだビルドをしたことがない場合、Getting Started のセクションに戻ってください。

インストール

言語ファイル

チェックアウトフォルダーから次のコマンドを実行してください:

git clone https://projects.blender.org/blender/blender-manual-translations.git locale

これで locale/fr のサブフォルダーが作られます。

このようなディレクトリのレイアウトになるはずです:

blender-manual
   |- locale/
   |  |- fr/
   |  |  |- LC_MESSAGES/
   |- manual/

注釈

When running Git from the command line (such as updating or committing), you will need to change directory to locale first rather then the blender-manual directory.

POファイルエディタ

POファイルを編集するにはPOエディタをインストールする必要があります。おすすめは Poedit ですが、どのPOエディタでも構いません。

注釈

Linuxユーザーの場合は、ディストリビューションのソフトウェアセンターでPoeditのバージョンを確認する必要があります。このエディタは単に推奨というだけです。他にKateやKwriteのように、構文の強調表示や大文字と小文字の入れ替えなど、テキスト編集のための基本的なツールを提供できるものがあります。他のプラットフォームでは、POファイルの構文強調表示をサポートしたり、(WindowsのNotepad ++などのように)カスタマイズできるエディタがあります。

翻訳のビルド

Now you can build the manual with the translation applied:

On Linux and macOS run:

make -e BF_LANG=fr

On Windows run:

set BF_LANG=fr
make html

これで翻訳されたマニュアルのビルドができました。(訳注: ちなみに上のコマンドを.batファイルにしておけば簡単に実行できます) 。

翻訳ファイルの編集

Now you can edit the PO translation files, in the LC_MESSAGES folder you have two files:

  • blender_manual.po -- This is the main translation file that you will be editing.

  • sphinx.po -- This translation file is much smaller and contains translations for the website theme.

Poeditなどの翻訳エディタでこれらのファイルを開くことで編集ができます。エディタを開くと文章のリストが表示されますが、各文章はユーザマニュアルの文章のどこか一部を表しています。わかりやすくするために by source などでリストを並べ替える必要があるでしょう。

You can now select an untranslated string and your editor will have an input box to add the translation. The modified .po files can now submitted as a patch or committed back to the repository.

Tip

Make sure that you Building with Translations to catch any syntax errors you may make while translating. These errors will be displayed as warnings while building the manual.

Submitting Translations

Translators who have been given commit access can commit to the main repository without needing to fork the repository.

See Commit Guidelines if this applies to you.

Fork Translation Repository

  1. Go to Blender repository and click the Fork button.

  2. Confirm the fork with the default settings.

  3. Now you will have to add your personal fork as a remote in your local git repository. Click SSH to see the correct URL, and then add it like this:

    git remote add me git@projects.blender.org:<USERNAME>/blender-manual-translations.git
    git submodule sync
    

注釈

In order to push to the fork repository, you need an SSH key. If you don't already have the file ~/.ssh/id_rsa.pub, there's a simple command to generate such keys which works on Linux, macOS, and in Git Bash on Windows:

ssh-keygen

This command will generate a private key id_rsa and a public key id_rsa.pub in ~/.ssh. The private key must never be shown or sent to anyone else to avoid compromising your account, but the public key is safe to share.

The contents of ~/.ssh/id_rsa.pub can be copied and pasted into the account settings on projects.blender.org, after clicking "Add Key". Any name for the SSH key is ok.

メンテナンス

ファジーストリングの管理方法

マニュアルがバージョンアップすると古い翻訳が fuzzy としてマークされます。管理するためのツールを使用してください。

次のコマンドを実行してください:

make report_po_progress

ただし、簡単な要約しか作られません。もっと情報が必要な場合には次を実行してください:

python tools_report/report_translation_progress.py locale/fr/

これで空のストリングとファジーストリングがあるすべてのファイルのリストが出ます。他のオプションを見るには:

python tools_report/report_translation_progress.py --help

POファイルのアップデート

元のファイルが更新されると、テンプレートを更新する必要があります。通常は管理者がすべての言語ファイルを一度に更新するため、これを行う必要がないことに注意してください。それによってマニュアルのすべての言語が同じバージョンになります。しかしながら、もしあなた自身で更新する必要がある場合には、以下を実行しても構いません:

make update_po

The updated templates can then be committed to the repository.

参考

A guide how to add a new language can be found in the Adding a Language.