diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2014-03-20 15:57:46 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2014-03-20 15:57:46 +0100 |
commit | 3a6313c4b5646e73e3050dc61d22e3d244685a88 (patch) | |
tree | b41df5b16db9ad3d45e4792259b2407651c30add /doc | |
parent | e6c775050ba472afd747f2075be729fbab8b1096 (diff) | |
download | weechat-3a6313c4b5646e73e3050dc61d22e3d244685a88.zip |
api: add support of nested variables in function string_eval_expression and command /eval (closes #35)
Diffstat (limited to 'doc')
-rw-r--r-- | doc/en/weechat_plugin_api.en.txt | 4 | ||||
-rw-r--r-- | doc/fr/weechat_plugin_api.fr.txt | 4 | ||||
-rw-r--r-- | doc/it/weechat_plugin_api.it.txt | 5 | ||||
-rw-r--r-- | doc/ja/weechat_plugin_api.ja.txt | 5 |
4 files changed, 18 insertions, 0 deletions
diff --git a/doc/en/weechat_plugin_api.en.txt b/doc/en/weechat_plugin_api.en.txt index 7be917b19..b93ac9143 100644 --- a/doc/en/weechat_plugin_api.en.txt +++ b/doc/en/weechat_plugin_api.en.txt @@ -1819,6 +1819,10 @@ Evaluate an expression and return result as a string. Special variables with format `${variable}` are expanded (see command `/eval` in 'WeeChat User's guide'). +[NOTE] +Since version 0.4.4, nested variables are supported, for example: +`${color:${variable}}`. + Prototype: [source,C] diff --git a/doc/fr/weechat_plugin_api.fr.txt b/doc/fr/weechat_plugin_api.fr.txt index 36085b3ca..5bae50bf5 100644 --- a/doc/fr/weechat_plugin_api.fr.txt +++ b/doc/fr/weechat_plugin_api.fr.txt @@ -1851,6 +1851,10 @@ _WeeChat ≥ 0.4.0, mis à jour dans la 0.4.2._ Les variables spéciales avec le format `${variable}` sont étendues (voir la commande `/eval` dans le 'Guide utilisateur WeeChat'). +[NOTE] +Depuis la version 0.4.4, les variables imbriquées sont supportées, par exemple : +`${color:${variable}}`. + Prototype : [source,C] diff --git a/doc/it/weechat_plugin_api.it.txt b/doc/it/weechat_plugin_api.it.txt index 7bd7bc4a4..2846eccf0 100644 --- a/doc/it/weechat_plugin_api.it.txt +++ b/doc/it/weechat_plugin_api.it.txt @@ -1861,6 +1861,11 @@ Evaluate an expression and return result as a string. Special variables with format `${variable}` are expanded (see command `/eval` in 'WeeChat User's guide'). +// TRANSLATION MISSING +[NOTE] +Since version 0.4.4, nested variables are supported, for example: +`${color:${variable}}`. + Prototipo: [source,C] diff --git a/doc/ja/weechat_plugin_api.ja.txt b/doc/ja/weechat_plugin_api.ja.txt index 37b613175..64c1c026f 100644 --- a/doc/ja/weechat_plugin_api.ja.txt +++ b/doc/ja/weechat_plugin_api.ja.txt @@ -1815,6 +1815,11 @@ _WeeChat バージョン 0.4.0 以上で利用可、バージョン 0.4.2 で更 という書式で書かれた特殊変数は展開される ('WeeChat ユーザガイド' のコマンド `/eval` を参照)。 +// TRANSLATION MISSING +[NOTE] +Since version 0.4.4, nested variables are supported, for example: +`${color:${variable}}`. + プロトタイプ: [source,C] |