diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2021-08-03 19:46:41 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2021-08-03 19:46:41 +0200 |
commit | d89c4f559c817a92da94d98baf9f3829238b0392 (patch) | |
tree | 552415606ad46f35bf20cb5d6d376b78b9c480f6 /po/es.po | |
parent | 0be4020b68e54cbb6fd588175419843b7873f900 (diff) | |
download | weechat-d89c4f559c817a92da94d98baf9f3829238b0392.zip |
api: add random integer number in evaluation of expressions with "random:min,max"
Diffstat (limited to 'po/es.po')
-rw-r--r-- | po/es.po | 12 |
1 files changed, 7 insertions, 5 deletions
@@ -22,7 +22,7 @@ msgid "" msgstr "" "Project-Id-Version: WeeChat\n" "Report-Msgid-Bugs-To: flashcode@flashtux.org\n" -"POT-Creation-Date: 2021-08-01 10:24+0200\n" +"POT-Creation-Date: 2021-08-03 19:41+0200\n" "PO-Revision-Date: 2021-07-10 16:01+0200\n" "Last-Translator: Elián Hanisch <lambdae2@gmail.com>\n" "Language-Team: weechat-dev <weechat-dev@nongnu.org>\n" @@ -1645,10 +1645,11 @@ msgid "" "\")\n" " 17. result of an expression with parentheses and operators + - * / // % ** " "(format: \"calc:xxx\")\n" -" 18. a translated string (format: \"translate:xxx\")\n" -" 19. an option (format: \"file.section.option\")\n" -" 20. a local variable in buffer\n" -" 21. a hdata name/variable (the value is automatically converted to " +" 18. a random integer number (format: \"random:min,max\")\n" +" 19. a translated string (format: \"translate:xxx\")\n" +" 20. an option (format: \"file.section.option\")\n" +" 21. a local variable in buffer\n" +" 22. 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" @@ -1690,6 +1691,7 @@ msgid "" " /eval -n ${repeat:5,-} ==> -----\n" " /eval -n ${length:test} ==> 4\n" " /eval -n ${calc:(5+2)*3} ==> 21\n" +" /eval -n ${random:0,10} ==> 3\n" " /eval -n ${base_encode:64,test} ==> dGVzdA==\n" " /eval -n ${base_decode:64,dGVzdA==} ==> test\n" " /eval -n ${translate:Plugin} ==> Extension\n" |