doc: add note about string evaluated in function window_set_title (plugin API reference)

v2.8-utf8proc
Sébastien Helleu 2016-06-25 10:38:48 +02:00
parent e647512d86
commit a9b0c00df7
4 changed files with 14 additions and 4 deletions

View File

@ -11785,7 +11785,9 @@ void weechat_window_set_title (const char *title);
Arguments:
* _title_: new title for terminal (NULL to reset title)
* _title_: new title for terminal (NULL to reset title); string is evaluated,
so variables like `${info:version}` can be used
(see <<_string_eval_expression,weechat_string_eval_expression>>)
C example:

View File

@ -12046,7 +12046,9 @@ void weechat_window_set_title (const char *title);
Paramètres :
* _title_ : nouveau titre pour le terminal (NULL pour réinitialiser le titre)
* _title_ : nouveau titre pour le terminal (NULL pour réinitialiser le titre);
la chaîne est évaluée, donc les variables comme `${info:version}` peuvent
être utilisées (voir <<_string_eval_expression,weechat_string_eval_expression>>)
Exemple en C :

View File

@ -12233,7 +12233,10 @@ void weechat_window_set_title (const char *title);
Argomenti:
* _title_: nuovo titolo per il terminale (NULL per resettarlo)
// TRANSLATION MISSING
* _title_: nuovo titolo per il terminale (NULL per resettarlo);
string is evaluated, so variables like `${info:version}` can be used
(see <<_string_eval_expression,weechat_string_eval_expression>>)
Esempio in C:

View File

@ -11780,7 +11780,10 @@ void weechat_window_set_title (const char *title);
引数:
* _title_: 端末の新しいタイトル (タイトルをリセットする場合は NULL)
// TRANSLATION MISSING
* _title_: 端末の新しいタイトル (タイトルをリセットする場合は NULL);
string is evaluated, so variables like `${info:version}` can be used
(see <<_string_eval_expression,weechat_string_eval_expression>>)
C 言語での使用例: