diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2015-12-24 07:53:37 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2015-12-24 07:53:37 +0100 |
commit | c4e3d66ba5bb6f91a0b5a36bab1123e25623b5e9 (patch) | |
tree | 2cac4fac4512c8c0eccc47d78ad07fd2fea768b9 /doc/it | |
parent | 2e5489b389c339799c5950f275cbc784927495da (diff) | |
download | weechat-c4e3d66ba5bb6f91a0b5a36bab1123e25623b5e9.zip |
core: add a parent name in options (closes #629)
Inherited values are now displayed in /set output when the value is
null, if a parent option name is defined in option.
New option: weechat.color.chat_value_null
Diffstat (limited to 'doc/it')
-rw-r--r-- | doc/it/autogen/plugin_api/hdata.asciidoc | 1 | ||||
-rw-r--r-- | doc/it/autogen/user/weechat_options.asciidoc | 5 | ||||
-rw-r--r-- | doc/it/weechat_plugin_api.it.asciidoc | 8 |
3 files changed, 13 insertions, 1 deletions
diff --git a/doc/it/autogen/plugin_api/hdata.asciidoc b/doc/it/autogen/plugin_api/hdata.asciidoc index e3b8459aa..c49a21e7d 100644 --- a/doc/it/autogen/plugin_api/hdata.asciidoc +++ b/doc/it/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/it/autogen/user/weechat_options.asciidoc b/doc/it/autogen/user/weechat_options.asciidoc index b844fdcf4..9c7238464 100644 --- a/doc/it/autogen/user/weechat_options.asciidoc +++ b/doc/it/autogen/user/weechat_options.asciidoc @@ -197,6 +197,11 @@ ** tipo: colore ** valori: 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 (valore predefinito: `cyan`) +* [[option_weechat.color.chat_value_null]] *weechat.color.chat_value_null* +** descrizione: `text color for null values (undefined)` +** tipo: colore +** valori: 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 (valore predefinito: `blue`) + * [[option_weechat.color.emphasized]] *weechat.color.emphasized* ** descrizione: `text color for emphasized text (for example when searching text); this option is used only if option weechat.look.emphasized_attributes is an empty string (default value)` ** tipo: colore diff --git a/doc/it/weechat_plugin_api.it.asciidoc b/doc/it/weechat_plugin_api.it.asciidoc index b44bd9c48..6806063dc 100644 --- a/doc/it/weechat_plugin_api.it.asciidoc +++ b/doc/it/weechat_plugin_api.it.asciidoc @@ -4758,7 +4758,11 @@ Argomenti: * 'config_file': puntatore al file di configurazione * 'section': puntatore alla sezione -* 'name': nome dell'opzione +// TRANSLATION MISSING +* 'name': nome dell'opzione; 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': tipo dell'opzione: ** 'boolean': valore booleano (on/off) ** 'integer': valore intero (con stringhe opzionali per i valori) @@ -5435,6 +5439,8 @@ Argomenti: ** 'config_file': puntatore al file di configurazione ('struct t_config_file *') ** 'section': puntatore alla sezione ('struct t_config_section *') ** 'name': nome dell'opzione ('char *') +// TRANSLATION MISSING +** 'parent_name': name of parent option ('char *') _(WeeChat ≥ 1.4)_ ** 'type': tipo dell'opzione ('int *') ** 'description': descrizione dell'opzione ('char *') ** 'string_values': valori stringa ('char *') |