null+****@clear*****
null+****@clear*****
2011年 10月 24日 (月) 12:06:58 JST
Kouhei Sutou 2011-10-24 03:06:58 +0000 (Mon, 24 Oct 2011)
New Revision: 39bbf3105a37f946e073f48c199fd63716433e48
Log:
[doc][ja] improve description about HTML files generation for all languages.
Modified files:
doc/locale/ja/LC_MESSAGES/contribution.po
doc/source/contribution/documentation/i18n.txt
Modified: doc/locale/ja/LC_MESSAGES/contribution.po (+43 -234)
===================================================================
--- doc/locale/ja/LC_MESSAGES/contribution.po 2011-10-24 02:58:47 +0000 (ad0e81c)
+++ doc/locale/ja/LC_MESSAGES/contribution.po 2011-10-24 03:06:58 +0000 (38a4e99)
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: 1.2.1\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-10-21 13:14\n"
-"PO-Revision-Date: 2011-05-29 14:00+0900\n"
+"POT-Creation-Date: 2011-10-24 12:01\n"
+"PO-Revision-Date: 2011-10-24 12:05+0900\n"
"Last-Translator: Kouhei Sutou <kou****@clear*****>\n"
"Language-Team: Japanese\n"
"Language: ja\n"
@@ -114,10 +114,6 @@ msgid ""
"以下のように導入します。::"
msgstr ""
-#: ../../../source/contribution/development/document.txt:13
-msgid "# aptitude install python-setuptools # easy_install -U sphinx"
-msgstr ""
-
#: ../../../source/contribution/development/document.txt:17
msgid "htmlの作成"
msgstr ""
@@ -126,15 +122,6 @@ msgstr ""
msgid "以下のコマンドでhtmlが作成されます。::"
msgstr ""
-#: ../../../source/contribution/development/document.txt:21
-msgid "% make html"
-msgstr ""
-
-#: ../../../source/contribution/development/document.txt:24
-#: ../../../source/contribution/development/document.txt:36
-msgid "pdfの作成"
-msgstr ""
-
#: ../../../source/contribution/development/document.txt:26
msgid ""
"groongaのドキュメントは、pdf出力することもできます。rst2pdfと、IPAフォント"
@@ -149,18 +136,15 @@ msgstr ""
msgid "以下のようにしてインストールできます。::"
msgstr ""
-#: ../../../source/contribution/development/document.txt:33
-msgid "# easy_install rst2pdf"
+#: ../../../source/contribution/development/document.txt:36
+#: ../../../source/contribution/development/document.txt:24,
+msgid "pdfの作成"
msgstr ""
#: ../../../source/contribution/development/document.txt:38
msgid "以下のコマンドでpdfが作成されます。::"
msgstr ""
-#: ../../../source/contribution/development/document.txt:40
-msgid "% make pdf"
-msgstr ""
-
#: ../../../source/contribution/development/query.txt:6
msgid "クエリの実現"
msgstr ""
@@ -245,22 +229,12 @@ msgstr ""
msgid "論理演算子は、以下の3種類があります。 ::"
msgstr ""
-#: ../../../source/contribution/development/query.txt:40
-msgid "&& (論理積) || (論理和) ! (否定)"
-msgstr ""
-
#: ../../../source/contribution/development/query.txt:44
msgid ""
"関係式は、下記の11種類が用意されています。また、ユーザが定義した関数を新たな"
"関係式として使うこともできます。 ::"
msgstr ""
-#: ../../../source/contribution/development/query.txt:47
-msgid ""
-"equal(==) not_equal(!=) less(<) greater(>) less_equal(<=) greater_equal(>=) "
-"contain() near() similar() prefix() suffix()"
-msgstr ""
-
#: ../../../source/contribution/development/query.txt:60
msgid "grn_table_select()"
msgstr ""
@@ -273,10 +247,6 @@ msgid ""
"かを指定する演算子を渡します。演算子と指定できるのは下記の4種類です。 ::"
msgstr ""
-#: ../../../source/contribution/development/query.txt:65
-msgid "GRN_OP_OR GRN_OP_AND GRN_OP_BUT GRN_OP_ADJUST"
-msgstr ""
-
#: ../../../source/contribution/development/query.txt:70
msgid ""
"GRN_OP_ORは、検索対象テーブルの中からクエリにマッチするレコードを検索結果テー"
@@ -365,14 +335,6 @@ msgid ""
"かを指定することができます。"
msgstr ""
-#: ../../../source/contribution/development/query.txt:109
-msgid ""
-"EXACT: v2の値もv1の値と同様に要素に分解したとき、それぞれの要素が完全に一致す"
-"る(デフォルト) UNSPLIT: v2の値は要素に分解しない PREFIX: v1の値の要素がv2の値"
-"に前方一致する SUFFIX: v1の値の要素がv2の値に後方一致する PARTIAL: v1の値の要"
-"素がv2の値に中間一致する"
-msgstr ""
-
#: ../../../source/contribution/development/query.txt:116
msgid "near(v1, v2, arg, callback)"
msgstr ""
@@ -419,15 +381,6 @@ msgstr ""
msgid "検索例1"
msgstr ""
-#: ../../../source/contribution/development/query.txt:140
-msgid ""
-"GRN_EXPR_CREATE_FOR_QUERY(ctx, table, query, var); grn_expr_append_obj(ctx, "
-"query, contain, GRN_OP_PUSH, 1); grn_expr_append_obj(ctx, query, column, "
-"GRN_OP_PUSH, 1); grn_expr_append_const(ctx, query, string, GRN_OP_PUSH, 1); "
-"grn_expr_append_op(ctx, query, GRN_OP_CALL, 3); result = grn_table_select"
-"(ctx, table, query, NULL, GRN_OP_OR);"
-msgstr ""
-
#: ../../../source/contribution/development/query.txt:147
msgid ""
"tableのcolumnの値がstringを含むレコードをresultに返します。columnの値"
@@ -440,24 +393,6 @@ msgstr ""
msgid "検索例2"
msgstr ""
-#: ../../../source/contribution/development/query.txt:154
-msgid ""
-"GRN_EXPR_CREATE_FOR_QUERY(ctx, table, query, var); grn_expr_append_obj(ctx, "
-"query, contain, GRN_OP_PUSH, 1); grn_expr_append_obj(ctx, query, column1, "
-"GRN_OP_PUSH, 1); grn_expr_append_const(ctx, query, string, GRN_OP_PUSH, 1); "
-"grn_expr_append_const(ctx, query, exact, GRN_OP_PUSH, 1); "
-"grn_expr_append_const(ctx, query, score1, GRN_OP_PUSH, 1); grn_expr_append_op"
-"(ctx, query, GRN_OP_CALL, 5); result = grn_table_select(ctx, table, query, "
-"NULL, GRN_OP_OR); grn_obj_close(ctx, query); GRN_EXPR_CREATE_FOR_QUERY(ctx, "
-"table, query, var); grn_expr_append_obj(ctx, query, contain, GRN_OP_PUSH, "
-"1); grn_expr_append_obj(ctx, query, column2, GRN_OP_PUSH, 1); "
-"grn_expr_append_const(ctx, query, string, GRN_OP_PUSH, 1); "
-"grn_expr_append_const(ctx, query, exact, GRN_OP_PUSH, 1); "
-"grn_expr_append_const(ctx, query, score2, GRN_OP_PUSH, 1); grn_expr_append_op"
-"(ctx, query, GRN_OP_CALL, 5); grn_table_select(ctx, table, query, result, "
-"GRN_OP_ADJUST); grn_obj_close(ctx, query);"
-msgstr ""
-
#: ../../../source/contribution/development/query.txt:173
msgid ""
"tableのcolumn1の値がstringにexactモードでヒットするレコードについて得られるス"
@@ -470,25 +405,6 @@ msgstr ""
msgid "検索例3"
msgstr ""
-#: ../../../source/contribution/development/query.txt:179
-msgid ""
-"GRN_EXPR_CREATE_FOR_QUERY(ctx, table, query, var); grn_expr_append_obj(ctx, "
-"query, contain, GRN_OP_PUSH, 1); grn_expr_append_obj(ctx, query, column1, "
-"GRN_OP_PUSH, 1); grn_expr_append_const(ctx, query, string, GRN_OP_PUSH, 1); "
-"grn_expr_append_const(ctx, query, exact, GRN_OP_PUSH, 1); "
-"grn_expr_append_const(ctx, query, score1, GRN_OP_PUSH, 1); grn_expr_append_op"
-"(ctx, query, GRN_OP_CALL, 5); result = grn_table_select(ctx, table, query, "
-"NULL, GRN_OP_OR); grn_obj_close(ctx, query); if (grn_table_size(ctx, result) "
-"< t1) { GRN_EXPR_CREATE_FOR_QUERY(ctx, table, query, var); "
-"grn_expr_append_obj(ctx, query, contain, GRN_OP_PUSH, 1); "
-"grn_expr_append_obj(ctx, query, column1, GRN_OP_PUSH, 1); "
-"grn_expr_append_const(ctx, query, string, GRN_OP_PUSH, 1); "
-"grn_expr_append_const(ctx, query, partial, GRN_OP_PUSH, 1); "
-"grn_expr_append_const(ctx, query, score2, GRN_OP_PUSH, 1); "
-"grn_expr_append_op(ctx, query, GRN_OP_CALL, 3); grn_table_select(ctx, "
-"table, query, result, GRN_OP_OR); grn_obj_close(ctx, query); }"
-msgstr ""
-
#: ../../../source/contribution/development/query.txt:200
msgid ""
"tableのcolumn1の値がstringにexactモードでヒットするレコードについて得られるス"
@@ -501,15 +417,6 @@ msgstr ""
msgid "検索例4"
msgstr ""
-#: ../../../source/contribution/development/query.txt:206
-msgid ""
-"GRN_EXPR_CREATE_FOR_QUERY(ctx, table, query, var); grn_expr_append_obj(ctx, "
-"query, contain, GRN_OP_PUSH, 1); grn_expr_append_const(ctx, query, string, "
-"GRN_OP_PUSH, 1); grn_expr_append_obj(ctx, query, column, GRN_OP_PUSH, 1); "
-"grn_expr_append_op(ctx, query, GRN_OP_CALL, 3); result = grn_table_select"
-"(ctx, table, query, NULL, GRN_OP_OR);"
-msgstr ""
-
#: ../../../source/contribution/development/query.txt:213
msgid ""
"tableのcolumnの値がstringに含まれるレコードをresultに返します。 columnの値"
@@ -550,10 +457,6 @@ msgid ""
"以下のようにしてインストールできます。::"
msgstr ""
-#: ../../../source/contribution/development/test.txt:26
-msgid "% sudo aptitude install -y lcov"
-msgstr ""
-
#: ../../../source/contribution/development/test.txt:29
msgid "clangのインストール"
msgstr ""
@@ -564,10 +467,6 @@ msgid ""
"があります。DebianやUbuntuでは以下のようにしてインストールできます。::"
msgstr ""
-#: ../../../source/contribution/development/test.txt:33
-msgid "% sudo aptitude install -y clang"
-msgstr ""
-
#: ../../../source/contribution/development/test.txt:36
msgid "libmemcachedのインストール"
msgstr ""
@@ -579,29 +478,17 @@ msgid ""
"トールできます。::"
msgstr ""
-#: ../../../source/contribution/development/test.txt:40
-msgid "% sudo aptitude install -y libmemcached-dev"
-msgstr ""
-
#: ../../../source/contribution/development/test.txt:43
msgid "テストの動作"
msgstr ""
-#: ../../../source/contribution/development/test.txt:45
-#: ../../../source/contribution/development/test.txt:52
-msgid "groongaのトップディレクトリで、以下のコマンドを実行します。::"
-msgstr ""
-
-#: ../../../source/contribution/development/test.txt:47
-msgid "make check"
-msgstr ""
-
#: ../../../source/contribution/development/test.txt:50
msgid "カバレッジ情報"
msgstr ""
-#: ../../../source/contribution/development/test.txt:54
-msgid "make coverage"
+#: ../../../source/contribution/development/test.txt:52
+#: ../../../source/contribution/development/test.txt:45,
+msgid "groongaのトップディレクトリで、以下のコマンドを実行します。::"
msgstr ""
#: ../../../source/contribution/development/test.txt:56
@@ -643,17 +530,6 @@ msgid ""
"特定のテスト関数(Cutterではテストと呼ぶ)のみをテストすることができます。"
msgstr ""
-#: ../../../source/contribution/development/test.txt:72
-#: ../../../source/contribution/development/test.txt:81
-#: ../../../source/contribution/development/test.txt:92
-#: ../../../source/contribution/development/test.txt:103
-msgid "実行例::"
-msgstr ""
-
-#: ../../../source/contribution/development/test.txt:74
-msgid "% ./run-test.sh -n test_text_otoj"
-msgstr ""
-
#: ../../../source/contribution/development/test.txt:77
msgid "特定のテストファイルのみテストする"
msgstr ""
@@ -664,10 +540,6 @@ msgid ""
"す。"
msgstr ""
-#: ../../../source/contribution/development/test.txt:83
-msgid "% ./run-test.sh -t test_string"
-msgstr ""
-
#: ../../../source/contribution/development/test.txt:86
msgid "不正メモリアクセス・メモリリーク検出"
msgstr ""
@@ -678,15 +550,6 @@ msgid ""
"スやメモリリークを検出しつつ、テストを動作させることができます。"
msgstr ""
-#: ../../../source/contribution/development/test.txt:90
-#: ../../../source/contribution/development/test.txt:101
-msgid "run-test.shのみならず、make checkでも利用可能です。"
-msgstr ""
-
-#: ../../../source/contribution/development/test.txt:94
-msgid "% CUTTER_CHECK_LEAK=yes make check"
-msgstr ""
-
#: ../../../source/contribution/development/test.txt:97
msgid "デバッガ上でのテスト実行"
msgstr ""
@@ -697,8 +560,16 @@ msgid ""
"行されます。gdb上でrunを行うと、テストの実行が開始されます。"
msgstr ""
-#: ../../../source/contribution/development/test.txt:105
-msgid "% CUTTER_DEBUG=yes make check"
+#: ../../../source/contribution/development/test.txt:101
+#: ../../../source/contribution/development/test.txt:90,
+msgid "run-test.shのみならず、make checkでも利用可能です。"
+msgstr ""
+
+#: ../../../source/contribution/development/test.txt:103
+#: ../../../source/contribution/development/test.txt:72,
+#: ../../../source/contribution/development/test.txt:81,
+#: ../../../source/contribution/development/test.txt:92,
+msgid "実行例::"
msgstr ""
#: ../../../source/contribution/development/test.txt:108
@@ -711,12 +582,6 @@ msgid ""
"いうディレクトリに解析結果のhtmlが出力されます。::"
msgstr ""
-#: ../../../source/contribution/development/test.txt:112
-msgid ""
-"% scan-build ./configure --prefix=/usr % make clean % scan-build -o ./"
-"scan_build make -j4"
-msgstr ""
-
#: ../../../source/contribution/development/test.txt:116
msgid "configureは1度のみ実行する必要があります。"
msgstr ""
@@ -821,17 +686,6 @@ msgid ""
msgstr ""
"上記の流れを実行するコマンドラインです。詳細は以降のセクションで説明します。"
-#: ../../../source/contribution/documentation/i18n.txt:42
-msgid ""
-"# Please fork https://github.com/groonga/groonga on GitHub % git clone "
-"https://github.com/${YOUR_GITHUB_ACCOUNT}/groonga.git % ./autogen.sh % ./"
-"configure % cd doc/locale/${LANGUAGE}/LC_MESSAGES # ${LANGUAGE} is language "
-"code such as 'ja'. % make update # *.po are updated % editor *.po # "
-"translate *.po # you can use your favorite editor % cd .. % make html % "
-"browser html/index.html # confirm translation % git add LC_MESSAGES/*.po % "
-"git commit % git push"
-msgstr ""
-
#: ../../../source/contribution/documentation/i18n.txt:57
msgid "How to clone groonga repository"
msgstr "groongaリポジトリのcloneの仕方"
@@ -846,18 +700,10 @@ msgstr ""
"groonga/groonga にアクセスして `Fork` ボタンを押すだけです。これで自分の"
"groongaリポジトリをcloneすることができます。::"
-#: ../../../source/contribution/documentation/i18n.txt:63
-msgid "% git clone https://github.com/${YOUR_GITHUB_ACCOUNT}/groonga.git"
-msgstr ""
-
#: ../../../source/contribution/documentation/i18n.txt:65
msgid "Then you need to configure your cloned repository::"
msgstr "cloneした後はconfigureする必要があります。::"
-#: ../../../source/contribution/documentation/i18n.txt:67
-msgid "% cd groonga % ./autogen.sh % ./configure"
-msgstr ""
-
#: ../../../source/contribution/documentation/i18n.txt:71
msgid "The above steps are just needed at the first setup."
msgstr "この作業は初回セットアップ時のみだけの作業です。"
@@ -884,10 +730,6 @@ msgstr ""
"poファイルを更新できます。(`${LANGUAGE}` は'ja'など自分の言語の言語コードに"
"置き換えてください。)::"
-#: ../../../source/contribution/documentation/i18n.txt:83
-msgid "% cd doc/locale/ja/LC_MESSAGES % make update"
-msgstr ""
-
#: ../../../source/contribution/documentation/i18n.txt:87
msgid "How to edit .po"
msgstr ".poの編集の仕方"
@@ -919,34 +761,22 @@ msgid "How to generate HTML files"
msgstr "HTMLファイルの生成方法"
#: ../../../source/contribution/documentation/i18n.txt:109
-#, fuzzy
msgid ""
"You can generate HTML files with updated .po files by running `make html` on "
-"doc/locale/${LANGUAGE}. You can"
+"doc/locale/${LANGUAGE}. (Please substitute `${LANGUAGE}` with your language "
+"code such as 'ja'.)::"
msgstr ""
-"doc/locale/${LANGUAGE}/LC_MESSAGESディレクトリで `make html` を実行すると更新"
-"した.poファイルを使ってHTMLファイルを生成できます。(`${LANGUAGE}` は'ja'など"
-"自分の言語の言語コードに置き換えてください。)::"
+"doc/locale/${LANGUAGE}/LC_MESSAGESディレクトリで `make update` を実行すると."
+"poファイルを更新できます。(`${LANGUAGE}` は'ja'など自分の言語の言語コードに"
+"置き換えてください。)::"
-#: ../../../source/contribution/documentation/i18n.txt:111
-#, fuzzy
+#: ../../../source/contribution/documentation/i18n.txt:117
msgid ""
-"also generate all languages files by runningthis command on doc/locale."
-"(Pleasesubstitute `${LANGUAGE}` with your"
-msgstr ""
-"doc/locale/${LANGUAGE}/LC_MESSAGESディレクトリで `make html` を実行すると更新"
-"した.poファイルを使ってHTMLファイルを生成できます。(`${LANGUAGE}` は'ja'など"
-"自分の言語の言語コードに置き換えてください。)::"
+"You can also generate HTML files for all languages by running `make html` on "
+"doc/locale::"
+msgstr "全ての言語のHTMLファイルを生成するにはdoc/locale/ディレクトリで `make html` を実行します。::"
-#: ../../../source/contribution/documentation/i18n.txt:113
-msgid "language code such as 'ja'.)::"
-msgstr ""
-
-#: ../../../source/contribution/documentation/i18n.txt:115
-msgid "% cd doc/locale/ja/ % make html"
-msgstr ""
-
-#: ../../../source/contribution/documentation/i18n.txt:120
+#: ../../../source/contribution/documentation/i18n.txt:125
msgid ""
".mo files are updated automatically by `make html`. So you don't care about ."
"mo files."
@@ -954,11 +784,11 @@ msgstr ""
".moファイルは `make html` で自動的に更新されるので、.moファイルのことを気にす"
"る必要はありません。"
-#: ../../../source/contribution/documentation/i18n.txt:124
+#: ../../../source/contribution/documentation/i18n.txt:129
msgid "How to confirm HTML output"
msgstr "HTML出力の確認の仕方"
-#: ../../../source/contribution/documentation/i18n.txt:126
+#: ../../../source/contribution/documentation/i18n.txt:131
msgid ""
"HTML files are generated in doc/locale/${LANGUAGE}/html/. (Please substitute "
"`${LANGUAGE}` with your language code such as 'ja'.) You can confirm HTML "
@@ -968,15 +798,11 @@ msgstr ""
"` は'ja'など自分の言語の言語コードに置き換えてください。)好きなブラウザで出"
"力されたHTMLを確認してください。::"
-#: ../../../source/contribution/documentation/i18n.txt:131
-msgid "% firefox doc/locale/ja/html/index.html"
-msgstr ""
-
-#: ../../../source/contribution/documentation/i18n.txt:134
+#: ../../../source/contribution/documentation/i18n.txt:139
msgid "How to send your works"
msgstr "翻訳の成果の送り方"
-#: ../../../source/contribution/documentation/i18n.txt:136
+#: ../../../source/contribution/documentation/i18n.txt:141
msgid ""
"We can receive your works via pull request on GitHub or E-mail attachment "
"patch or .po files themselves."
@@ -984,19 +810,15 @@ msgstr ""
"翻訳の成果はGitHubのpull requestかメールで送ってください。メールで送る場合は"
"パッチでも.poファイルそのものでも構いません。"
-#: ../../../source/contribution/documentation/i18n.txt:140
+#: ../../../source/contribution/documentation/i18n.txt:145
msgid "How to send pull request"
msgstr "pull requestの送り方"
-#: ../../../source/contribution/documentation/i18n.txt:142
+#: ../../../source/contribution/documentation/i18n.txt:147
msgid "Here are command lines to send pull request::"
msgstr "pull requestを送るためのコマンドライン::"
-#: ../../../source/contribution/documentation/i18n.txt:144
-msgid "% git add doc/locale/ja/LC_MESSAGES/*.po % git commit % git push"
-msgstr ""
-
-#: ../../../source/contribution/documentation/i18n.txt:148
+#: ../../../source/contribution/documentation/i18n.txt:153
msgid ""
"Now you can send pull request on GitHub. You just access your repository "
"page on GitHub and press `Pull Request` button."
@@ -1004,21 +826,15 @@ msgstr ""
"これでGitHub上でpull requestを送る準備ができました。あとは、GitHub上の自分の"
"リポジトリのページへアクセスして `Pull Request` ボタンを押すだけです。"
-#: ../../../source/contribution/documentation/i18n.txt:157
+#: ../../../source/contribution/documentation/i18n.txt:162
msgid "How to send patch"
msgstr "パッチの送り方"
-#: ../../../source/contribution/documentation/i18n.txt:159
+#: ../../../source/contribution/documentation/i18n.txt:164
msgid "Here are command lines to create patch::"
msgstr "パッチを作るためのコマンドライン"
-#: ../../../source/contribution/documentation/i18n.txt:161
-msgid ""
-"% git add doc/locale/ja/LC_MESSAGES/*.po % git commit % git format-patch "
-"origin/master"
-msgstr ""
-
-#: ../../../source/contribution/documentation/i18n.txt:165
+#: ../../../source/contribution/documentation/i18n.txt:170
msgid ""
"You can find 000X-YYY.patch files in the current directory. Please send "
"those files to us!"
@@ -1026,11 +842,11 @@ msgstr ""
"カレントディレクトリに000X-YYY.patchという名前のファイルができていると思いま"
"す。これをgroongaプロジェクトに送ってください!"
-#: ../../../source/contribution/documentation/i18n.txt:171
+#: ../../../source/contribution/documentation/i18n.txt:176
msgid "How to send .po files"
msgstr ".poファイルの送り方"
-#: ../../../source/contribution/documentation/i18n.txt:173
+#: ../../../source/contribution/documentation/i18n.txt:178
msgid ""
"Please archive doc/locale/${LANGUAGE}/LC_MESSAGES/ (Please substitute `"
"${LANGUAGE}` with your language code such as 'ja'.) and send it to us! We "
@@ -1040,22 +856,15 @@ msgstr ""
"groongaプロジェクトに送ってください!(`${LANGUAGE}` は'ja'など自分の言語の言"
"語コードに置き換えてください。)こちらでアーカイブの中の内容をマージします。"
-#: ../../../source/contribution/documentation/i18n.txt:181
+#: ../../../source/contribution/documentation/i18n.txt:186
msgid "How to add new language"
msgstr "新しい言語の追加方法"
-#: ../../../source/contribution/documentation/i18n.txt:183
+#: ../../../source/contribution/documentation/i18n.txt:188
msgid "Here are command lines to add new translation language::"
msgstr "新しい翻訳対象の言語を追加するコマンドライン::"
-#: ../../../source/contribution/documentation/i18n.txt:185
-#, fuzzy
-msgid ""
-"% cd doc/locale % make add LOCALE=${LANGUAGE} # specify your language code "
-"such as 'de'."
-msgstr "`${LANGUAGE}` は'ja'などの自分の言語の言語コードに置き換えてください。"
-
-#: ../../../source/contribution/documentation/i18n.txt:188
+#: ../../../source/contribution/documentation/i18n.txt:193
msgid "Please substitute `${LANGUAGE}` with your language code such as 'ja'."
msgstr "`${LANGUAGE}` は'ja'などの自分の言語の言語コードに置き換えてください。"
Modified: doc/source/contribution/documentation/i18n.txt (+7 -2)
===================================================================
--- doc/source/contribution/documentation/i18n.txt 2011-10-24 02:58:47 +0000 (3f475db)
+++ doc/source/contribution/documentation/i18n.txt 2011-10-24 03:06:58 +0000 (9cfac71)
@@ -109,12 +109,17 @@ How to generate HTML files
You can generate HTML files with updated .po files by
running `make html` on doc/locale/${LANGUAGE}. (Please
substitute `${LANGUAGE}` with your language code such as
-'ja'.) You can also generate all languages files by running
-this command on doc/locale.::
+'ja'.)::
% cd doc/locale/ja/
% make html
+You can also generate HTML files for all languages by
+running `make html` on doc/locale::
+
+ % cd doc/locale
+ % make html
+
.. note::
.mo files are updated automatically by `make html`. So