diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2015-06-30 20:25:35 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2015-06-30 20:25:35 +0200 |
commit | 9bf40517d3fdc48befec9ea4030338e8e98b1852 (patch) | |
tree | 0142fb829326ce8305217899ca9dd5a725100792 /po/fr.po | |
parent | e92a63427f2f3d45646cf0ffc107cf3f0a279f84 (diff) | |
download | weechat-9bf40517d3fdc48befec9ea4030338e8e98b1852.zip |
api: add support of evaluated sub-strings and current date/time in function string_eval_expression() and command /eval
Diffstat (limited to 'po/fr.po')
-rw-r--r-- | po/fr.po | 45 |
1 files changed, 26 insertions, 19 deletions
@@ -21,8 +21,8 @@ msgid "" msgstr "" "Project-Id-Version: WeeChat\n" "Report-Msgid-Bugs-To: flashcode@flashtux.org\n" -"POT-Creation-Date: 2015-06-28 09:11+0200\n" -"PO-Revision-Date: 2015-06-28 09:11+0200\n" +"POT-Creation-Date: 2015-06-30 07:49+0200\n" +"PO-Revision-Date: 2015-06-30 07:50+0200\n" "Last-Translator: Sébastien Helleu <flashcode@flashtux.org>\n" "Language-Team: weechat-dev <weechat-dev@nongnu.org>\n" "Language: fr\n" @@ -1549,15 +1549,18 @@ msgid "" "\n" "Some variables are replaced in expression, using the format ${variable}, " "variable can be, by order of priority:\n" -" 1. a string with escaped chars (format: \"esc:xxx\" or \"\\xxx\")\n" -" 2. a string with chars to hide (format: \"hide:char,string\")\n" -" 3. a color (format: \"color:xxx\")\n" -" 4. an info (format: \"info:name,arguments\", arguments are optional)\n" -" 5. an environment variable (format: \"env:XXX\")\n" -" 6. an option (format: \"file.section.option\")\n" -" 7. a local variable in buffer\n" -" 8. a hdata name/variable (the value is automatically converted to string), " -"by default \"window\" and \"buffer\" point to current window/buffer.\n" +" 1. an evaluated sub-string (format: \"eval:xxx\")\n" +" 2. a string with escaped chars (format: \"esc:xxx\" or \"\\xxx\")\n" +" 3. a string with chars to hide (format: \"hide:char,string\")\n" +" 4. a color (format: \"color:xxx\")\n" +" 5. an info (format: \"info:name,arguments\", arguments are optional)\n" +" 6. current date/time (format: \"date\" or \"date:format\")\n" +" 7. an environment variable (format: \"env:XXX\")\n" +" 8. an option (format: \"file.section.option\")\n" +" 9. a local variable in buffer\n" +" 10. 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" @@ -1583,6 +1586,7 @@ msgid "" " /eval -n ${window.buffer.number} ==> 1\n" " /eval -n ${\\t} ==> <tab>\n" " /eval -n ${hide:-,${relay.network.password}} ==> --------\n" +" /eval -n ${date:%H:%M:%S} ==> 07:46:40\n" "\n" "Examples (conditions):\n" " /eval -n -c ${window.buffer.number} > 2 ==> 0\n" @@ -1628,17 +1632,19 @@ msgstr "" "\n" "Des variables sont remplacées dans l'expression, en utilisant le format " "${variable}, la variable pouvant être, par ordre de priorité :\n" -" 1. une chaîne avec les caractères échappés (format : \"esc:xxx\" ou \"\\xxx" +" 1. une sous-chaîne évaluée (format : \"eval:xxx\")\n" +" 2. une chaîne avec les caractères échappés (format : \"esc:xxx\" ou \"\\xxx" "\")\n" -" 2. une chaîne avec des caractères à cacher (format : \"hide:caractère," +" 3. une chaîne avec des caractères à cacher (format : \"hide:caractère," "chaîne\")\n" -" 3. une couleur (format : \"color:xxx\")\n" -" 4. une info (format : \"info:nom,paramètres\", les paramètres sont " +" 4. une couleur (format : \"color:xxx\")\n" +" 5. une info (format : \"info:nom,paramètres\", les paramètres sont " "optionnels)\n" -" 5. une variable d'environnement (format : \"env:XXX\")\n" -" 6. une option (format : \"fichier.section.option\")\n" -" 7. une variable locale du tampon\n" -" 8. un hdata/variable (la valeur est automatiquement convertie en chaîne), " +" 6. la date/heure courante (format : \"date\" ou \"date:format\")\n" +" 7. une variable d'environnement (format : \"env:XXX\")\n" +" 8. une option (format : \"fichier.section.option\")\n" +" 9. une variable locale du tampon\n" +" 10. 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.\n" "Le format du hdata peut être le suivant :\n" @@ -1668,6 +1674,7 @@ msgstr "" " /eval -n ${window.buffer.number} ==> 1\n" " /eval -n ${\\t} ==> <tab>\n" " /eval -n ${hide:-,${relay.network.password}} ==> --------\n" +" /eval -n ${date:%H:%M:%S} ==> 07:46:40\n" "\n" "Exemples (conditions) :\n" " /eval -n -c ${window.buffer.number} > 2 ==> 0\n" |