summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2015-08-22 15:34:44 +0200
committerSébastien Helleu <flashcode@flashtux.org>2015-08-22 15:34:44 +0200
commit22b602e6071915baac836284a4877f5bd24ad859 (patch)
treee79a90ed060a26e3c481deef30825217f2b55940 /doc
parent46899c4a9804a62b6e49718c6f70d8425bac9511 (diff)
parenta79d7b1c7ec072fab7922aff4701b78299da1350 (diff)
downloadweechat-22b602e6071915baac836284a4877f5bd24ad859.zip
Merge pull request #500 from l/translation_ja
core: update Japanese translations
Diffstat (limited to 'doc')
-rw-r--r--doc/ja/weechat_plugin_api.ja.asciidoc26
-rw-r--r--doc/ja/weechat_scripting.ja.asciidoc39
-rw-r--r--doc/ja/weechat_user.ja.asciidoc12
3 files changed, 28 insertions, 49 deletions
diff --git a/doc/ja/weechat_plugin_api.ja.asciidoc b/doc/ja/weechat_plugin_api.ja.asciidoc
index e888da021..d11e8feaa 100644
--- a/doc/ja/weechat_plugin_api.ja.asciidoc
+++ b/doc/ja/weechat_plugin_api.ja.asciidoc
@@ -1823,8 +1823,7 @@ length = weechat_string_decode_base64 (string, result);
_WeeChat ≥ 1.4._
-// TRANSLATION MISSING
-Display a dump of data as hexadecimal and ascii bytes.
+16 進数とアスキーバイトを使ってデータのダンプを表示。
プロトタイプ:
@@ -1836,19 +1835,17 @@ char *string_hex_dump (const char *data, int data_size, int bytes_per_line,
引数:
-// TRANSLATION MISSING
-* 'data': the data to dump
-* 'data_size': number of bytes to dump in 'data'
-* 'bytes_per_line': number of bytes to display in each line
-* 'prefix': the prefix to display at the beginning of each line
- (optional, can be NULL)
-* 'suffix': the suffix to display at the end of each line
- (optional, can be NULL)
+* 'data': ダンプ対象のデータ
+* 'data_size': 'data' からダンプ対象にするバイト数
+* 'bytes_per_line': 各行に表示するバイト数
+* 'prefix': 各行の先頭に表示するプレフィックス
+ (任意、NULL も可)
+* 'suffix': 各行の末尾に表示するサフィックス
+ (任意、NULL も可)
戻り値:
-// TRANSLATION MISSING
-* string with dump of data (must be freed by calling "free" after use)
+* データのダンプ表示を含む文字列 (使用後には必ず "free" を呼び出して領域を開放してください)
C 言語での使用例:
@@ -2210,9 +2207,8 @@ int weechat_utf8_is_valid (const char *string, int length, char **error);
引数:
* 'string': 文字列
-// TRANSLATION MISSING
-* 'length': max number of UTF-8 chars to check; if ≤ 0, the whole string is
- checked _(WeeChat ≥ 1.4)_
+* 'length': 確認する UTF-8 文字の最大文字数; これを 0 以下に設定した場合、文字列中のすべての文字を確認します
+ _(WeeChat バージョン 1.4 以上で利用可)_
* 'error': NULL でない場合は '*error*'
は文字列に含まれる最初の妥当でない UTF-8 文字へのポインタ
diff --git a/doc/ja/weechat_scripting.ja.asciidoc b/doc/ja/weechat_scripting.ja.asciidoc
index 8b89f5328..ccec73ab5 100644
--- a/doc/ja/weechat_scripting.ja.asciidoc
+++ b/doc/ja/weechat_scripting.ja.asciidoc
@@ -906,69 +906,56 @@ _バージョン 0.3.4 の新機能_
(例の値は以下のメッセージから作られました:
`@time=2015-06-27T16:40:35.000Z :nick!user@host PRIVMSG #weechat :hello!`):
-// TRANSLATION MISSING
[width="100%",cols="1,^2,10,8",options="header"]
|===
-| Key | WeeChat version | Description | Example
+| キー | WeeChat バージョン | 説明 | 例
-// TRANSLATION MISSING
| tags | ≥ 0.4.0 |
- The tags in message (can be empty) |
+ メッセージに付けられたタグ (空にすることも可) |
`time=2015-06-27T16:40:35.000Z`
-// TRANSLATION MISSING
| message_without_tags | ≥ 0.4.0 |
- The message without the tags (the same as message if there are no tags) |
+ タグを除いたメッセージ (タグが付けられていなければメッセージと同じ) |
`:nick!user@host PRIVMSG #weechat :hello!`
-// TRANSLATION MISSING
| nick | ≥ 0.3.4 |
- The origin nick |
+ 発信者のニックネーム |
`nick`
-// TRANSLATION MISSING
| host | ≥ 0.3.4 |
- The origin host (includes the nick) |
+ 発信者のホスト (ニックネームを含む) |
`nick!user@host`
-// TRANSLATION MISSING
| command | ≥ 0.3.4 |
- The command ('PRIVMSG', 'NOTICE', ...) |
+ コマンド ('PRIVMSG' 、'NOTICE' 、...) |
`PRIVMSG`
-// TRANSLATION MISSING
| channel | ≥ 0.3.4 |
- The target channel |
+ 送信先チャンネル |
`#weechat`
-// TRANSLATION MISSING
| arguments | ≥ 0.3.4 |
- The command arguments (includes the channel) |
+ コマンド引数 (チャンネルを含む) |
`#weechat :hello!`
-// TRANSLATION MISSING
| text | ≥ 1.3 |
- The text (for example user message) |
+ テキスト (ユーザメッセージなど) |
`hello!`
-// TRANSLATION MISSING
| pos_command | ≥ 1.3 |
- The index of 'command' in message ("-1" if 'command' was not found) |
+ メッセージ内における 'command' のインデックス ('command' が見つからない場合 "-1") |
`47`
-// TRANSLATION MISSING
| pos_arguments | ≥ 1.3 |
- The index of 'arguments' in message ("-1" if 'arguments' was not found) |
+ メッセージ内における 'arguments' のインデックス ('arguments' が見つからない場合 "-1") |
`55`
-// TRANSLATION MISSING
| pos_channel | ≥ 1.3 |
- The index of 'channel' in message ("-1" if 'channel' was not found) |
+ メッセージ内における 'channel' のインデックス ('channel' が見つからない場合 "-1") |
`55`
-// TRANSLATION MISSING
| pos_text | ≥ 1.3 |
- The index of 'text' in message ("-1" if 'text' was not found) |
+ メッセージ内における 'text' のインデックス ('text' が見つからない場合 "-1") |
`65`
|===
diff --git a/doc/ja/weechat_user.ja.asciidoc b/doc/ja/weechat_user.ja.asciidoc
index 3fcb17ae3..bbca2f5dd 100644
--- a/doc/ja/weechat_user.ja.asciidoc
+++ b/doc/ja/weechat_user.ja.asciidoc
@@ -3238,14 +3238,10 @@ ${tg_highlight} || ${tg_msg_pv}
| channel | string | IRC チャンネル
| arguments | string | コマンドの引数 ('channel' の値を含みます)
| text | string | テキスト (例えばユーザメッセージ)
-// TRANSLATION MISSING
-| pos_command | string | The index of 'command' in message ("-1" if 'command' was not found)
-// TRANSLATION MISSING
-| pos_arguments | string | The index of 'arguments' in message ("-1" if 'arguments' was not found)
-// TRANSLATION MISSING
-| pos_channel | string | The index of 'channel' in message ("-1" if 'channel' was not found)
-// TRANSLATION MISSING
-| pos_text | string | The index of 'text' in message ("-1" if 'text' was not found)
+| pos_command | string | メッセージ内における 'command' のインデックス ('command' が見つからない場合 "-1")
+| pos_arguments | string | メッセージ内における 'arguments' のインデックス ('arguments' が見つからない場合 "-1")
+| pos_channel | string | メッセージ内における 'channel' のインデックス ('channel' が見つからない場合 "-1")
+| pos_text | string | メッセージ内における 'text' のインデックス ('text' が見つからない場合 "-1")
|===
データがポインタの場合、hdata の属性を読むために変数 `tg_signal_data`