diff --git a/doc/ja/weechat_faq.ja.asciidoc b/doc/ja/weechat_faq.ja.asciidoc index 483eda42c..761e3bb38 100644 --- a/doc/ja/weechat_faq.ja.asciidoc +++ b/doc/ja/weechat_faq.ja.asciidoc @@ -263,16 +263,14 @@ WeeChat ≥ 0.3.6 では、"eat_newline_glitch" オプションを有効化で [[change_locale_without_quit]] === WeeChat が出力するメッセージの言語を、再起動せずに変更したいです。このようなことは可能ですか。 -// TRANSLATION MISSING -Yes, with WeeChat ≥ 1.0: +WeeChat ≥ 1.0 では、再起動せずに変更できます: ---- /set env LANG ja_JP.UTF-8 /upgrade ---- -// TRANSLATION MISSING -With older WeeChat: +古い WeeChat をお使いの場合は: ---- /script install shell.py @@ -301,9 +299,8 @@ screen を使っている場合は、以下の行を '~/.screenrc' に追加し term screen-256color ---- -// TRANSLATION MISSING -If your 'TERM' variable has wrong value and that WeeChat is already running, -you can change it with these two commands (with WeeChat ≥ 1.0): +'TERM' 変数が間違った値に設定された状態で WeeChat が起動完了している場合は、以下の +2 つのコマンドを使って変数の値を変更してください (WeeChat バージョン 1.0 以上で可能): ---- /set env TERM screen-256color @@ -710,18 +707,16 @@ OpenBSD では、プラグインファイル名の末尾が ".so.0.0" です (Li 'weechat.history.max_buffer_lines_minutes' オプションに値を設定してください。 * 'weechat.history.max_commands' オプションの値を減らしてください。 -// TRANSLATION MISSING [[cpu_usage]] -=== How can I tweak WeeChat to use less CPU? +=== どうすれば WeeChat の CPU 負荷を低減できますか? -// TRANSLATION MISSING -You can follow same tips as for <>, and these ones: +以下に挙げる <> に関するヒントに従ってください: -* hide "nicklist" bar: `/bar hide nicklist` -* remove display of seconds in status bar time: - `/set weechat.look.item_time_format "%H:%M"` (this is the default value) -* set the 'TZ' variable (for example: `export TZ="Europe/Paris"`), to prevent - frequent access to file '/etc/localtime' +* "nicklist" バーを非表示にする: `/bar hide nicklist` +* ステータスバー時間に秒の表示を止める: + `/set weechat.look.item_time_format "%H:%M"` (これはデフォルト値です) +* 'TZ' 変数を設定する (例: `export TZ="Europe/Paris"`)、こうすることで + '/etc/localtime' ファイルへ頻繁にアクセスしないようになります。 [[development]] == 開発 diff --git a/doc/ja/weechat_plugin_api.ja.asciidoc b/doc/ja/weechat_plugin_api.ja.asciidoc index 892017172..1832e26d9 100644 --- a/doc/ja/weechat_plugin_api.ja.asciidoc +++ b/doc/ja/weechat_plugin_api.ja.asciidoc @@ -564,10 +564,9 @@ int weechat_strcasecmp (const char *string1, const char *string2); 戻り値: -// TRANSLATION MISSING -* -1 if string1 < string2 -* 0 if string1 == string2 -* 1 if string1 > string2 +* string1 < string2 の場合は -1 +* string1 == string2 の場合は 0 +* string1 > string2 の場合は 1 C 言語での使用例: @@ -581,8 +580,7 @@ int diff = weechat_strcasecmp ("aaa", "CCC"); /* == -2 */ ==== weechat_strcasecmp_range -// TRANSLATION MISSING -_WeeChat ≥ 0.3.7, updated in 1.0._ +_WeeChat バージョン 0.3.7 以上で利用可。バージョン 1.0 で更新。_ 大文字小文字を無視する文字範囲の幅を使い、ロケールと大文字小文字を無視して文字列を比較。 @@ -607,10 +605,9 @@ int weechat_strcasecmp_range (const char *string1, const char *string2, int rang 戻り値: -// TRANSLATION MISSING -* -1 if string1 < string2 -* 0 if string1 == string2 -* 1 if string1 > string2 +* string1 < string2 の場合は -1 +* string1 == string2 の場合は 0 +* string1 > string2 の場合は 1 C 言語での使用例: @@ -643,10 +640,9 @@ int weechat_strncasecmp (const char *string1, const char *string2, int max); 戻り値: -// TRANSLATION MISSING -* -1 if string1 < string2 -* 0 if string1 == string2 -* 1 if string1 > string2 +* string1 < string2 の場合は -1 +* string1 == string2 の場合は 0 +* string1 > string2 の場合は 1 C 言語での使用例: @@ -660,8 +656,7 @@ int diff = weechat_strncasecmp ("aabb", "aacc", 2); /* == 0 */ ==== weechat_strncasecmp_range -// TRANSLATION MISSING -_WeeChat ≥ 0.3.7, updated in 1.0._ +_WeeChat バージョン 0.3.7 以上で利用可。バージョン 1.0 で更新。_ 大文字小文字を無視する文字範囲の幅を使い、ロケールと大文字小文字を無視して 'max' 文字だけ文字列を比較。 @@ -688,10 +683,9 @@ int weechat_strncasecmp_range (const char *string1, const char *string2, int max 戻り値: -// TRANSLATION MISSING -* -1 if string1 < string2 -* 0 if string1 == string2 -* 1 if string1 > string2 +* string1 < string2 の場合は -1 +* string1 == string2 の場合は 0 +* string1 > string2 の場合は 1 C 言語での使用例: @@ -728,10 +722,9 @@ int weechat_strcmp_ignore_chars (const char *string1, const char *string2, 戻り値: -// TRANSLATION MISSING -* -1 if string1 < string2 -* 0 if string1 == string2 -* 1 if string1 > string2 +* string1 < string2 の場合は -1 +* string1 == string2 の場合は 0 +* string1 > string2 の場合は 1 C 言語での使用例: @@ -2223,10 +2216,9 @@ int weechat_utf8_charcmp (const char *string1, const char *string2); 戻り値: -// TRANSLATION MISSING -* -1 if string1 < string2 -* 0 if string1 == string2 -* 1 if string1 > string2 +* string1 < string2 の場合は -1 +* string1 == string2 の場合は 0 +* string1 > string2 の場合は 1 C 言語での使用例: @@ -2258,10 +2250,9 @@ int weechat_utf8_charcasecmp (const char *string1, const char *string2); 戻り値: -// TRANSLATION MISSING -* -1 if string1 < string2 -* 0 if string1 == string2 -* 1 if string1 > string2 +* string1 < string2 の場合は -1 +* string1 == string2 の場合は 0 +* string1 > string2 の場合は 1 C 言語での使用例: diff --git a/doc/ja/weechat_user.ja.asciidoc b/doc/ja/weechat_user.ja.asciidoc index e4acb8b53..5f2a1b09d 100644 --- a/doc/ja/weechat_user.ja.asciidoc +++ b/doc/ja/weechat_user.ja.asciidoc @@ -1439,9 +1439,8 @@ screen を使っている場合、'~/.screenrc' に以下の内容を追加し term screen-256color ---- -// TRANSLATION MISSING -If your 'TERM' variable has wrong value and that WeeChat is already running, -you can change it with these two commands: +'TERM' 変数が間違った値に設定された状態で WeeChat が起動完了している場合は、以下の +2 つのコマンドを使って変数の値を変更してください: ---- /set env TERM screen-256color diff --git a/po/ja.po b/po/ja.po index 7ad4f9359..9559e79b4 100644 --- a/po/ja.po +++ b/po/ja.po @@ -21,7 +21,7 @@ msgstr "" "Project-Id-Version: WeeChat\n" "Report-Msgid-Bugs-To: flashcode@flashtux.org\n" "POT-Creation-Date: 2014-07-05 22:14+0200\n" -"PO-Revision-Date: 2014-06-28 14:49+0200\n" +"PO-Revision-Date: 2014-07-06 10:54+0900\n" "Last-Translator: AYANOKOUZI, Ryuunosuke \n" "Language-Team: Japanese \n" "Language: ja\n" @@ -40,11 +40,11 @@ msgid "max chars" msgstr "最大文字数" msgid "" -"a WeeChat color name (default, black, (dark)gray, white, (light)red, " -"(light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a " -"terminal color number or an alias; attributes are allowed before color (for " -"text color only, not background): \"*\" for bold, \"!\" for reverse, \"/\" " -"for italic, \"_\" for underline" +"a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)" +"green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal " +"color number or an alias; attributes are allowed before color (for text " +"color only, not background): \"*\" for bold, \"!\" for reverse, \"/\" for " +"italic, \"_\" for underline" msgstr "" "WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、" "brown、yellow、(light)blue、(light)magenta、(light)cyan) 、ターミナル色番号ま" @@ -819,21 +819,21 @@ msgid "%s%d%s option" msgid_plural "%s%d%s options" msgstr[0] "%s%d%s 個のオプション" -#, fuzzy, c-format +#, c-format msgid "Environment variable \"%s\" is not defined" -msgstr "変数がありません" +msgstr "環境変数 \"%s\" が定義されていません" -#, fuzzy, c-format +#, c-format msgid "%sError: failed to set variable \"%s\": %s" -msgstr "%sエラー: オプション \"%s\" の設定に失敗しました" +msgstr "%sエラー: 変数 \"%s\" の設定に失敗しました: %s" #, c-format msgid "Variable \"%s\" unset" -msgstr "" +msgstr "変数 \"%s\" を無効化" -#, fuzzy, c-format +#, c-format msgid "%sError: failed to unset variable \"%s\": %s" -msgstr "%sエラー: オプション \"%s\" の設定に失敗しました" +msgstr "%sエラー: 変数 \"%s\" の無効化に失敗しました: %s" #, c-format msgid "%s%d%s option with value changed" @@ -1380,12 +1380,11 @@ msgstr "" " windows: ウィンドウツリーの情報を表示" msgid "evaluate expression" -msgstr "" +msgstr "式を評価" msgid "[-n] || [-n] -c " msgstr "[-n] || [-n] -c " -#, fuzzy msgid "" " -n: display result without sending it to buffer (debug mode)\n" " -c: evaluate as condition: use operators and parentheses, return a " @@ -1458,7 +1457,8 @@ msgstr "" " -c: 条件として評価: 演算子と括弧をを使い、ブール値 (\"0\" または " "\"1\") を返します\n" "expression: 評価する式、フォーマット、${variable} 型のフォーマットの変数は置" -"換されます (以下を参照)\n" +"換されます (以下を参照); 複数のコマンドを指定する場合はセミコロンで区切ってく" +"ださい\n" " operator: 論理演算子や比較演算子:\n" " - 論理演算子:\n" " && ブール演算の \"and\"\n" @@ -2415,15 +2415,15 @@ msgstr "" "data.freenode}" msgid "set config options and environment variables" -msgstr "" +msgstr "設定オプションと環境変数を設定" -#, fuzzy msgid "" "[