diff options
Diffstat (limited to 'doc/ja')
-rw-r--r-- | doc/ja/autogen/plugin_api/hdata.asciidoc | 1 | ||||
-rw-r--r-- | doc/ja/autogen/user/weechat_options.asciidoc | 5 | ||||
-rw-r--r-- | doc/ja/weechat_dev.ja.asciidoc | 1 | ||||
-rw-r--r-- | doc/ja/weechat_plugin_api.ja.asciidoc | 8 |
4 files changed, 14 insertions, 1 deletions
diff --git a/doc/ja/autogen/plugin_api/hdata.asciidoc b/doc/ja/autogen/plugin_api/hdata.asciidoc index b4f27fa69..9873e30e9 100644 --- a/doc/ja/autogen/plugin_api/hdata.asciidoc +++ b/doc/ja/autogen/plugin_api/hdata.asciidoc @@ -658,6 +658,7 @@ *** 'config_file' (pointer, hdata: "config_file") *** 'section' (pointer, hdata: "config_section") *** 'name' (string) +*** 'parent_name' (string) *** 'type' (integer) *** 'description' (string) *** 'string_values' (string, array_size: "*") diff --git a/doc/ja/autogen/user/weechat_options.asciidoc b/doc/ja/autogen/user/weechat_options.asciidoc index 1fc5ab655..fb013faa8 100644 --- a/doc/ja/autogen/user/weechat_options.asciidoc +++ b/doc/ja/autogen/user/weechat_options.asciidoc @@ -197,6 +197,11 @@ ** タイプ: 色 ** 値: WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、brown、yellow、(light)blue、(light)magenta、(light)cyan) 、ターミナル色番号またはその別名; 色の前に属性を置くことができます (テキスト前景色のみ、背景色は出来ません): 太字は "*"、反転は "!"、イタリックは "/"、下線は "_" (デフォルト値: `cyan`) +* [[option_weechat.color.chat_value_null]] *weechat.color.chat_value_null* +** 説明: `text color for null values (undefined)` +** タイプ: 色 +** 値: WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、brown、yellow、(light)blue、(light)magenta、(light)cyan) 、ターミナル色番号またはその別名; 色の前に属性を置くことができます (テキスト前景色のみ、背景色は出来ません): 太字は "*"、反転は "!"、イタリックは "/"、下線は "_" (デフォルト値: `blue`) + * [[option_weechat.color.emphasized]] *weechat.color.emphasized* ** 説明: `強調テキストの色 (テキスト検索する際など); このオプションは weechat.look.emphasized_attributes オプションが空文字列 (デフォルト値) の場合のみ使われます` ** タイプ: 色 diff --git a/doc/ja/weechat_dev.ja.asciidoc b/doc/ja/weechat_dev.ja.asciidoc index eb0b506ce..a2a3eb957 100644 --- a/doc/ja/weechat_dev.ja.asciidoc +++ b/doc/ja/weechat_dev.ja.asciidoc @@ -873,6 +873,7 @@ WeeChat は文字列中に独自の色コードを使うことで、属性 | 41 | weechat.color.chat_nick_suffix _(WeeChat ≥ 0.4.1)_ | 42 | weechat.color.emphasized _(WeeChat ≥ 0.4.2)_ | 43 | weechat.color.chat_day_change _(WeeChat ≥ 0.4.2)_ +| 44 | weechat.color.chat_value_null _(WeeChat ≥ 1.4)_ |=== WeeChat 色は: diff --git a/doc/ja/weechat_plugin_api.ja.asciidoc b/doc/ja/weechat_plugin_api.ja.asciidoc index f65211015..ab030f169 100644 --- a/doc/ja/weechat_plugin_api.ja.asciidoc +++ b/doc/ja/weechat_plugin_api.ja.asciidoc @@ -4633,7 +4633,11 @@ struct t_config_option *weechat_config_new_option ( * 'config_file': 設定ファイルへのポインタ * 'section': セクションへのポインタ -* 'name': オプションの名前 +// TRANSLATION MISSING +* 'name': オプションの名前; with WeeChat ≥ 1.4, the name can include a parent + option name (the value of parent option will be displayed in `/set` command + output if this option is "null"), the syntax is then: + "name << file.section.option" * 'type': オプションの型: ** 'boolean': ブール値 (on/off) ** 'integer': 整数値 (任意で文字列を受けるようにすることも可) @@ -5301,6 +5305,8 @@ void *weechat_config_option_get_pointer (struct t_config_option *option, ** 'config_file': 設定ファイルへのポインタ ('struct t_config_file *') ** 'section': セクションへのポインタ ('struct t_config_section *') ** 'name': オプション名 ('char *') +// TRANSLATION MISSING +** 'parent_name': name of parent option ('char *') _(WeeChat ≥ 1.4)_ ** 'type': オプションの型 ('int *') ** 'description': オプションの説明 ('char *') ** 'string_values': 文字列値 ('char *') |