summaryrefslogtreecommitdiff
path: root/doc/ja/weechat_plugin_api.ja.asciidoc
diff options
context:
space:
mode:
Diffstat (limited to 'doc/ja/weechat_plugin_api.ja.asciidoc')
-rw-r--r--doc/ja/weechat_plugin_api.ja.asciidoc8
1 files changed, 7 insertions, 1 deletions
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 *')