summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/en/weechat_plugin_api.en.adoc12
-rw-r--r--doc/fr/weechat_plugin_api.fr.adoc14
-rw-r--r--doc/it/weechat_plugin_api.it.adoc12
-rw-r--r--doc/ja/weechat_plugin_api.ja.adoc13
4 files changed, 42 insertions, 9 deletions
diff --git a/doc/en/weechat_plugin_api.en.adoc b/doc/en/weechat_plugin_api.en.adoc
index 89708624f..3a15a5cdc 100644
--- a/doc/en/weechat_plugin_api.en.adoc
+++ b/doc/en/weechat_plugin_api.en.adoc
@@ -2035,11 +2035,19 @@ expanded to last):
`+prefix<TAB>message+` +
`+©+`
-| `+${hide:x,value}+` |
- String with hidden chars (all chars in `value` replaced by `x`). |
+| `+${hide:x,string}+` |
+ String with hidden chars (all chars in `string` replaced by `x`). |
`+${hide:*,password}+` |
`+********+`
+| `+${cut:max,suffix,string}+` +
+ (_WeeChat ≥ 1.8_) |
+ String with `max` chars displayed, and optional `suffix` if string is cut. |
+ `+${cut:4,…,this is a test}+` +
+ `+${cut:2,>>,àéçôî}+` |
+ `+this…+` +
+ `+àé>>+`
+
| `+${re:N}+` |
Regex captured group: `0` = whole string matching, `1` to `99` = group
captured, `+++` = last group captured. |
diff --git a/doc/fr/weechat_plugin_api.fr.adoc b/doc/fr/weechat_plugin_api.fr.adoc
index 930bc887f..79be5e5ea 100644
--- a/doc/fr/weechat_plugin_api.fr.adoc
+++ b/doc/fr/weechat_plugin_api.fr.adoc
@@ -2077,12 +2077,20 @@ première étendue à la dernière) :
`+préfixe<TAB>message+` +
`+©+`
-| `+${hide:x,valeur}+` |
- Chaîne avec les caractères masqués (tous les caractères dans `valeur`
- remplacés par `x`. |
+| `+${hide:x,chaîne}+` |
+ Chaîne avec les caractères masqués (tous les caractères dans `chaîne`
+ remplacés par `x`). |
`+${hide:*,mot_de_passe}+` |
`+************+`
+| `+${cut:max,suffixe,chaîne}+` +
+ (_WeeChat ≥ 1.8_) |
+ Chaîne avec `max` caractères affichés, et un `suffixe` facultatif si la chaîne est coupée. |
+ `+${cut:4,…,ceci est un test}+` +
+ `+${cut:2,>>,àéçôî}+` |
+ `+ceci…+` +
+ `+àé>>+`
+
| `+${re:N}+` |
Groupe regex capturé : `0` = toute la chaîne correspondante,
`1` à `99` = groupe capturé, `+++` = dernier groupe capturé. |
diff --git a/doc/it/weechat_plugin_api.it.adoc b/doc/it/weechat_plugin_api.it.adoc
index 05d7ac51a..29caf8d25 100644
--- a/doc/it/weechat_plugin_api.it.adoc
+++ b/doc/it/weechat_plugin_api.it.adoc
@@ -2113,11 +2113,19 @@ expanded to last):
`+prefix<TAB>message+` +
`+©+`
-| `+${hide:x,value}+` |
- String with hidden chars (all chars in `value` replaced `x`). |
+| `+${hide:x,string}+` |
+ String with hidden chars (all chars in `string` replaced `x`). |
`+${hide:*,password}+` |
`+********+`
+| `+${cut:max,suffix,string}+` +
+ (_WeeChat ≥ 1.8_) |
+ String with `max` chars displayed, and optional `suffix` if string is cut. |
+ `+${cut:4,…,this is a test}+` +
+ `+${cut:2,>>,àéçôî}+` |
+ `+this…+` +
+ `+àé>>+`
+
| `+${re:N}+` |
Regex captured group: `0` = whole string matching, `1` to `99` = group
captured, `+++` = last group captured. |
diff --git a/doc/ja/weechat_plugin_api.ja.adoc b/doc/ja/weechat_plugin_api.ja.adoc
index 3b581ea8b..17860d881 100644
--- a/doc/ja/weechat_plugin_api.ja.adoc
+++ b/doc/ja/weechat_plugin_api.ja.adoc
@@ -2041,11 +2041,20 @@ char *weechat_string_eval_expression (const char *expr,
`+prefix<TAB>message+` +
`+©+`
-| `+${hide:x,value}+` |
- 隠す文字を含むテキスト (`value` に含まれる文字をすべて `x` で置換) |
+| `+${hide:x,string}+` |
+ 隠す文字を含むテキスト (`string` に含まれる文字をすべて `x` で置換) |
`+${hide:*,password}+` |
`+********+`
+// TRANSLATION MISSING
+| `+${cut:max,suffix,string}+` +
+ (_WeeChat バージョン 1.8 以上で利用可_) |
+ String with `max` chars displayed, and optional `suffix` if string is cut. |
+ `+${cut:4,…,this is a test}+` +
+ `+${cut:2,>>,àéçôî}+` |
+ `+this…+` +
+ `+àé>>+`
+
| `+${re:N}+` |
正規表現のキャプチャグループ: `0` = マッチするすべての文字列、`1` から `99` =
キャプチャされたグループ、`+++` = 最後にキャプチャされたグループ |