mirror of
https://github.com/weechat/weechat.git
synced 2026-07-04 23:45:42 +02:00
core: update translations
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -1410,35 +1410,36 @@ To force a string comparison, you can add double quotes around each expression,
|
||||
"50" > "100" ==> 1
|
||||
|
||||
Some variables are replaced in expression, using the format ${variable}, variable can be, by order of priority:
|
||||
1. the string itself without evaluation (format: "raw:xxx")
|
||||
2. a user-defined variable (format: "name")
|
||||
3. an evaluated sub-string (format: "eval:xxx")
|
||||
4. an evaluated condition (format: "eval_cond:xxx")
|
||||
5. a string with escaped chars (format: "esc:xxx" or "\xxx")
|
||||
6. a string converted to lower case (format: "lower:xxx")
|
||||
7. a string converted to upper case (format: "upper:xxx")
|
||||
8. a string with chars to hide (format: "hide:char,string")
|
||||
9. a string with max chars (format: "cut:max,suffix,string" or "cut:+max,suffix,string")
|
||||
- the string itself without evaluation (format: "raw:xxx")
|
||||
- a user-defined variable (format: "name")
|
||||
- an evaluated sub-string (format: "eval:xxx")
|
||||
- an evaluated condition (format: "eval_cond:xxx")
|
||||
- a string with escaped chars (format: "esc:xxx" or "\xxx")
|
||||
- a string with a range of chars (format: "chars:xxx" or "chars:c1-c2" where "xxx" is one of: "digit", "xdigit", "lower", "upper", "alpha", "alnum")
|
||||
- a string converted to lower case (format: "lower:xxx")
|
||||
- a string converted to upper case (format: "upper:xxx")
|
||||
- a string with chars to hide (format: "hide:char,string")
|
||||
- a string with max chars (format: "cut:max,suffix,string" or "cut:+max,suffix,string")
|
||||
or max chars displayed on screen (format: "cutscr:max,suffix,string" or "cutscr:+max,suffix,string")
|
||||
10. a reversed string (format: "rev:xxx" or "revscr:xxx")
|
||||
11. a repeated string (format: "repeat:count,string")
|
||||
12. length of a string (format: "length:xxx" or "lengthscr:xxx")
|
||||
13. split of a string (format: "split:number,separators,flags,xxx")
|
||||
14. split of shell argmuents (format: "split_shell:number,xxx")
|
||||
15. a color (format: "color:xxx", see "Plugin API reference", function "color")
|
||||
16. a modifier (format: "modifier:name,data,string")
|
||||
17. an info (format: "info:name,arguments", arguments are optional)
|
||||
18. a base 16/32/64 encoded/decoded string (format: "base_encode:base,xxx" or "base_decode:base,xxx")
|
||||
19. current date/time (format: "date" or "date:format")
|
||||
20. an environment variable (format: "env:XXX")
|
||||
21. a ternary operator (format: "if:condition?value_if_true:value_if_false")
|
||||
22. result of an expression with parentheses and operators + - * / // % ** (format: "calc:xxx")
|
||||
23. a random integer number (format: "random:min,max")
|
||||
24. a translated string (format: "translate:xxx")
|
||||
25. define a user variable (format: "define:name,value")
|
||||
26. an option (format: "file.section.option")
|
||||
27. a local variable in buffer
|
||||
28. a hdata name/variable (the value is automatically converted to string), by default "window" and "buffer" point to current window/buffer.
|
||||
- a reversed string (format: "rev:xxx" or "revscr:xxx")
|
||||
- a repeated string (format: "repeat:count,string")
|
||||
- length of a string (format: "length:xxx" or "lengthscr:xxx")
|
||||
- split of a string (format: "split:number,separators,flags,xxx")
|
||||
- split of shell argmuents (format: "split_shell:number,xxx")
|
||||
- a color (format: "color:xxx", see "Plugin API reference", function "color")
|
||||
- a modifier (format: "modifier:name,data,string")
|
||||
- an info (format: "info:name,arguments", arguments are optional)
|
||||
- a base 16/32/64 encoded/decoded string (format: "base_encode:base,xxx" or "base_decode:base,xxx")
|
||||
- current date/time (format: "date" or "date:format")
|
||||
- an environment variable (format: "env:XXX")
|
||||
- a ternary operator (format: "if:condition?value_if_true:value_if_false")
|
||||
- result of an expression with parentheses and operators + - * / // % ** (format: "calc:xxx")
|
||||
- a random integer number (format: "random:min,max")
|
||||
- a translated string (format: "translate:xxx")
|
||||
- define a user variable (format: "define:name,value")
|
||||
- an option (format: "file.section.option")
|
||||
- a local variable in buffer
|
||||
- a hdata name/variable (the value is automatically converted to string), by default "window" and "buffer" point to current window/buffer.
|
||||
Format for hdata can be one of following:
|
||||
hdata.var1.var2...: start with a hdata (pointer must be known), and ask variables one after one (other hdata can be followed)
|
||||
hdata[list].var1.var2...: start with a hdata using a list/pointer/pointer name, for example:
|
||||
@@ -1461,6 +1462,8 @@ Examples (simple strings):
|
||||
/eval -n ${window.buffer.full_name} ==> core.weechat
|
||||
/eval -n ${window.buffer.number} ==> 1
|
||||
/eval -n ${\t} ==> <tab>
|
||||
/eval -n ${chars:digit} ==> 0123456789
|
||||
/eval -n ${chars:J-T} ==> JKLMNOPQRST
|
||||
/eval -n ${lower:TEST} ==> test
|
||||
/eval -n ${upper:test} ==> TEST
|
||||
/eval -n ${hide:-,${relay.network.password}} ==> --------
|
||||
|
||||
@@ -1410,35 +1410,36 @@ Pour forcer une comparaison de chaînes, vous pouvez ajouter des guillemets auto
|
||||
"50" > "100" ==> 1
|
||||
|
||||
Des variables sont remplacées dans l'expression, en utilisant le format ${variable}, la variable pouvant être, par ordre de priorité :
|
||||
1. la chaîne elle-même sans évaluation (format : "raw:xxx")
|
||||
2. une variable définie par l'utilisateur (format : "nom")
|
||||
3. une sous-chaîne évaluée (format : "eval:xxx")
|
||||
4. une condition évaluée (format : "eval_cond:xxx")
|
||||
5. une chaîne avec les caractères échappés (format : "esc:xxx" ou "\xxx")
|
||||
6. une chaîne convertie en minuscules (format : "lower:xxx")
|
||||
7. une chaîne convertie en majuscules (format : "upper:xxx")
|
||||
8. une chaîne avec des caractères à cacher (format : "hide:caractère,chaîne")
|
||||
9. une chaîne avec un maximum de caractères (format : "cut:max,suffixe,chaîne" ou "cut:+max,suffixe,chaîne")
|
||||
ou un maximum de caractères affichés à l'écran (format : "cutscr:max,suffixe,chaîne" ou "cutscr:+max,suffixe,chaîne")
|
||||
10. une chaîne inversée (format : "rev:xxx" ou "revscr:xxx")
|
||||
11. une chaîne répétée (format : "repeat:nombre,chaîne")
|
||||
12. longueur d'une chaîne (format : "length:xxx" ou "lengthscr:xxx")
|
||||
13. découpage d'une chaîne (format : "split:nombre,séparateurs,flags,xxx")
|
||||
14. découpage de paramètres shell (format : "split_shell:nombre,xxx")
|
||||
15. une couleur (format : "color:xxx", voir la "Référence API extension", fonction "color")
|
||||
16. un modificateur (format : "modifier:nom,données,chaîne")
|
||||
17. une info (format : "info:nom,paramètres", les paramètres sont optionnels)
|
||||
18. une chaîne encodée/decodée en base 16, 32 ou 64 (format : "base_encode:base,xxx" ou "base_decode:base,xxx")
|
||||
19. la date/heure courante (format : "date" ou "date:format")
|
||||
20. une variable d'environnement (format : "env:XXX")
|
||||
21. un opérateur ternaire (format : "if:condition?valeur_si_vrai:valeur_si_faux")
|
||||
22. le résultat d'une expression avec parenthèses et les opérateurs + - * / // % ** (format : "calc:xxx")
|
||||
23. un nombre entier aléatoire (format : "random:min,max")
|
||||
24. une chaîne traduite (format : "translate:xxx")
|
||||
25. déclaration d'une variable utilisateur (format : "define:nom,valeur")
|
||||
26. une option (format : "fichier.section.option")
|
||||
27. une variable locale du tampon
|
||||
28. un hdata/variable (la valeur est automatiquement convertie en chaîne), par défaut "window" et "buffer" pointent vers la fenêtre et le tampon courants.
|
||||
- la chaîne elle-même sans évaluation (format : "raw:xxx")
|
||||
- une variable définie par l'utilisateur (format : "nom")
|
||||
- une sous-chaîne évaluée (format : "eval:xxx")
|
||||
- une condition évaluée (format : "eval_cond:xxx")
|
||||
- une chaîne avec les caractères échappés (format : "esc:xxx" ou "\xxx")
|
||||
- une chaîne avec un intervalle de caractères (format : "chars:xxx" ou "chars:c1-c2")
|
||||
- une chaîne convertie en minuscules (format : "lower:xxx")
|
||||
- une chaîne convertie en majuscules (format : "upper:xxx")
|
||||
- une chaîne avec des caractères à cacher (format : "hide:caractère,chaîne")
|
||||
- une chaîne avec un maximum de caractères (format : "cut:max,suffixe,chaîne" ou "cut:+max,suffixe,chaîne")
|
||||
ou un maximum de caractères affichés à l'écran (format : "cutscr:max,suffixe,chaîne" ou "cutscr:+max,suffixe,chaîne")
|
||||
- une chaîne inversée (format : "rev:xxx" ou "revscr:xxx")
|
||||
- une chaîne répétée (format : "repeat:nombre,chaîne")
|
||||
- longueur d'une chaîne (format : "length:xxx" ou "lengthscr:xxx")
|
||||
- découpage d'une chaîne (format : "split:nombre,séparateurs,flags,xxx")
|
||||
- découpage de paramètres shell (format : "split_shell:nombre,xxx")
|
||||
- une couleur (format : "color:xxx", voir la "Référence API extension", fonction "color")
|
||||
- un modificateur (format : "modifier:nom,données,chaîne")
|
||||
- une info (format : "info:nom,paramètres", les paramètres sont optionnels)
|
||||
- une chaîne encodée/decodée en base 16, 32 ou 64 (format : "base_encode:base,xxx" ou "base_decode:base,xxx")
|
||||
- la date/heure courante (format : "date" ou "date:format")
|
||||
- une variable d'environnement (format : "env:XXX")
|
||||
- un opérateur ternaire (format : "if:condition?valeur_si_vrai:valeur_si_faux")
|
||||
- le résultat d'une expression avec parenthèses et les opérateurs + - * / // % ** (format : "calc:xxx")
|
||||
- un nombre entier aléatoire (format : "random:min,max")
|
||||
- une chaîne traduite (format : "translate:xxx")
|
||||
- déclaration d'une variable utilisateur (format : "define:nom,valeur")
|
||||
- une option (format : "fichier.section.option")
|
||||
- une variable locale du tampon
|
||||
- un hdata/variable (la valeur est automatiquement convertie en chaîne), par défaut "window" et "buffer" pointent vers la fenêtre et le tampon courants.
|
||||
Le format du hdata peut être le suivant :
|
||||
hdata.var1.var2... : démarrer avec un hdata (le pointeur doit être connu), et demander les variables l'une après l'autre (d'autres hdata peuvent être suivis)
|
||||
hdata[liste].var1.var2... : démarrer avec un hdata en utilisant une liste/pointeur/nom de pointeur, par exemple :
|
||||
@@ -1461,6 +1462,8 @@ Exemples (chaînes simples) :
|
||||
/eval -n ${window.buffer.full_name} ==> core.weechat
|
||||
/eval -n ${window.buffer.number} ==> 1
|
||||
/eval -n ${\t} ==> <tab>
|
||||
/eval -n ${chars:digit} ==> 0123456789
|
||||
/eval -n ${chars:J-T} ==> JKLMNOPQRST
|
||||
/eval -n ${lower:TEST} ==> test
|
||||
/eval -n ${upper:test} ==> TEST
|
||||
/eval -n ${hide:-,${relay.network.password}} ==> --------
|
||||
|
||||
@@ -1410,35 +1410,36 @@ To force a string comparison, you can add double quotes around each expression,
|
||||
"50" > "100" ==> 1
|
||||
|
||||
Some variables are replaced in expression, using the format ${variable}, variable can be, by order of priority:
|
||||
1. the string itself without evaluation (format: "raw:xxx")
|
||||
2. a user-defined variable (format: "name")
|
||||
3. an evaluated sub-string (format: "eval:xxx")
|
||||
4. an evaluated condition (format: "eval_cond:xxx")
|
||||
5. a string with escaped chars (format: "esc:xxx" or "\xxx")
|
||||
6. a string converted to lower case (format: "lower:xxx")
|
||||
7. a string converted to upper case (format: "upper:xxx")
|
||||
8. a string with chars to hide (format: "hide:char,string")
|
||||
9. a string with max chars (format: "cut:max,suffix,string" or "cut:+max,suffix,string")
|
||||
- the string itself without evaluation (format: "raw:xxx")
|
||||
- a user-defined variable (format: "name")
|
||||
- an evaluated sub-string (format: "eval:xxx")
|
||||
- an evaluated condition (format: "eval_cond:xxx")
|
||||
- a string with escaped chars (format: "esc:xxx" or "\xxx")
|
||||
- a string with a range of chars (format: "chars:xxx" or "chars:c1-c2" where "xxx" is one of: "digit", "xdigit", "lower", "upper", "alpha", "alnum")
|
||||
- a string converted to lower case (format: "lower:xxx")
|
||||
- a string converted to upper case (format: "upper:xxx")
|
||||
- a string with chars to hide (format: "hide:char,string")
|
||||
- a string with max chars (format: "cut:max,suffix,string" or "cut:+max,suffix,string")
|
||||
or max chars displayed on screen (format: "cutscr:max,suffix,string" or "cutscr:+max,suffix,string")
|
||||
10. a reversed string (format: "rev:xxx" or "revscr:xxx")
|
||||
11. a repeated string (format: "repeat:count,string")
|
||||
12. length of a string (format: "length:xxx" or "lengthscr:xxx")
|
||||
13. split of a string (format: "split:number,separators,flags,xxx")
|
||||
14. split of shell argmuents (format: "split_shell:number,xxx")
|
||||
15. a color (format: "color:xxx", see "Plugin API reference", function "color")
|
||||
16. a modifier (format: "modifier:name,data,string")
|
||||
17. an info (format: "info:name,arguments", arguments are optional)
|
||||
18. a base 16/32/64 encoded/decoded string (format: "base_encode:base,xxx" or "base_decode:base,xxx")
|
||||
19. current date/time (format: "date" or "date:format")
|
||||
20. an environment variable (format: "env:XXX")
|
||||
21. a ternary operator (format: "if:condition?value_if_true:value_if_false")
|
||||
22. result of an expression with parentheses and operators + - * / // % ** (format: "calc:xxx")
|
||||
23. a random integer number (format: "random:min,max")
|
||||
24. a translated string (format: "translate:xxx")
|
||||
25. define a user variable (format: "define:name,value")
|
||||
26. an option (format: "file.section.option")
|
||||
27. a local variable in buffer
|
||||
28. a hdata name/variable (the value is automatically converted to string), by default "window" and "buffer" point to current window/buffer.
|
||||
- a reversed string (format: "rev:xxx" or "revscr:xxx")
|
||||
- a repeated string (format: "repeat:count,string")
|
||||
- length of a string (format: "length:xxx" or "lengthscr:xxx")
|
||||
- split of a string (format: "split:number,separators,flags,xxx")
|
||||
- split of shell argmuents (format: "split_shell:number,xxx")
|
||||
- a color (format: "color:xxx", see "Plugin API reference", function "color")
|
||||
- a modifier (format: "modifier:name,data,string")
|
||||
- an info (format: "info:name,arguments", arguments are optional)
|
||||
- a base 16/32/64 encoded/decoded string (format: "base_encode:base,xxx" or "base_decode:base,xxx")
|
||||
- current date/time (format: "date" or "date:format")
|
||||
- an environment variable (format: "env:XXX")
|
||||
- a ternary operator (format: "if:condition?value_if_true:value_if_false")
|
||||
- result of an expression with parentheses and operators + - * / // % ** (format: "calc:xxx")
|
||||
- a random integer number (format: "random:min,max")
|
||||
- a translated string (format: "translate:xxx")
|
||||
- define a user variable (format: "define:name,value")
|
||||
- an option (format: "file.section.option")
|
||||
- a local variable in buffer
|
||||
- a hdata name/variable (the value is automatically converted to string), by default "window" and "buffer" point to current window/buffer.
|
||||
Format for hdata can be one of following:
|
||||
hdata.var1.var2...: start with a hdata (pointer must be known), and ask variables one after one (other hdata can be followed)
|
||||
hdata[list].var1.var2...: start with a hdata using a list/pointer/pointer name, for example:
|
||||
@@ -1461,6 +1462,8 @@ Examples (simple strings):
|
||||
/eval -n ${window.buffer.full_name} ==> core.weechat
|
||||
/eval -n ${window.buffer.number} ==> 1
|
||||
/eval -n ${\t} ==> <tab>
|
||||
/eval -n ${chars:digit} ==> 0123456789
|
||||
/eval -n ${chars:J-T} ==> JKLMNOPQRST
|
||||
/eval -n ${lower:TEST} ==> test
|
||||
/eval -n ${upper:test} ==> TEST
|
||||
/eval -n ${hide:-,${relay.network.password}} ==> --------
|
||||
|
||||
@@ -1410,35 +1410,36 @@ To force a string comparison, you can add double quotes around each expression,
|
||||
"50" > "100" ==> 1
|
||||
|
||||
Some variables are replaced in expression, using the format ${variable}, variable can be, by order of priority:
|
||||
1. the string itself without evaluation (format: "raw:xxx")
|
||||
2. a user-defined variable (format: "name")
|
||||
3. an evaluated sub-string (format: "eval:xxx")
|
||||
4. an evaluated condition (format: "eval_cond:xxx")
|
||||
5. a string with escaped chars (format: "esc:xxx" or "\xxx")
|
||||
6. a string converted to lower case (format: "lower:xxx")
|
||||
7. a string converted to upper case (format: "upper:xxx")
|
||||
8. a string with chars to hide (format: "hide:char,string")
|
||||
9. a string with max chars (format: "cut:max,suffix,string" or "cut:+max,suffix,string")
|
||||
- the string itself without evaluation (format: "raw:xxx")
|
||||
- a user-defined variable (format: "name")
|
||||
- an evaluated sub-string (format: "eval:xxx")
|
||||
- an evaluated condition (format: "eval_cond:xxx")
|
||||
- a string with escaped chars (format: "esc:xxx" or "\xxx")
|
||||
- a string with a range of chars (format: "chars:xxx" or "chars:c1-c2" where "xxx" is one of: "digit", "xdigit", "lower", "upper", "alpha", "alnum")
|
||||
- a string converted to lower case (format: "lower:xxx")
|
||||
- a string converted to upper case (format: "upper:xxx")
|
||||
- a string with chars to hide (format: "hide:char,string")
|
||||
- a string with max chars (format: "cut:max,suffix,string" or "cut:+max,suffix,string")
|
||||
or max chars displayed on screen (format: "cutscr:max,suffix,string" or "cutscr:+max,suffix,string")
|
||||
10. a reversed string (format: "rev:xxx" or "revscr:xxx")
|
||||
11. a repeated string (format: "repeat:count,string")
|
||||
12. length of a string (format: "length:xxx" or "lengthscr:xxx")
|
||||
13. split of a string (format: "split:number,separators,flags,xxx")
|
||||
14. split of shell argmuents (format: "split_shell:number,xxx")
|
||||
15. a color (format: "color:xxx", see "Plugin API reference", function "color")
|
||||
16. a modifier (format: "modifier:name,data,string")
|
||||
17. an info (format: "info:name,arguments", arguments are optional)
|
||||
18. a base 16/32/64 encoded/decoded string (format: "base_encode:base,xxx" or "base_decode:base,xxx")
|
||||
19. current date/time (format: "date" or "date:format")
|
||||
20. an environment variable (format: "env:XXX")
|
||||
21. a ternary operator (format: "if:condition?value_if_true:value_if_false")
|
||||
22. result of an expression with parentheses and operators + - * / // % ** (format: "calc:xxx")
|
||||
23. a random integer number (format: "random:min,max")
|
||||
24. a translated string (format: "translate:xxx")
|
||||
25. define a user variable (format: "define:name,value")
|
||||
26. an option (format: "file.section.option")
|
||||
27. a local variable in buffer
|
||||
28. a hdata name/variable (the value is automatically converted to string), by default "window" and "buffer" point to current window/buffer.
|
||||
- a reversed string (format: "rev:xxx" or "revscr:xxx")
|
||||
- a repeated string (format: "repeat:count,string")
|
||||
- length of a string (format: "length:xxx" or "lengthscr:xxx")
|
||||
- split of a string (format: "split:number,separators,flags,xxx")
|
||||
- split of shell argmuents (format: "split_shell:number,xxx")
|
||||
- a color (format: "color:xxx", see "Plugin API reference", function "color")
|
||||
- a modifier (format: "modifier:name,data,string")
|
||||
- an info (format: "info:name,arguments", arguments are optional)
|
||||
- a base 16/32/64 encoded/decoded string (format: "base_encode:base,xxx" or "base_decode:base,xxx")
|
||||
- current date/time (format: "date" or "date:format")
|
||||
- an environment variable (format: "env:XXX")
|
||||
- a ternary operator (format: "if:condition?value_if_true:value_if_false")
|
||||
- result of an expression with parentheses and operators + - * / // % ** (format: "calc:xxx")
|
||||
- a random integer number (format: "random:min,max")
|
||||
- a translated string (format: "translate:xxx")
|
||||
- define a user variable (format: "define:name,value")
|
||||
- an option (format: "file.section.option")
|
||||
- a local variable in buffer
|
||||
- a hdata name/variable (the value is automatically converted to string), by default "window" and "buffer" point to current window/buffer.
|
||||
Format for hdata can be one of following:
|
||||
hdata.var1.var2...: start with a hdata (pointer must be known), and ask variables one after one (other hdata can be followed)
|
||||
hdata[list].var1.var2...: start with a hdata using a list/pointer/pointer name, for example:
|
||||
@@ -1461,6 +1462,8 @@ Examples (simple strings):
|
||||
/eval -n ${window.buffer.full_name} ==> core.weechat
|
||||
/eval -n ${window.buffer.number} ==> 1
|
||||
/eval -n ${\t} ==> <tab>
|
||||
/eval -n ${chars:digit} ==> 0123456789
|
||||
/eval -n ${chars:J-T} ==> JKLMNOPQRST
|
||||
/eval -n ${lower:TEST} ==> test
|
||||
/eval -n ${upper:test} ==> TEST
|
||||
/eval -n ${hide:-,${relay.network.password}} ==> --------
|
||||
|
||||
@@ -1409,35 +1409,36 @@ To force a string comparison, you can add double quotes around each expression,
|
||||
"50" > "100" ==> 1
|
||||
|
||||
Some variables are replaced in expression, using the format ${variable}, variable can be, by order of priority:
|
||||
1. the string itself without evaluation (format: "raw:xxx")
|
||||
2. a user-defined variable (format: "name")
|
||||
3. an evaluated sub-string (format: "eval:xxx")
|
||||
4. an evaluated condition (format: "eval_cond:xxx")
|
||||
5. a string with escaped chars (format: "esc:xxx" or "\xxx")
|
||||
6. a string converted to lower case (format: "lower:xxx")
|
||||
7. a string converted to upper case (format: "upper:xxx")
|
||||
8. a string with chars to hide (format: "hide:char,string")
|
||||
9. a string with max chars (format: "cut:max,suffix,string" or "cut:+max,suffix,string")
|
||||
- the string itself without evaluation (format: "raw:xxx")
|
||||
- a user-defined variable (format: "name")
|
||||
- an evaluated sub-string (format: "eval:xxx")
|
||||
- an evaluated condition (format: "eval_cond:xxx")
|
||||
- a string with escaped chars (format: "esc:xxx" or "\xxx")
|
||||
- a string with a range of chars (format: "chars:xxx" or "chars:c1-c2" where "xxx" is one of: "digit", "xdigit", "lower", "upper", "alpha", "alnum")
|
||||
- a string converted to lower case (format: "lower:xxx")
|
||||
- a string converted to upper case (format: "upper:xxx")
|
||||
- a string with chars to hide (format: "hide:char,string")
|
||||
- a string with max chars (format: "cut:max,suffix,string" or "cut:+max,suffix,string")
|
||||
or max chars displayed on screen (format: "cutscr:max,suffix,string" or "cutscr:+max,suffix,string")
|
||||
10. a reversed string (format: "rev:xxx" or "revscr:xxx")
|
||||
11. a repeated string (format: "repeat:count,string")
|
||||
12. length of a string (format: "length:xxx" or "lengthscr:xxx")
|
||||
13. split of a string (format: "split:number,separators,flags,xxx")
|
||||
14. split of shell argmuents (format: "split_shell:number,xxx")
|
||||
15. a color (format: "color:xxx", see "Plugin API reference", function "color")
|
||||
16. a modifier (format: "modifier:name,data,string")
|
||||
17. an info (format: "info:name,arguments", arguments are optional)
|
||||
18. a base 16/32/64 encoded/decoded string (format: "base_encode:base,xxx" or "base_decode:base,xxx")
|
||||
19. current date/time (format: "date" or "date:format")
|
||||
20. an environment variable (format: "env:XXX")
|
||||
21. a ternary operator (format: "if:condition?value_if_true:value_if_false")
|
||||
22. result of an expression with parentheses and operators + - * / // % ** (format: "calc:xxx")
|
||||
23. a random integer number (format: "random:min,max")
|
||||
24. a translated string (format: "translate:xxx")
|
||||
25. define a user variable (format: "define:name,value")
|
||||
26. an option (format: "file.section.option")
|
||||
27. a local variable in buffer
|
||||
28. a hdata name/variable (the value is automatically converted to string), by default "window" and "buffer" point to current window/buffer.
|
||||
- a reversed string (format: "rev:xxx" or "revscr:xxx")
|
||||
- a repeated string (format: "repeat:count,string")
|
||||
- length of a string (format: "length:xxx" or "lengthscr:xxx")
|
||||
- split of a string (format: "split:number,separators,flags,xxx")
|
||||
- split of shell argmuents (format: "split_shell:number,xxx")
|
||||
- a color (format: "color:xxx", see "Plugin API reference", function "color")
|
||||
- a modifier (format: "modifier:name,data,string")
|
||||
- an info (format: "info:name,arguments", arguments are optional)
|
||||
- a base 16/32/64 encoded/decoded string (format: "base_encode:base,xxx" or "base_decode:base,xxx")
|
||||
- current date/time (format: "date" or "date:format")
|
||||
- an environment variable (format: "env:XXX")
|
||||
- a ternary operator (format: "if:condition?value_if_true:value_if_false")
|
||||
- result of an expression with parentheses and operators + - * / // % ** (format: "calc:xxx")
|
||||
- a random integer number (format: "random:min,max")
|
||||
- a translated string (format: "translate:xxx")
|
||||
- define a user variable (format: "define:name,value")
|
||||
- an option (format: "file.section.option")
|
||||
- a local variable in buffer
|
||||
- a hdata name/variable (the value is automatically converted to string), by default "window" and "buffer" point to current window/buffer.
|
||||
Format for hdata can be one of following:
|
||||
hdata.var1.var2...: start with a hdata (pointer must be known), and ask variables one after one (other hdata can be followed)
|
||||
hdata[list].var1.var2...: start with a hdata using a list/pointer/pointer name, for example:
|
||||
@@ -1460,6 +1461,8 @@ Examples (simple strings):
|
||||
/eval -n ${window.buffer.full_name} ==> core.weechat
|
||||
/eval -n ${window.buffer.number} ==> 1
|
||||
/eval -n ${\t} ==> <tab>
|
||||
/eval -n ${chars:digit} ==> 0123456789
|
||||
/eval -n ${chars:J-T} ==> JKLMNOPQRST
|
||||
/eval -n ${lower:TEST} ==> test
|
||||
/eval -n ${upper:test} ==> TEST
|
||||
/eval -n ${hide:-,${relay.network.password}} ==> --------
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -21,7 +21,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WeeChat\n"
|
||||
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
|
||||
"POT-Creation-Date: 2022-10-15 22:42+0200\n"
|
||||
"POT-Creation-Date: 2022-11-06 09:02+0100\n"
|
||||
"PO-Revision-Date: 2022-10-15 22:51+0200\n"
|
||||
"Last-Translator: Ondřej Súkup <mimi.vx@gmail.com>\n"
|
||||
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
|
||||
@@ -1572,43 +1572,45 @@ msgid ""
|
||||
"\n"
|
||||
"Some variables are replaced in expression, using the format ${variable}, "
|
||||
"variable can be, by order of priority:\n"
|
||||
" 1. the string itself without evaluation (format: \"raw:xxx\")\n"
|
||||
" 2. a user-defined variable (format: \"name\")\n"
|
||||
" 3. an evaluated sub-string (format: \"eval:xxx\")\n"
|
||||
" 4. an evaluated condition (format: \"eval_cond:xxx\")\n"
|
||||
" 5. a string with escaped chars (format: \"esc:xxx\" or \"\\xxx\")\n"
|
||||
" 6. a string converted to lower case (format: \"lower:xxx\")\n"
|
||||
" 7. a string converted to upper case (format: \"upper:xxx\")\n"
|
||||
" 8. a string with chars to hide (format: \"hide:char,string\")\n"
|
||||
" 9. a string with max chars (format: \"cut:max,suffix,string\" or \"cut:"
|
||||
"+max,suffix,string\")\n"
|
||||
" - the string itself without evaluation (format: \"raw:xxx\")\n"
|
||||
" - a user-defined variable (format: \"name\")\n"
|
||||
" - an evaluated sub-string (format: \"eval:xxx\")\n"
|
||||
" - an evaluated condition (format: \"eval_cond:xxx\")\n"
|
||||
" - a string with escaped chars (format: \"esc:xxx\" or \"\\xxx\")\n"
|
||||
" - a string with a range of chars (format: \"chars:xxx\" or \"chars:c1-c2\" "
|
||||
"where \"xxx\" is one of: \"digit\", \"xdigit\", \"lower\", \"upper\", "
|
||||
"\"alpha\", \"alnum\")\n"
|
||||
" - a string converted to lower case (format: \"lower:xxx\")\n"
|
||||
" - a string converted to upper case (format: \"upper:xxx\")\n"
|
||||
" - a string with chars to hide (format: \"hide:char,string\")\n"
|
||||
" - a string with max chars (format: \"cut:max,suffix,string\" or \"cut:+max,"
|
||||
"suffix,string\")\n"
|
||||
" or max chars displayed on screen (format: \"cutscr:max,suffix,string\" "
|
||||
"or \"cutscr:+max,suffix,string\")\n"
|
||||
" 10. a reversed string (format: \"rev:xxx\" or \"revscr:xxx\")\n"
|
||||
" 11. a repeated string (format: \"repeat:count,string\")\n"
|
||||
" 12. length of a string (format: \"length:xxx\" or \"lengthscr:xxx\")\n"
|
||||
" 13. split of a string (format: \"split:number,separators,flags,xxx\")\n"
|
||||
" 14. split of shell argmuents (format: \"split_shell:number,xxx\")\n"
|
||||
" 15. a color (format: \"color:xxx\", see \"Plugin API reference\", function "
|
||||
" - a reversed string (format: \"rev:xxx\" or \"revscr:xxx\")\n"
|
||||
" - a repeated string (format: \"repeat:count,string\")\n"
|
||||
" - length of a string (format: \"length:xxx\" or \"lengthscr:xxx\")\n"
|
||||
" - split of a string (format: \"split:number,separators,flags,xxx\")\n"
|
||||
" - split of shell argmuents (format: \"split_shell:number,xxx\")\n"
|
||||
" - a color (format: \"color:xxx\", see \"Plugin API reference\", function "
|
||||
"\"color\")\n"
|
||||
" 16. a modifier (format: \"modifier:name,data,string\")\n"
|
||||
" 17. an info (format: \"info:name,arguments\", arguments are optional)\n"
|
||||
" 18. a base 16/32/64 encoded/decoded string (format: \"base_encode:base,"
|
||||
"xxx\" or \"base_decode:base,xxx\")\n"
|
||||
" 19. current date/time (format: \"date\" or \"date:format\")\n"
|
||||
" 20. an environment variable (format: \"env:XXX\")\n"
|
||||
" 21. a ternary operator (format: \"if:condition?value_if_true:"
|
||||
" - a modifier (format: \"modifier:name,data,string\")\n"
|
||||
" - an info (format: \"info:name,arguments\", arguments are optional)\n"
|
||||
" - a base 16/32/64 encoded/decoded string (format: \"base_encode:base,xxx\" "
|
||||
"or \"base_decode:base,xxx\")\n"
|
||||
" - current date/time (format: \"date\" or \"date:format\")\n"
|
||||
" - an environment variable (format: \"env:XXX\")\n"
|
||||
" - a ternary operator (format: \"if:condition?value_if_true:"
|
||||
"value_if_false\")\n"
|
||||
" 22. result of an expression with parentheses and operators + - * / // % ** "
|
||||
" - result of an expression with parentheses and operators + - * / // % ** "
|
||||
"(format: \"calc:xxx\")\n"
|
||||
" 23. a random integer number (format: \"random:min,max\")\n"
|
||||
" 24. a translated string (format: \"translate:xxx\")\n"
|
||||
" 25. define a user variable (format: \"define:name,value\")\n"
|
||||
" 26. an option (format: \"file.section.option\")\n"
|
||||
" 27. a local variable in buffer\n"
|
||||
" 28. a hdata name/variable (the value is automatically converted to "
|
||||
"string), by default \"window\" and \"buffer\" point to current window/"
|
||||
"buffer.\n"
|
||||
" - a random integer number (format: \"random:min,max\")\n"
|
||||
" - a translated string (format: \"translate:xxx\")\n"
|
||||
" - define a user variable (format: \"define:name,value\")\n"
|
||||
" - an option (format: \"file.section.option\")\n"
|
||||
" - a local variable in buffer\n"
|
||||
" - a hdata name/variable (the value is automatically converted to string), "
|
||||
"by default \"window\" and \"buffer\" point to current window/buffer.\n"
|
||||
"Format for hdata can be one of following:\n"
|
||||
" hdata.var1.var2...: start with a hdata (pointer must be known), and ask "
|
||||
"variables one after one (other hdata can be followed)\n"
|
||||
@@ -1639,6 +1641,8 @@ msgid ""
|
||||
" /eval -n ${window.buffer.full_name} ==> core.weechat\n"
|
||||
" /eval -n ${window.buffer.number} ==> 1\n"
|
||||
" /eval -n ${\\t} ==> <tab>\n"
|
||||
" /eval -n ${chars:digit} ==> 0123456789\n"
|
||||
" /eval -n ${chars:J-T} ==> JKLMNOPQRST\n"
|
||||
" /eval -n ${lower:TEST} ==> test\n"
|
||||
" /eval -n ${upper:test} ==> TEST\n"
|
||||
" /eval -n ${hide:-,${relay.network.password}} ==> --------\n"
|
||||
|
||||
@@ -22,7 +22,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WeeChat\n"
|
||||
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
|
||||
"POT-Creation-Date: 2022-10-15 22:42+0200\n"
|
||||
"POT-Creation-Date: 2022-11-06 09:02+0100\n"
|
||||
"PO-Revision-Date: 2022-10-15 22:51+0200\n"
|
||||
"Last-Translator: Santiago Forero <santiago@forero.xyz>\n"
|
||||
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
|
||||
@@ -1815,43 +1815,45 @@ msgid ""
|
||||
"\n"
|
||||
"Some variables are replaced in expression, using the format ${variable}, "
|
||||
"variable can be, by order of priority:\n"
|
||||
" 1. the string itself without evaluation (format: \"raw:xxx\")\n"
|
||||
" 2. a user-defined variable (format: \"name\")\n"
|
||||
" 3. an evaluated sub-string (format: \"eval:xxx\")\n"
|
||||
" 4. an evaluated condition (format: \"eval_cond:xxx\")\n"
|
||||
" 5. a string with escaped chars (format: \"esc:xxx\" or \"\\xxx\")\n"
|
||||
" 6. a string converted to lower case (format: \"lower:xxx\")\n"
|
||||
" 7. a string converted to upper case (format: \"upper:xxx\")\n"
|
||||
" 8. a string with chars to hide (format: \"hide:char,string\")\n"
|
||||
" 9. a string with max chars (format: \"cut:max,suffix,string\" or \"cut:"
|
||||
"+max,suffix,string\")\n"
|
||||
" - the string itself without evaluation (format: \"raw:xxx\")\n"
|
||||
" - a user-defined variable (format: \"name\")\n"
|
||||
" - an evaluated sub-string (format: \"eval:xxx\")\n"
|
||||
" - an evaluated condition (format: \"eval_cond:xxx\")\n"
|
||||
" - a string with escaped chars (format: \"esc:xxx\" or \"\\xxx\")\n"
|
||||
" - a string with a range of chars (format: \"chars:xxx\" or \"chars:c1-c2\" "
|
||||
"where \"xxx\" is one of: \"digit\", \"xdigit\", \"lower\", \"upper\", "
|
||||
"\"alpha\", \"alnum\")\n"
|
||||
" - a string converted to lower case (format: \"lower:xxx\")\n"
|
||||
" - a string converted to upper case (format: \"upper:xxx\")\n"
|
||||
" - a string with chars to hide (format: \"hide:char,string\")\n"
|
||||
" - a string with max chars (format: \"cut:max,suffix,string\" or \"cut:+max,"
|
||||
"suffix,string\")\n"
|
||||
" or max chars displayed on screen (format: \"cutscr:max,suffix,string\" "
|
||||
"or \"cutscr:+max,suffix,string\")\n"
|
||||
" 10. a reversed string (format: \"rev:xxx\" or \"revscr:xxx\")\n"
|
||||
" 11. a repeated string (format: \"repeat:count,string\")\n"
|
||||
" 12. length of a string (format: \"length:xxx\" or \"lengthscr:xxx\")\n"
|
||||
" 13. split of a string (format: \"split:number,separators,flags,xxx\")\n"
|
||||
" 14. split of shell argmuents (format: \"split_shell:number,xxx\")\n"
|
||||
" 15. a color (format: \"color:xxx\", see \"Plugin API reference\", function "
|
||||
" - a reversed string (format: \"rev:xxx\" or \"revscr:xxx\")\n"
|
||||
" - a repeated string (format: \"repeat:count,string\")\n"
|
||||
" - length of a string (format: \"length:xxx\" or \"lengthscr:xxx\")\n"
|
||||
" - split of a string (format: \"split:number,separators,flags,xxx\")\n"
|
||||
" - split of shell argmuents (format: \"split_shell:number,xxx\")\n"
|
||||
" - a color (format: \"color:xxx\", see \"Plugin API reference\", function "
|
||||
"\"color\")\n"
|
||||
" 16. a modifier (format: \"modifier:name,data,string\")\n"
|
||||
" 17. an info (format: \"info:name,arguments\", arguments are optional)\n"
|
||||
" 18. a base 16/32/64 encoded/decoded string (format: \"base_encode:base,"
|
||||
"xxx\" or \"base_decode:base,xxx\")\n"
|
||||
" 19. current date/time (format: \"date\" or \"date:format\")\n"
|
||||
" 20. an environment variable (format: \"env:XXX\")\n"
|
||||
" 21. a ternary operator (format: \"if:condition?value_if_true:"
|
||||
" - a modifier (format: \"modifier:name,data,string\")\n"
|
||||
" - an info (format: \"info:name,arguments\", arguments are optional)\n"
|
||||
" - a base 16/32/64 encoded/decoded string (format: \"base_encode:base,xxx\" "
|
||||
"or \"base_decode:base,xxx\")\n"
|
||||
" - current date/time (format: \"date\" or \"date:format\")\n"
|
||||
" - an environment variable (format: \"env:XXX\")\n"
|
||||
" - a ternary operator (format: \"if:condition?value_if_true:"
|
||||
"value_if_false\")\n"
|
||||
" 22. result of an expression with parentheses and operators + - * / // % ** "
|
||||
" - result of an expression with parentheses and operators + - * / // % ** "
|
||||
"(format: \"calc:xxx\")\n"
|
||||
" 23. a random integer number (format: \"random:min,max\")\n"
|
||||
" 24. a translated string (format: \"translate:xxx\")\n"
|
||||
" 25. define a user variable (format: \"define:name,value\")\n"
|
||||
" 26. an option (format: \"file.section.option\")\n"
|
||||
" 27. a local variable in buffer\n"
|
||||
" 28. a hdata name/variable (the value is automatically converted to "
|
||||
"string), by default \"window\" and \"buffer\" point to current window/"
|
||||
"buffer.\n"
|
||||
" - a random integer number (format: \"random:min,max\")\n"
|
||||
" - a translated string (format: \"translate:xxx\")\n"
|
||||
" - define a user variable (format: \"define:name,value\")\n"
|
||||
" - an option (format: \"file.section.option\")\n"
|
||||
" - a local variable in buffer\n"
|
||||
" - a hdata name/variable (the value is automatically converted to string), "
|
||||
"by default \"window\" and \"buffer\" point to current window/buffer.\n"
|
||||
"Format for hdata can be one of following:\n"
|
||||
" hdata.var1.var2...: start with a hdata (pointer must be known), and ask "
|
||||
"variables one after one (other hdata can be followed)\n"
|
||||
@@ -1882,6 +1884,8 @@ msgid ""
|
||||
" /eval -n ${window.buffer.full_name} ==> core.weechat\n"
|
||||
" /eval -n ${window.buffer.number} ==> 1\n"
|
||||
" /eval -n ${\\t} ==> <tab>\n"
|
||||
" /eval -n ${chars:digit} ==> 0123456789\n"
|
||||
" /eval -n ${chars:J-T} ==> JKLMNOPQRST\n"
|
||||
" /eval -n ${lower:TEST} ==> test\n"
|
||||
" /eval -n ${upper:test} ==> TEST\n"
|
||||
" /eval -n ${hide:-,${relay.network.password}} ==> --------\n"
|
||||
|
||||
@@ -20,7 +20,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WeeChat\n"
|
||||
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
|
||||
"POT-Creation-Date: 2022-10-15 22:42+0200\n"
|
||||
"POT-Creation-Date: 2022-11-06 09:02+0100\n"
|
||||
"PO-Revision-Date: 2022-10-15 22:51+0200\n"
|
||||
"Last-Translator: Andras Voroskoi <voroskoi@frugalware.org>\n"
|
||||
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
|
||||
@@ -1464,43 +1464,45 @@ msgid ""
|
||||
"\n"
|
||||
"Some variables are replaced in expression, using the format ${variable}, "
|
||||
"variable can be, by order of priority:\n"
|
||||
" 1. the string itself without evaluation (format: \"raw:xxx\")\n"
|
||||
" 2. a user-defined variable (format: \"name\")\n"
|
||||
" 3. an evaluated sub-string (format: \"eval:xxx\")\n"
|
||||
" 4. an evaluated condition (format: \"eval_cond:xxx\")\n"
|
||||
" 5. a string with escaped chars (format: \"esc:xxx\" or \"\\xxx\")\n"
|
||||
" 6. a string converted to lower case (format: \"lower:xxx\")\n"
|
||||
" 7. a string converted to upper case (format: \"upper:xxx\")\n"
|
||||
" 8. a string with chars to hide (format: \"hide:char,string\")\n"
|
||||
" 9. a string with max chars (format: \"cut:max,suffix,string\" or \"cut:"
|
||||
"+max,suffix,string\")\n"
|
||||
" - the string itself without evaluation (format: \"raw:xxx\")\n"
|
||||
" - a user-defined variable (format: \"name\")\n"
|
||||
" - an evaluated sub-string (format: \"eval:xxx\")\n"
|
||||
" - an evaluated condition (format: \"eval_cond:xxx\")\n"
|
||||
" - a string with escaped chars (format: \"esc:xxx\" or \"\\xxx\")\n"
|
||||
" - a string with a range of chars (format: \"chars:xxx\" or \"chars:c1-c2\" "
|
||||
"where \"xxx\" is one of: \"digit\", \"xdigit\", \"lower\", \"upper\", "
|
||||
"\"alpha\", \"alnum\")\n"
|
||||
" - a string converted to lower case (format: \"lower:xxx\")\n"
|
||||
" - a string converted to upper case (format: \"upper:xxx\")\n"
|
||||
" - a string with chars to hide (format: \"hide:char,string\")\n"
|
||||
" - a string with max chars (format: \"cut:max,suffix,string\" or \"cut:+max,"
|
||||
"suffix,string\")\n"
|
||||
" or max chars displayed on screen (format: \"cutscr:max,suffix,string\" "
|
||||
"or \"cutscr:+max,suffix,string\")\n"
|
||||
" 10. a reversed string (format: \"rev:xxx\" or \"revscr:xxx\")\n"
|
||||
" 11. a repeated string (format: \"repeat:count,string\")\n"
|
||||
" 12. length of a string (format: \"length:xxx\" or \"lengthscr:xxx\")\n"
|
||||
" 13. split of a string (format: \"split:number,separators,flags,xxx\")\n"
|
||||
" 14. split of shell argmuents (format: \"split_shell:number,xxx\")\n"
|
||||
" 15. a color (format: \"color:xxx\", see \"Plugin API reference\", function "
|
||||
" - a reversed string (format: \"rev:xxx\" or \"revscr:xxx\")\n"
|
||||
" - a repeated string (format: \"repeat:count,string\")\n"
|
||||
" - length of a string (format: \"length:xxx\" or \"lengthscr:xxx\")\n"
|
||||
" - split of a string (format: \"split:number,separators,flags,xxx\")\n"
|
||||
" - split of shell argmuents (format: \"split_shell:number,xxx\")\n"
|
||||
" - a color (format: \"color:xxx\", see \"Plugin API reference\", function "
|
||||
"\"color\")\n"
|
||||
" 16. a modifier (format: \"modifier:name,data,string\")\n"
|
||||
" 17. an info (format: \"info:name,arguments\", arguments are optional)\n"
|
||||
" 18. a base 16/32/64 encoded/decoded string (format: \"base_encode:base,"
|
||||
"xxx\" or \"base_decode:base,xxx\")\n"
|
||||
" 19. current date/time (format: \"date\" or \"date:format\")\n"
|
||||
" 20. an environment variable (format: \"env:XXX\")\n"
|
||||
" 21. a ternary operator (format: \"if:condition?value_if_true:"
|
||||
" - a modifier (format: \"modifier:name,data,string\")\n"
|
||||
" - an info (format: \"info:name,arguments\", arguments are optional)\n"
|
||||
" - a base 16/32/64 encoded/decoded string (format: \"base_encode:base,xxx\" "
|
||||
"or \"base_decode:base,xxx\")\n"
|
||||
" - current date/time (format: \"date\" or \"date:format\")\n"
|
||||
" - an environment variable (format: \"env:XXX\")\n"
|
||||
" - a ternary operator (format: \"if:condition?value_if_true:"
|
||||
"value_if_false\")\n"
|
||||
" 22. result of an expression with parentheses and operators + - * / // % ** "
|
||||
" - result of an expression with parentheses and operators + - * / // % ** "
|
||||
"(format: \"calc:xxx\")\n"
|
||||
" 23. a random integer number (format: \"random:min,max\")\n"
|
||||
" 24. a translated string (format: \"translate:xxx\")\n"
|
||||
" 25. define a user variable (format: \"define:name,value\")\n"
|
||||
" 26. an option (format: \"file.section.option\")\n"
|
||||
" 27. a local variable in buffer\n"
|
||||
" 28. a hdata name/variable (the value is automatically converted to "
|
||||
"string), by default \"window\" and \"buffer\" point to current window/"
|
||||
"buffer.\n"
|
||||
" - a random integer number (format: \"random:min,max\")\n"
|
||||
" - a translated string (format: \"translate:xxx\")\n"
|
||||
" - define a user variable (format: \"define:name,value\")\n"
|
||||
" - an option (format: \"file.section.option\")\n"
|
||||
" - a local variable in buffer\n"
|
||||
" - a hdata name/variable (the value is automatically converted to string), "
|
||||
"by default \"window\" and \"buffer\" point to current window/buffer.\n"
|
||||
"Format for hdata can be one of following:\n"
|
||||
" hdata.var1.var2...: start with a hdata (pointer must be known), and ask "
|
||||
"variables one after one (other hdata can be followed)\n"
|
||||
@@ -1531,6 +1533,8 @@ msgid ""
|
||||
" /eval -n ${window.buffer.full_name} ==> core.weechat\n"
|
||||
" /eval -n ${window.buffer.number} ==> 1\n"
|
||||
" /eval -n ${\\t} ==> <tab>\n"
|
||||
" /eval -n ${chars:digit} ==> 0123456789\n"
|
||||
" /eval -n ${chars:J-T} ==> JKLMNOPQRST\n"
|
||||
" /eval -n ${lower:TEST} ==> test\n"
|
||||
" /eval -n ${upper:test} ==> TEST\n"
|
||||
" /eval -n ${hide:-,${relay.network.password}} ==> --------\n"
|
||||
|
||||
@@ -20,7 +20,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WeeChat\n"
|
||||
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
|
||||
"POT-Creation-Date: 2022-10-15 22:42+0200\n"
|
||||
"POT-Creation-Date: 2022-11-06 09:02+0100\n"
|
||||
"PO-Revision-Date: 2022-10-15 22:51+0200\n"
|
||||
"Last-Translator: Esteban I. Ruiz Moreno <exio4.com@gmail.com>\n"
|
||||
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
|
||||
@@ -1584,43 +1584,45 @@ msgid ""
|
||||
"\n"
|
||||
"Some variables are replaced in expression, using the format ${variable}, "
|
||||
"variable can be, by order of priority:\n"
|
||||
" 1. the string itself without evaluation (format: \"raw:xxx\")\n"
|
||||
" 2. a user-defined variable (format: \"name\")\n"
|
||||
" 3. an evaluated sub-string (format: \"eval:xxx\")\n"
|
||||
" 4. an evaluated condition (format: \"eval_cond:xxx\")\n"
|
||||
" 5. a string with escaped chars (format: \"esc:xxx\" or \"\\xxx\")\n"
|
||||
" 6. a string converted to lower case (format: \"lower:xxx\")\n"
|
||||
" 7. a string converted to upper case (format: \"upper:xxx\")\n"
|
||||
" 8. a string with chars to hide (format: \"hide:char,string\")\n"
|
||||
" 9. a string with max chars (format: \"cut:max,suffix,string\" or \"cut:"
|
||||
"+max,suffix,string\")\n"
|
||||
" - the string itself without evaluation (format: \"raw:xxx\")\n"
|
||||
" - a user-defined variable (format: \"name\")\n"
|
||||
" - an evaluated sub-string (format: \"eval:xxx\")\n"
|
||||
" - an evaluated condition (format: \"eval_cond:xxx\")\n"
|
||||
" - a string with escaped chars (format: \"esc:xxx\" or \"\\xxx\")\n"
|
||||
" - a string with a range of chars (format: \"chars:xxx\" or \"chars:c1-c2\" "
|
||||
"where \"xxx\" is one of: \"digit\", \"xdigit\", \"lower\", \"upper\", "
|
||||
"\"alpha\", \"alnum\")\n"
|
||||
" - a string converted to lower case (format: \"lower:xxx\")\n"
|
||||
" - a string converted to upper case (format: \"upper:xxx\")\n"
|
||||
" - a string with chars to hide (format: \"hide:char,string\")\n"
|
||||
" - a string with max chars (format: \"cut:max,suffix,string\" or \"cut:+max,"
|
||||
"suffix,string\")\n"
|
||||
" or max chars displayed on screen (format: \"cutscr:max,suffix,string\" "
|
||||
"or \"cutscr:+max,suffix,string\")\n"
|
||||
" 10. a reversed string (format: \"rev:xxx\" or \"revscr:xxx\")\n"
|
||||
" 11. a repeated string (format: \"repeat:count,string\")\n"
|
||||
" 12. length of a string (format: \"length:xxx\" or \"lengthscr:xxx\")\n"
|
||||
" 13. split of a string (format: \"split:number,separators,flags,xxx\")\n"
|
||||
" 14. split of shell argmuents (format: \"split_shell:number,xxx\")\n"
|
||||
" 15. a color (format: \"color:xxx\", see \"Plugin API reference\", function "
|
||||
" - a reversed string (format: \"rev:xxx\" or \"revscr:xxx\")\n"
|
||||
" - a repeated string (format: \"repeat:count,string\")\n"
|
||||
" - length of a string (format: \"length:xxx\" or \"lengthscr:xxx\")\n"
|
||||
" - split of a string (format: \"split:number,separators,flags,xxx\")\n"
|
||||
" - split of shell argmuents (format: \"split_shell:number,xxx\")\n"
|
||||
" - a color (format: \"color:xxx\", see \"Plugin API reference\", function "
|
||||
"\"color\")\n"
|
||||
" 16. a modifier (format: \"modifier:name,data,string\")\n"
|
||||
" 17. an info (format: \"info:name,arguments\", arguments are optional)\n"
|
||||
" 18. a base 16/32/64 encoded/decoded string (format: \"base_encode:base,"
|
||||
"xxx\" or \"base_decode:base,xxx\")\n"
|
||||
" 19. current date/time (format: \"date\" or \"date:format\")\n"
|
||||
" 20. an environment variable (format: \"env:XXX\")\n"
|
||||
" 21. a ternary operator (format: \"if:condition?value_if_true:"
|
||||
" - a modifier (format: \"modifier:name,data,string\")\n"
|
||||
" - an info (format: \"info:name,arguments\", arguments are optional)\n"
|
||||
" - a base 16/32/64 encoded/decoded string (format: \"base_encode:base,xxx\" "
|
||||
"or \"base_decode:base,xxx\")\n"
|
||||
" - current date/time (format: \"date\" or \"date:format\")\n"
|
||||
" - an environment variable (format: \"env:XXX\")\n"
|
||||
" - a ternary operator (format: \"if:condition?value_if_true:"
|
||||
"value_if_false\")\n"
|
||||
" 22. result of an expression with parentheses and operators + - * / // % ** "
|
||||
" - result of an expression with parentheses and operators + - * / // % ** "
|
||||
"(format: \"calc:xxx\")\n"
|
||||
" 23. a random integer number (format: \"random:min,max\")\n"
|
||||
" 24. a translated string (format: \"translate:xxx\")\n"
|
||||
" 25. define a user variable (format: \"define:name,value\")\n"
|
||||
" 26. an option (format: \"file.section.option\")\n"
|
||||
" 27. a local variable in buffer\n"
|
||||
" 28. a hdata name/variable (the value is automatically converted to "
|
||||
"string), by default \"window\" and \"buffer\" point to current window/"
|
||||
"buffer.\n"
|
||||
" - a random integer number (format: \"random:min,max\")\n"
|
||||
" - a translated string (format: \"translate:xxx\")\n"
|
||||
" - define a user variable (format: \"define:name,value\")\n"
|
||||
" - an option (format: \"file.section.option\")\n"
|
||||
" - a local variable in buffer\n"
|
||||
" - a hdata name/variable (the value is automatically converted to string), "
|
||||
"by default \"window\" and \"buffer\" point to current window/buffer.\n"
|
||||
"Format for hdata can be one of following:\n"
|
||||
" hdata.var1.var2...: start with a hdata (pointer must be known), and ask "
|
||||
"variables one after one (other hdata can be followed)\n"
|
||||
@@ -1651,6 +1653,8 @@ msgid ""
|
||||
" /eval -n ${window.buffer.full_name} ==> core.weechat\n"
|
||||
" /eval -n ${window.buffer.number} ==> 1\n"
|
||||
" /eval -n ${\\t} ==> <tab>\n"
|
||||
" /eval -n ${chars:digit} ==> 0123456789\n"
|
||||
" /eval -n ${chars:J-T} ==> JKLMNOPQRST\n"
|
||||
" /eval -n ${lower:TEST} ==> test\n"
|
||||
" /eval -n ${upper:test} ==> TEST\n"
|
||||
" /eval -n ${hide:-,${relay.network.password}} ==> --------\n"
|
||||
|
||||
@@ -20,7 +20,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WeeChat\n"
|
||||
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
|
||||
"POT-Creation-Date: 2022-10-15 22:42+0200\n"
|
||||
"POT-Creation-Date: 2022-11-06 09:02+0100\n"
|
||||
"PO-Revision-Date: 2022-10-15 22:51+0200\n"
|
||||
"Last-Translator: AYANOKOUZI, Ryuunosuke <i38w7i3@yahoo.co.jp>\n"
|
||||
"Language-Team: Japanese <https://github.com/l/weechat/tree/master/"
|
||||
@@ -1670,43 +1670,45 @@ msgid ""
|
||||
"\n"
|
||||
"Some variables are replaced in expression, using the format ${variable}, "
|
||||
"variable can be, by order of priority:\n"
|
||||
" 1. the string itself without evaluation (format: \"raw:xxx\")\n"
|
||||
" 2. a user-defined variable (format: \"name\")\n"
|
||||
" 3. an evaluated sub-string (format: \"eval:xxx\")\n"
|
||||
" 4. an evaluated condition (format: \"eval_cond:xxx\")\n"
|
||||
" 5. a string with escaped chars (format: \"esc:xxx\" or \"\\xxx\")\n"
|
||||
" 6. a string converted to lower case (format: \"lower:xxx\")\n"
|
||||
" 7. a string converted to upper case (format: \"upper:xxx\")\n"
|
||||
" 8. a string with chars to hide (format: \"hide:char,string\")\n"
|
||||
" 9. a string with max chars (format: \"cut:max,suffix,string\" or \"cut:"
|
||||
"+max,suffix,string\")\n"
|
||||
" - the string itself without evaluation (format: \"raw:xxx\")\n"
|
||||
" - a user-defined variable (format: \"name\")\n"
|
||||
" - an evaluated sub-string (format: \"eval:xxx\")\n"
|
||||
" - an evaluated condition (format: \"eval_cond:xxx\")\n"
|
||||
" - a string with escaped chars (format: \"esc:xxx\" or \"\\xxx\")\n"
|
||||
" - a string with a range of chars (format: \"chars:xxx\" or \"chars:c1-c2\" "
|
||||
"where \"xxx\" is one of: \"digit\", \"xdigit\", \"lower\", \"upper\", "
|
||||
"\"alpha\", \"alnum\")\n"
|
||||
" - a string converted to lower case (format: \"lower:xxx\")\n"
|
||||
" - a string converted to upper case (format: \"upper:xxx\")\n"
|
||||
" - a string with chars to hide (format: \"hide:char,string\")\n"
|
||||
" - a string with max chars (format: \"cut:max,suffix,string\" or \"cut:+max,"
|
||||
"suffix,string\")\n"
|
||||
" or max chars displayed on screen (format: \"cutscr:max,suffix,string\" "
|
||||
"or \"cutscr:+max,suffix,string\")\n"
|
||||
" 10. a reversed string (format: \"rev:xxx\" or \"revscr:xxx\")\n"
|
||||
" 11. a repeated string (format: \"repeat:count,string\")\n"
|
||||
" 12. length of a string (format: \"length:xxx\" or \"lengthscr:xxx\")\n"
|
||||
" 13. split of a string (format: \"split:number,separators,flags,xxx\")\n"
|
||||
" 14. split of shell argmuents (format: \"split_shell:number,xxx\")\n"
|
||||
" 15. a color (format: \"color:xxx\", see \"Plugin API reference\", function "
|
||||
" - a reversed string (format: \"rev:xxx\" or \"revscr:xxx\")\n"
|
||||
" - a repeated string (format: \"repeat:count,string\")\n"
|
||||
" - length of a string (format: \"length:xxx\" or \"lengthscr:xxx\")\n"
|
||||
" - split of a string (format: \"split:number,separators,flags,xxx\")\n"
|
||||
" - split of shell argmuents (format: \"split_shell:number,xxx\")\n"
|
||||
" - a color (format: \"color:xxx\", see \"Plugin API reference\", function "
|
||||
"\"color\")\n"
|
||||
" 16. a modifier (format: \"modifier:name,data,string\")\n"
|
||||
" 17. an info (format: \"info:name,arguments\", arguments are optional)\n"
|
||||
" 18. a base 16/32/64 encoded/decoded string (format: \"base_encode:base,"
|
||||
"xxx\" or \"base_decode:base,xxx\")\n"
|
||||
" 19. current date/time (format: \"date\" or \"date:format\")\n"
|
||||
" 20. an environment variable (format: \"env:XXX\")\n"
|
||||
" 21. a ternary operator (format: \"if:condition?value_if_true:"
|
||||
" - a modifier (format: \"modifier:name,data,string\")\n"
|
||||
" - an info (format: \"info:name,arguments\", arguments are optional)\n"
|
||||
" - a base 16/32/64 encoded/decoded string (format: \"base_encode:base,xxx\" "
|
||||
"or \"base_decode:base,xxx\")\n"
|
||||
" - current date/time (format: \"date\" or \"date:format\")\n"
|
||||
" - an environment variable (format: \"env:XXX\")\n"
|
||||
" - a ternary operator (format: \"if:condition?value_if_true:"
|
||||
"value_if_false\")\n"
|
||||
" 22. result of an expression with parentheses and operators + - * / // % ** "
|
||||
" - result of an expression with parentheses and operators + - * / // % ** "
|
||||
"(format: \"calc:xxx\")\n"
|
||||
" 23. a random integer number (format: \"random:min,max\")\n"
|
||||
" 24. a translated string (format: \"translate:xxx\")\n"
|
||||
" 25. define a user variable (format: \"define:name,value\")\n"
|
||||
" 26. an option (format: \"file.section.option\")\n"
|
||||
" 27. a local variable in buffer\n"
|
||||
" 28. a hdata name/variable (the value is automatically converted to "
|
||||
"string), by default \"window\" and \"buffer\" point to current window/"
|
||||
"buffer.\n"
|
||||
" - a random integer number (format: \"random:min,max\")\n"
|
||||
" - a translated string (format: \"translate:xxx\")\n"
|
||||
" - define a user variable (format: \"define:name,value\")\n"
|
||||
" - an option (format: \"file.section.option\")\n"
|
||||
" - a local variable in buffer\n"
|
||||
" - a hdata name/variable (the value is automatically converted to string), "
|
||||
"by default \"window\" and \"buffer\" point to current window/buffer.\n"
|
||||
"Format for hdata can be one of following:\n"
|
||||
" hdata.var1.var2...: start with a hdata (pointer must be known), and ask "
|
||||
"variables one after one (other hdata can be followed)\n"
|
||||
@@ -1737,6 +1739,8 @@ msgid ""
|
||||
" /eval -n ${window.buffer.full_name} ==> core.weechat\n"
|
||||
" /eval -n ${window.buffer.number} ==> 1\n"
|
||||
" /eval -n ${\\t} ==> <tab>\n"
|
||||
" /eval -n ${chars:digit} ==> 0123456789\n"
|
||||
" /eval -n ${chars:J-T} ==> JKLMNOPQRST\n"
|
||||
" /eval -n ${lower:TEST} ==> test\n"
|
||||
" /eval -n ${upper:test} ==> TEST\n"
|
||||
" /eval -n ${hide:-,${relay.network.password}} ==> --------\n"
|
||||
|
||||
@@ -22,7 +22,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WeeChat\n"
|
||||
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
|
||||
"POT-Creation-Date: 2022-10-15 22:42+0200\n"
|
||||
"POT-Creation-Date: 2022-11-06 09:02+0100\n"
|
||||
"PO-Revision-Date: 2022-10-15 22:51+0200\n"
|
||||
"Last-Translator: Krzysztof Korościk <soltys@soltys.info>\n"
|
||||
"Language-Team: Polish <kde-i18n-doc@kde.org>\n"
|
||||
@@ -1836,43 +1836,45 @@ msgid ""
|
||||
"\n"
|
||||
"Some variables are replaced in expression, using the format ${variable}, "
|
||||
"variable can be, by order of priority:\n"
|
||||
" 1. the string itself without evaluation (format: \"raw:xxx\")\n"
|
||||
" 2. a user-defined variable (format: \"name\")\n"
|
||||
" 3. an evaluated sub-string (format: \"eval:xxx\")\n"
|
||||
" 4. an evaluated condition (format: \"eval_cond:xxx\")\n"
|
||||
" 5. a string with escaped chars (format: \"esc:xxx\" or \"\\xxx\")\n"
|
||||
" 6. a string converted to lower case (format: \"lower:xxx\")\n"
|
||||
" 7. a string converted to upper case (format: \"upper:xxx\")\n"
|
||||
" 8. a string with chars to hide (format: \"hide:char,string\")\n"
|
||||
" 9. a string with max chars (format: \"cut:max,suffix,string\" or \"cut:"
|
||||
"+max,suffix,string\")\n"
|
||||
" - the string itself without evaluation (format: \"raw:xxx\")\n"
|
||||
" - a user-defined variable (format: \"name\")\n"
|
||||
" - an evaluated sub-string (format: \"eval:xxx\")\n"
|
||||
" - an evaluated condition (format: \"eval_cond:xxx\")\n"
|
||||
" - a string with escaped chars (format: \"esc:xxx\" or \"\\xxx\")\n"
|
||||
" - a string with a range of chars (format: \"chars:xxx\" or \"chars:c1-c2\" "
|
||||
"where \"xxx\" is one of: \"digit\", \"xdigit\", \"lower\", \"upper\", "
|
||||
"\"alpha\", \"alnum\")\n"
|
||||
" - a string converted to lower case (format: \"lower:xxx\")\n"
|
||||
" - a string converted to upper case (format: \"upper:xxx\")\n"
|
||||
" - a string with chars to hide (format: \"hide:char,string\")\n"
|
||||
" - a string with max chars (format: \"cut:max,suffix,string\" or \"cut:+max,"
|
||||
"suffix,string\")\n"
|
||||
" or max chars displayed on screen (format: \"cutscr:max,suffix,string\" "
|
||||
"or \"cutscr:+max,suffix,string\")\n"
|
||||
" 10. a reversed string (format: \"rev:xxx\" or \"revscr:xxx\")\n"
|
||||
" 11. a repeated string (format: \"repeat:count,string\")\n"
|
||||
" 12. length of a string (format: \"length:xxx\" or \"lengthscr:xxx\")\n"
|
||||
" 13. split of a string (format: \"split:number,separators,flags,xxx\")\n"
|
||||
" 14. split of shell argmuents (format: \"split_shell:number,xxx\")\n"
|
||||
" 15. a color (format: \"color:xxx\", see \"Plugin API reference\", function "
|
||||
" - a reversed string (format: \"rev:xxx\" or \"revscr:xxx\")\n"
|
||||
" - a repeated string (format: \"repeat:count,string\")\n"
|
||||
" - length of a string (format: \"length:xxx\" or \"lengthscr:xxx\")\n"
|
||||
" - split of a string (format: \"split:number,separators,flags,xxx\")\n"
|
||||
" - split of shell argmuents (format: \"split_shell:number,xxx\")\n"
|
||||
" - a color (format: \"color:xxx\", see \"Plugin API reference\", function "
|
||||
"\"color\")\n"
|
||||
" 16. a modifier (format: \"modifier:name,data,string\")\n"
|
||||
" 17. an info (format: \"info:name,arguments\", arguments are optional)\n"
|
||||
" 18. a base 16/32/64 encoded/decoded string (format: \"base_encode:base,"
|
||||
"xxx\" or \"base_decode:base,xxx\")\n"
|
||||
" 19. current date/time (format: \"date\" or \"date:format\")\n"
|
||||
" 20. an environment variable (format: \"env:XXX\")\n"
|
||||
" 21. a ternary operator (format: \"if:condition?value_if_true:"
|
||||
" - a modifier (format: \"modifier:name,data,string\")\n"
|
||||
" - an info (format: \"info:name,arguments\", arguments are optional)\n"
|
||||
" - a base 16/32/64 encoded/decoded string (format: \"base_encode:base,xxx\" "
|
||||
"or \"base_decode:base,xxx\")\n"
|
||||
" - current date/time (format: \"date\" or \"date:format\")\n"
|
||||
" - an environment variable (format: \"env:XXX\")\n"
|
||||
" - a ternary operator (format: \"if:condition?value_if_true:"
|
||||
"value_if_false\")\n"
|
||||
" 22. result of an expression with parentheses and operators + - * / // % ** "
|
||||
" - result of an expression with parentheses and operators + - * / // % ** "
|
||||
"(format: \"calc:xxx\")\n"
|
||||
" 23. a random integer number (format: \"random:min,max\")\n"
|
||||
" 24. a translated string (format: \"translate:xxx\")\n"
|
||||
" 25. define a user variable (format: \"define:name,value\")\n"
|
||||
" 26. an option (format: \"file.section.option\")\n"
|
||||
" 27. a local variable in buffer\n"
|
||||
" 28. a hdata name/variable (the value is automatically converted to "
|
||||
"string), by default \"window\" and \"buffer\" point to current window/"
|
||||
"buffer.\n"
|
||||
" - a random integer number (format: \"random:min,max\")\n"
|
||||
" - a translated string (format: \"translate:xxx\")\n"
|
||||
" - define a user variable (format: \"define:name,value\")\n"
|
||||
" - an option (format: \"file.section.option\")\n"
|
||||
" - a local variable in buffer\n"
|
||||
" - a hdata name/variable (the value is automatically converted to string), "
|
||||
"by default \"window\" and \"buffer\" point to current window/buffer.\n"
|
||||
"Format for hdata can be one of following:\n"
|
||||
" hdata.var1.var2...: start with a hdata (pointer must be known), and ask "
|
||||
"variables one after one (other hdata can be followed)\n"
|
||||
@@ -1903,6 +1905,8 @@ msgid ""
|
||||
" /eval -n ${window.buffer.full_name} ==> core.weechat\n"
|
||||
" /eval -n ${window.buffer.number} ==> 1\n"
|
||||
" /eval -n ${\\t} ==> <tab>\n"
|
||||
" /eval -n ${chars:digit} ==> 0123456789\n"
|
||||
" /eval -n ${chars:J-T} ==> JKLMNOPQRST\n"
|
||||
" /eval -n ${lower:TEST} ==> test\n"
|
||||
" /eval -n ${upper:test} ==> TEST\n"
|
||||
" /eval -n ${hide:-,${relay.network.password}} ==> --------\n"
|
||||
|
||||
@@ -20,7 +20,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WeeChat\n"
|
||||
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
|
||||
"POT-Creation-Date: 2022-10-15 22:42+0200\n"
|
||||
"POT-Creation-Date: 2022-11-06 09:02+0100\n"
|
||||
"PO-Revision-Date: 2022-10-15 22:51+0200\n"
|
||||
"Last-Translator: Vasco Almeida <vascomalmeida@sapo.pt>\n"
|
||||
"Language-Team: Portuguese <>\n"
|
||||
@@ -1672,43 +1672,45 @@ msgid ""
|
||||
"\n"
|
||||
"Some variables are replaced in expression, using the format ${variable}, "
|
||||
"variable can be, by order of priority:\n"
|
||||
" 1. the string itself without evaluation (format: \"raw:xxx\")\n"
|
||||
" 2. a user-defined variable (format: \"name\")\n"
|
||||
" 3. an evaluated sub-string (format: \"eval:xxx\")\n"
|
||||
" 4. an evaluated condition (format: \"eval_cond:xxx\")\n"
|
||||
" 5. a string with escaped chars (format: \"esc:xxx\" or \"\\xxx\")\n"
|
||||
" 6. a string converted to lower case (format: \"lower:xxx\")\n"
|
||||
" 7. a string converted to upper case (format: \"upper:xxx\")\n"
|
||||
" 8. a string with chars to hide (format: \"hide:char,string\")\n"
|
||||
" 9. a string with max chars (format: \"cut:max,suffix,string\" or \"cut:"
|
||||
"+max,suffix,string\")\n"
|
||||
" - the string itself without evaluation (format: \"raw:xxx\")\n"
|
||||
" - a user-defined variable (format: \"name\")\n"
|
||||
" - an evaluated sub-string (format: \"eval:xxx\")\n"
|
||||
" - an evaluated condition (format: \"eval_cond:xxx\")\n"
|
||||
" - a string with escaped chars (format: \"esc:xxx\" or \"\\xxx\")\n"
|
||||
" - a string with a range of chars (format: \"chars:xxx\" or \"chars:c1-c2\" "
|
||||
"where \"xxx\" is one of: \"digit\", \"xdigit\", \"lower\", \"upper\", "
|
||||
"\"alpha\", \"alnum\")\n"
|
||||
" - a string converted to lower case (format: \"lower:xxx\")\n"
|
||||
" - a string converted to upper case (format: \"upper:xxx\")\n"
|
||||
" - a string with chars to hide (format: \"hide:char,string\")\n"
|
||||
" - a string with max chars (format: \"cut:max,suffix,string\" or \"cut:+max,"
|
||||
"suffix,string\")\n"
|
||||
" or max chars displayed on screen (format: \"cutscr:max,suffix,string\" "
|
||||
"or \"cutscr:+max,suffix,string\")\n"
|
||||
" 10. a reversed string (format: \"rev:xxx\" or \"revscr:xxx\")\n"
|
||||
" 11. a repeated string (format: \"repeat:count,string\")\n"
|
||||
" 12. length of a string (format: \"length:xxx\" or \"lengthscr:xxx\")\n"
|
||||
" 13. split of a string (format: \"split:number,separators,flags,xxx\")\n"
|
||||
" 14. split of shell argmuents (format: \"split_shell:number,xxx\")\n"
|
||||
" 15. a color (format: \"color:xxx\", see \"Plugin API reference\", function "
|
||||
" - a reversed string (format: \"rev:xxx\" or \"revscr:xxx\")\n"
|
||||
" - a repeated string (format: \"repeat:count,string\")\n"
|
||||
" - length of a string (format: \"length:xxx\" or \"lengthscr:xxx\")\n"
|
||||
" - split of a string (format: \"split:number,separators,flags,xxx\")\n"
|
||||
" - split of shell argmuents (format: \"split_shell:number,xxx\")\n"
|
||||
" - a color (format: \"color:xxx\", see \"Plugin API reference\", function "
|
||||
"\"color\")\n"
|
||||
" 16. a modifier (format: \"modifier:name,data,string\")\n"
|
||||
" 17. an info (format: \"info:name,arguments\", arguments are optional)\n"
|
||||
" 18. a base 16/32/64 encoded/decoded string (format: \"base_encode:base,"
|
||||
"xxx\" or \"base_decode:base,xxx\")\n"
|
||||
" 19. current date/time (format: \"date\" or \"date:format\")\n"
|
||||
" 20. an environment variable (format: \"env:XXX\")\n"
|
||||
" 21. a ternary operator (format: \"if:condition?value_if_true:"
|
||||
" - a modifier (format: \"modifier:name,data,string\")\n"
|
||||
" - an info (format: \"info:name,arguments\", arguments are optional)\n"
|
||||
" - a base 16/32/64 encoded/decoded string (format: \"base_encode:base,xxx\" "
|
||||
"or \"base_decode:base,xxx\")\n"
|
||||
" - current date/time (format: \"date\" or \"date:format\")\n"
|
||||
" - an environment variable (format: \"env:XXX\")\n"
|
||||
" - a ternary operator (format: \"if:condition?value_if_true:"
|
||||
"value_if_false\")\n"
|
||||
" 22. result of an expression with parentheses and operators + - * / // % ** "
|
||||
" - result of an expression with parentheses and operators + - * / // % ** "
|
||||
"(format: \"calc:xxx\")\n"
|
||||
" 23. a random integer number (format: \"random:min,max\")\n"
|
||||
" 24. a translated string (format: \"translate:xxx\")\n"
|
||||
" 25. define a user variable (format: \"define:name,value\")\n"
|
||||
" 26. an option (format: \"file.section.option\")\n"
|
||||
" 27. a local variable in buffer\n"
|
||||
" 28. a hdata name/variable (the value is automatically converted to "
|
||||
"string), by default \"window\" and \"buffer\" point to current window/"
|
||||
"buffer.\n"
|
||||
" - a random integer number (format: \"random:min,max\")\n"
|
||||
" - a translated string (format: \"translate:xxx\")\n"
|
||||
" - define a user variable (format: \"define:name,value\")\n"
|
||||
" - an option (format: \"file.section.option\")\n"
|
||||
" - a local variable in buffer\n"
|
||||
" - a hdata name/variable (the value is automatically converted to string), "
|
||||
"by default \"window\" and \"buffer\" point to current window/buffer.\n"
|
||||
"Format for hdata can be one of following:\n"
|
||||
" hdata.var1.var2...: start with a hdata (pointer must be known), and ask "
|
||||
"variables one after one (other hdata can be followed)\n"
|
||||
@@ -1739,6 +1741,8 @@ msgid ""
|
||||
" /eval -n ${window.buffer.full_name} ==> core.weechat\n"
|
||||
" /eval -n ${window.buffer.number} ==> 1\n"
|
||||
" /eval -n ${\\t} ==> <tab>\n"
|
||||
" /eval -n ${chars:digit} ==> 0123456789\n"
|
||||
" /eval -n ${chars:J-T} ==> JKLMNOPQRST\n"
|
||||
" /eval -n ${lower:TEST} ==> test\n"
|
||||
" /eval -n ${upper:test} ==> TEST\n"
|
||||
" /eval -n ${hide:-,${relay.network.password}} ==> --------\n"
|
||||
|
||||
+37
-33
@@ -21,7 +21,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WeeChat\n"
|
||||
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
|
||||
"POT-Creation-Date: 2022-10-15 22:42+0200\n"
|
||||
"POT-Creation-Date: 2022-11-06 09:02+0100\n"
|
||||
"PO-Revision-Date: 2022-10-15 22:51+0200\n"
|
||||
"Last-Translator: Érico Nogueira <ericonr@disroot.org>\n"
|
||||
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
|
||||
@@ -1645,43 +1645,45 @@ msgid ""
|
||||
"\n"
|
||||
"Some variables are replaced in expression, using the format ${variable}, "
|
||||
"variable can be, by order of priority:\n"
|
||||
" 1. the string itself without evaluation (format: \"raw:xxx\")\n"
|
||||
" 2. a user-defined variable (format: \"name\")\n"
|
||||
" 3. an evaluated sub-string (format: \"eval:xxx\")\n"
|
||||
" 4. an evaluated condition (format: \"eval_cond:xxx\")\n"
|
||||
" 5. a string with escaped chars (format: \"esc:xxx\" or \"\\xxx\")\n"
|
||||
" 6. a string converted to lower case (format: \"lower:xxx\")\n"
|
||||
" 7. a string converted to upper case (format: \"upper:xxx\")\n"
|
||||
" 8. a string with chars to hide (format: \"hide:char,string\")\n"
|
||||
" 9. a string with max chars (format: \"cut:max,suffix,string\" or \"cut:"
|
||||
"+max,suffix,string\")\n"
|
||||
" - the string itself without evaluation (format: \"raw:xxx\")\n"
|
||||
" - a user-defined variable (format: \"name\")\n"
|
||||
" - an evaluated sub-string (format: \"eval:xxx\")\n"
|
||||
" - an evaluated condition (format: \"eval_cond:xxx\")\n"
|
||||
" - a string with escaped chars (format: \"esc:xxx\" or \"\\xxx\")\n"
|
||||
" - a string with a range of chars (format: \"chars:xxx\" or \"chars:c1-c2\" "
|
||||
"where \"xxx\" is one of: \"digit\", \"xdigit\", \"lower\", \"upper\", "
|
||||
"\"alpha\", \"alnum\")\n"
|
||||
" - a string converted to lower case (format: \"lower:xxx\")\n"
|
||||
" - a string converted to upper case (format: \"upper:xxx\")\n"
|
||||
" - a string with chars to hide (format: \"hide:char,string\")\n"
|
||||
" - a string with max chars (format: \"cut:max,suffix,string\" or \"cut:+max,"
|
||||
"suffix,string\")\n"
|
||||
" or max chars displayed on screen (format: \"cutscr:max,suffix,string\" "
|
||||
"or \"cutscr:+max,suffix,string\")\n"
|
||||
" 10. a reversed string (format: \"rev:xxx\" or \"revscr:xxx\")\n"
|
||||
" 11. a repeated string (format: \"repeat:count,string\")\n"
|
||||
" 12. length of a string (format: \"length:xxx\" or \"lengthscr:xxx\")\n"
|
||||
" 13. split of a string (format: \"split:number,separators,flags,xxx\")\n"
|
||||
" 14. split of shell argmuents (format: \"split_shell:number,xxx\")\n"
|
||||
" 15. a color (format: \"color:xxx\", see \"Plugin API reference\", function "
|
||||
" - a reversed string (format: \"rev:xxx\" or \"revscr:xxx\")\n"
|
||||
" - a repeated string (format: \"repeat:count,string\")\n"
|
||||
" - length of a string (format: \"length:xxx\" or \"lengthscr:xxx\")\n"
|
||||
" - split of a string (format: \"split:number,separators,flags,xxx\")\n"
|
||||
" - split of shell argmuents (format: \"split_shell:number,xxx\")\n"
|
||||
" - a color (format: \"color:xxx\", see \"Plugin API reference\", function "
|
||||
"\"color\")\n"
|
||||
" 16. a modifier (format: \"modifier:name,data,string\")\n"
|
||||
" 17. an info (format: \"info:name,arguments\", arguments are optional)\n"
|
||||
" 18. a base 16/32/64 encoded/decoded string (format: \"base_encode:base,"
|
||||
"xxx\" or \"base_decode:base,xxx\")\n"
|
||||
" 19. current date/time (format: \"date\" or \"date:format\")\n"
|
||||
" 20. an environment variable (format: \"env:XXX\")\n"
|
||||
" 21. a ternary operator (format: \"if:condition?value_if_true:"
|
||||
" - a modifier (format: \"modifier:name,data,string\")\n"
|
||||
" - an info (format: \"info:name,arguments\", arguments are optional)\n"
|
||||
" - a base 16/32/64 encoded/decoded string (format: \"base_encode:base,xxx\" "
|
||||
"or \"base_decode:base,xxx\")\n"
|
||||
" - current date/time (format: \"date\" or \"date:format\")\n"
|
||||
" - an environment variable (format: \"env:XXX\")\n"
|
||||
" - a ternary operator (format: \"if:condition?value_if_true:"
|
||||
"value_if_false\")\n"
|
||||
" 22. result of an expression with parentheses and operators + - * / // % ** "
|
||||
" - result of an expression with parentheses and operators + - * / // % ** "
|
||||
"(format: \"calc:xxx\")\n"
|
||||
" 23. a random integer number (format: \"random:min,max\")\n"
|
||||
" 24. a translated string (format: \"translate:xxx\")\n"
|
||||
" 25. define a user variable (format: \"define:name,value\")\n"
|
||||
" 26. an option (format: \"file.section.option\")\n"
|
||||
" 27. a local variable in buffer\n"
|
||||
" 28. a hdata name/variable (the value is automatically converted to "
|
||||
"string), by default \"window\" and \"buffer\" point to current window/"
|
||||
"buffer.\n"
|
||||
" - a random integer number (format: \"random:min,max\")\n"
|
||||
" - a translated string (format: \"translate:xxx\")\n"
|
||||
" - define a user variable (format: \"define:name,value\")\n"
|
||||
" - an option (format: \"file.section.option\")\n"
|
||||
" - a local variable in buffer\n"
|
||||
" - a hdata name/variable (the value is automatically converted to string), "
|
||||
"by default \"window\" and \"buffer\" point to current window/buffer.\n"
|
||||
"Format for hdata can be one of following:\n"
|
||||
" hdata.var1.var2...: start with a hdata (pointer must be known), and ask "
|
||||
"variables one after one (other hdata can be followed)\n"
|
||||
@@ -1712,6 +1714,8 @@ msgid ""
|
||||
" /eval -n ${window.buffer.full_name} ==> core.weechat\n"
|
||||
" /eval -n ${window.buffer.number} ==> 1\n"
|
||||
" /eval -n ${\\t} ==> <tab>\n"
|
||||
" /eval -n ${chars:digit} ==> 0123456789\n"
|
||||
" /eval -n ${chars:J-T} ==> JKLMNOPQRST\n"
|
||||
" /eval -n ${lower:TEST} ==> test\n"
|
||||
" /eval -n ${upper:test} ==> TEST\n"
|
||||
" /eval -n ${hide:-,${relay.network.password}} ==> --------\n"
|
||||
|
||||
@@ -21,7 +21,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WeeChat\n"
|
||||
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
|
||||
"POT-Creation-Date: 2022-10-15 22:42+0200\n"
|
||||
"POT-Creation-Date: 2022-11-06 09:02+0100\n"
|
||||
"PO-Revision-Date: 2022-10-15 22:51+0200\n"
|
||||
"Last-Translator: Aleksey V Zapparov AKA ixti <ixti@member.fsf.org>\n"
|
||||
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
|
||||
@@ -1485,43 +1485,45 @@ msgid ""
|
||||
"\n"
|
||||
"Some variables are replaced in expression, using the format ${variable}, "
|
||||
"variable can be, by order of priority:\n"
|
||||
" 1. the string itself without evaluation (format: \"raw:xxx\")\n"
|
||||
" 2. a user-defined variable (format: \"name\")\n"
|
||||
" 3. an evaluated sub-string (format: \"eval:xxx\")\n"
|
||||
" 4. an evaluated condition (format: \"eval_cond:xxx\")\n"
|
||||
" 5. a string with escaped chars (format: \"esc:xxx\" or \"\\xxx\")\n"
|
||||
" 6. a string converted to lower case (format: \"lower:xxx\")\n"
|
||||
" 7. a string converted to upper case (format: \"upper:xxx\")\n"
|
||||
" 8. a string with chars to hide (format: \"hide:char,string\")\n"
|
||||
" 9. a string with max chars (format: \"cut:max,suffix,string\" or \"cut:"
|
||||
"+max,suffix,string\")\n"
|
||||
" - the string itself without evaluation (format: \"raw:xxx\")\n"
|
||||
" - a user-defined variable (format: \"name\")\n"
|
||||
" - an evaluated sub-string (format: \"eval:xxx\")\n"
|
||||
" - an evaluated condition (format: \"eval_cond:xxx\")\n"
|
||||
" - a string with escaped chars (format: \"esc:xxx\" or \"\\xxx\")\n"
|
||||
" - a string with a range of chars (format: \"chars:xxx\" or \"chars:c1-c2\" "
|
||||
"where \"xxx\" is one of: \"digit\", \"xdigit\", \"lower\", \"upper\", "
|
||||
"\"alpha\", \"alnum\")\n"
|
||||
" - a string converted to lower case (format: \"lower:xxx\")\n"
|
||||
" - a string converted to upper case (format: \"upper:xxx\")\n"
|
||||
" - a string with chars to hide (format: \"hide:char,string\")\n"
|
||||
" - a string with max chars (format: \"cut:max,suffix,string\" or \"cut:+max,"
|
||||
"suffix,string\")\n"
|
||||
" or max chars displayed on screen (format: \"cutscr:max,suffix,string\" "
|
||||
"or \"cutscr:+max,suffix,string\")\n"
|
||||
" 10. a reversed string (format: \"rev:xxx\" or \"revscr:xxx\")\n"
|
||||
" 11. a repeated string (format: \"repeat:count,string\")\n"
|
||||
" 12. length of a string (format: \"length:xxx\" or \"lengthscr:xxx\")\n"
|
||||
" 13. split of a string (format: \"split:number,separators,flags,xxx\")\n"
|
||||
" 14. split of shell argmuents (format: \"split_shell:number,xxx\")\n"
|
||||
" 15. a color (format: \"color:xxx\", see \"Plugin API reference\", function "
|
||||
" - a reversed string (format: \"rev:xxx\" or \"revscr:xxx\")\n"
|
||||
" - a repeated string (format: \"repeat:count,string\")\n"
|
||||
" - length of a string (format: \"length:xxx\" or \"lengthscr:xxx\")\n"
|
||||
" - split of a string (format: \"split:number,separators,flags,xxx\")\n"
|
||||
" - split of shell argmuents (format: \"split_shell:number,xxx\")\n"
|
||||
" - a color (format: \"color:xxx\", see \"Plugin API reference\", function "
|
||||
"\"color\")\n"
|
||||
" 16. a modifier (format: \"modifier:name,data,string\")\n"
|
||||
" 17. an info (format: \"info:name,arguments\", arguments are optional)\n"
|
||||
" 18. a base 16/32/64 encoded/decoded string (format: \"base_encode:base,"
|
||||
"xxx\" or \"base_decode:base,xxx\")\n"
|
||||
" 19. current date/time (format: \"date\" or \"date:format\")\n"
|
||||
" 20. an environment variable (format: \"env:XXX\")\n"
|
||||
" 21. a ternary operator (format: \"if:condition?value_if_true:"
|
||||
" - a modifier (format: \"modifier:name,data,string\")\n"
|
||||
" - an info (format: \"info:name,arguments\", arguments are optional)\n"
|
||||
" - a base 16/32/64 encoded/decoded string (format: \"base_encode:base,xxx\" "
|
||||
"or \"base_decode:base,xxx\")\n"
|
||||
" - current date/time (format: \"date\" or \"date:format\")\n"
|
||||
" - an environment variable (format: \"env:XXX\")\n"
|
||||
" - a ternary operator (format: \"if:condition?value_if_true:"
|
||||
"value_if_false\")\n"
|
||||
" 22. result of an expression with parentheses and operators + - * / // % ** "
|
||||
" - result of an expression with parentheses and operators + - * / // % ** "
|
||||
"(format: \"calc:xxx\")\n"
|
||||
" 23. a random integer number (format: \"random:min,max\")\n"
|
||||
" 24. a translated string (format: \"translate:xxx\")\n"
|
||||
" 25. define a user variable (format: \"define:name,value\")\n"
|
||||
" 26. an option (format: \"file.section.option\")\n"
|
||||
" 27. a local variable in buffer\n"
|
||||
" 28. a hdata name/variable (the value is automatically converted to "
|
||||
"string), by default \"window\" and \"buffer\" point to current window/"
|
||||
"buffer.\n"
|
||||
" - a random integer number (format: \"random:min,max\")\n"
|
||||
" - a translated string (format: \"translate:xxx\")\n"
|
||||
" - define a user variable (format: \"define:name,value\")\n"
|
||||
" - an option (format: \"file.section.option\")\n"
|
||||
" - a local variable in buffer\n"
|
||||
" - a hdata name/variable (the value is automatically converted to string), "
|
||||
"by default \"window\" and \"buffer\" point to current window/buffer.\n"
|
||||
"Format for hdata can be one of following:\n"
|
||||
" hdata.var1.var2...: start with a hdata (pointer must be known), and ask "
|
||||
"variables one after one (other hdata can be followed)\n"
|
||||
@@ -1552,6 +1554,8 @@ msgid ""
|
||||
" /eval -n ${window.buffer.full_name} ==> core.weechat\n"
|
||||
" /eval -n ${window.buffer.number} ==> 1\n"
|
||||
" /eval -n ${\\t} ==> <tab>\n"
|
||||
" /eval -n ${chars:digit} ==> 0123456789\n"
|
||||
" /eval -n ${chars:J-T} ==> JKLMNOPQRST\n"
|
||||
" /eval -n ${lower:TEST} ==> test\n"
|
||||
" /eval -n ${upper:test} ==> TEST\n"
|
||||
" /eval -n ${hide:-,${relay.network.password}} ==> --------\n"
|
||||
|
||||
+37
-33
@@ -21,7 +21,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WeeChat\n"
|
||||
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
|
||||
"POT-Creation-Date: 2022-10-15 22:42+0200\n"
|
||||
"POT-Creation-Date: 2022-11-06 09:02+0100\n"
|
||||
"PO-Revision-Date: 2014-08-16 10:27+0200\n"
|
||||
"Last-Translator: Sébastien Helleu <flashcode@flashtux.org>\n"
|
||||
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
|
||||
@@ -1330,43 +1330,45 @@ msgid ""
|
||||
"\n"
|
||||
"Some variables are replaced in expression, using the format ${variable}, "
|
||||
"variable can be, by order of priority:\n"
|
||||
" 1. the string itself without evaluation (format: \"raw:xxx\")\n"
|
||||
" 2. a user-defined variable (format: \"name\")\n"
|
||||
" 3. an evaluated sub-string (format: \"eval:xxx\")\n"
|
||||
" 4. an evaluated condition (format: \"eval_cond:xxx\")\n"
|
||||
" 5. a string with escaped chars (format: \"esc:xxx\" or \"\\xxx\")\n"
|
||||
" 6. a string converted to lower case (format: \"lower:xxx\")\n"
|
||||
" 7. a string converted to upper case (format: \"upper:xxx\")\n"
|
||||
" 8. a string with chars to hide (format: \"hide:char,string\")\n"
|
||||
" 9. a string with max chars (format: \"cut:max,suffix,string\" or \"cut:"
|
||||
"+max,suffix,string\")\n"
|
||||
" - the string itself without evaluation (format: \"raw:xxx\")\n"
|
||||
" - a user-defined variable (format: \"name\")\n"
|
||||
" - an evaluated sub-string (format: \"eval:xxx\")\n"
|
||||
" - an evaluated condition (format: \"eval_cond:xxx\")\n"
|
||||
" - a string with escaped chars (format: \"esc:xxx\" or \"\\xxx\")\n"
|
||||
" - a string with a range of chars (format: \"chars:xxx\" or \"chars:c1-c2\" "
|
||||
"where \"xxx\" is one of: \"digit\", \"xdigit\", \"lower\", \"upper\", "
|
||||
"\"alpha\", \"alnum\")\n"
|
||||
" - a string converted to lower case (format: \"lower:xxx\")\n"
|
||||
" - a string converted to upper case (format: \"upper:xxx\")\n"
|
||||
" - a string with chars to hide (format: \"hide:char,string\")\n"
|
||||
" - a string with max chars (format: \"cut:max,suffix,string\" or \"cut:+max,"
|
||||
"suffix,string\")\n"
|
||||
" or max chars displayed on screen (format: \"cutscr:max,suffix,string\" "
|
||||
"or \"cutscr:+max,suffix,string\")\n"
|
||||
" 10. a reversed string (format: \"rev:xxx\" or \"revscr:xxx\")\n"
|
||||
" 11. a repeated string (format: \"repeat:count,string\")\n"
|
||||
" 12. length of a string (format: \"length:xxx\" or \"lengthscr:xxx\")\n"
|
||||
" 13. split of a string (format: \"split:number,separators,flags,xxx\")\n"
|
||||
" 14. split of shell argmuents (format: \"split_shell:number,xxx\")\n"
|
||||
" 15. a color (format: \"color:xxx\", see \"Plugin API reference\", function "
|
||||
" - a reversed string (format: \"rev:xxx\" or \"revscr:xxx\")\n"
|
||||
" - a repeated string (format: \"repeat:count,string\")\n"
|
||||
" - length of a string (format: \"length:xxx\" or \"lengthscr:xxx\")\n"
|
||||
" - split of a string (format: \"split:number,separators,flags,xxx\")\n"
|
||||
" - split of shell argmuents (format: \"split_shell:number,xxx\")\n"
|
||||
" - a color (format: \"color:xxx\", see \"Plugin API reference\", function "
|
||||
"\"color\")\n"
|
||||
" 16. a modifier (format: \"modifier:name,data,string\")\n"
|
||||
" 17. an info (format: \"info:name,arguments\", arguments are optional)\n"
|
||||
" 18. a base 16/32/64 encoded/decoded string (format: \"base_encode:base,"
|
||||
"xxx\" or \"base_decode:base,xxx\")\n"
|
||||
" 19. current date/time (format: \"date\" or \"date:format\")\n"
|
||||
" 20. an environment variable (format: \"env:XXX\")\n"
|
||||
" 21. a ternary operator (format: \"if:condition?value_if_true:"
|
||||
" - a modifier (format: \"modifier:name,data,string\")\n"
|
||||
" - an info (format: \"info:name,arguments\", arguments are optional)\n"
|
||||
" - a base 16/32/64 encoded/decoded string (format: \"base_encode:base,xxx\" "
|
||||
"or \"base_decode:base,xxx\")\n"
|
||||
" - current date/time (format: \"date\" or \"date:format\")\n"
|
||||
" - an environment variable (format: \"env:XXX\")\n"
|
||||
" - a ternary operator (format: \"if:condition?value_if_true:"
|
||||
"value_if_false\")\n"
|
||||
" 22. result of an expression with parentheses and operators + - * / // % ** "
|
||||
" - result of an expression with parentheses and operators + - * / // % ** "
|
||||
"(format: \"calc:xxx\")\n"
|
||||
" 23. a random integer number (format: \"random:min,max\")\n"
|
||||
" 24. a translated string (format: \"translate:xxx\")\n"
|
||||
" 25. define a user variable (format: \"define:name,value\")\n"
|
||||
" 26. an option (format: \"file.section.option\")\n"
|
||||
" 27. a local variable in buffer\n"
|
||||
" 28. a hdata name/variable (the value is automatically converted to "
|
||||
"string), by default \"window\" and \"buffer\" point to current window/"
|
||||
"buffer.\n"
|
||||
" - a random integer number (format: \"random:min,max\")\n"
|
||||
" - a translated string (format: \"translate:xxx\")\n"
|
||||
" - define a user variable (format: \"define:name,value\")\n"
|
||||
" - an option (format: \"file.section.option\")\n"
|
||||
" - a local variable in buffer\n"
|
||||
" - a hdata name/variable (the value is automatically converted to string), "
|
||||
"by default \"window\" and \"buffer\" point to current window/buffer.\n"
|
||||
"Format for hdata can be one of following:\n"
|
||||
" hdata.var1.var2...: start with a hdata (pointer must be known), and ask "
|
||||
"variables one after one (other hdata can be followed)\n"
|
||||
@@ -1397,6 +1399,8 @@ msgid ""
|
||||
" /eval -n ${window.buffer.full_name} ==> core.weechat\n"
|
||||
" /eval -n ${window.buffer.number} ==> 1\n"
|
||||
" /eval -n ${\\t} ==> <tab>\n"
|
||||
" /eval -n ${chars:digit} ==> 0123456789\n"
|
||||
" /eval -n ${chars:J-T} ==> JKLMNOPQRST\n"
|
||||
" /eval -n ${lower:TEST} ==> test\n"
|
||||
" /eval -n ${upper:test} ==> TEST\n"
|
||||
" /eval -n ${hide:-,${relay.network.password}} ==> --------\n"
|
||||
|
||||
Reference in New Issue
Block a user