diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2020-05-05 20:43:45 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2020-05-05 20:43:45 +0200 |
commit | b1c3a29ac759a15cb2ade7e96d7f1b4d1ce28935 (patch) | |
tree | ffae98f0157ffa2031c4591877950454009d194c /po/de.po | |
parent | 8df8d20f81dc64bb286f5d1a1d629d050949893d (diff) | |
download | weechat-b1c3a29ac759a15cb2ade7e96d7f1b4d1ce28935.zip |
core: add include comparison operators in evaluation of expressions
New comparison operators:
- "==*": is matching mask, case sensitive (wildcard "*" is allowed)
- "!!*": is NOT matching mask, case sensitive (wildcard "*" is allowed)
- "==-": is included, case sensitive
- "!!-": is NOT included, case sensitive
- "=-": is included, case insensitive
- "!-": is NOT included, case insensitive
Diffstat (limited to 'po/de.po')
-rw-r--r-- | po/de.po | 40 |
1 files changed, 26 insertions, 14 deletions
@@ -24,7 +24,7 @@ msgid "" msgstr "" "Project-Id-Version: WeeChat\n" "Report-Msgid-Bugs-To: flashcode@flashtux.org\n" -"POT-Creation-Date: 2020-05-03 16:04+0200\n" +"POT-Creation-Date: 2020-05-05 20:43+0200\n" "PO-Revision-Date: 2020-04-29 09:20+0200\n" "Last-Translator: Nils Görs <weechatter@arcor.de>\n" "Language-Team: German <kde-i18n-de@kde.org>\n" @@ -1678,6 +1678,7 @@ msgstr "" "[-n|-s] [-d] <expression> || [-n] [-d] -c <expression1> <operator> " "<expression2>" +#, fuzzy msgid "" " -n: display result without sending it to buffer (debug mode)\n" " -s: split expression before evaluating it (many commands can be " @@ -1689,19 +1690,29 @@ msgid "" "replaced (see below); many commands can be separated by semicolons\n" " operator: a logical or comparison operator:\n" " - logical operators:\n" -" && boolean \"and\"\n" -" || boolean \"or\"\n" +" && boolean \"and\"\n" +" || boolean \"or\"\n" " - comparison operators:\n" -" == equal\n" -" != not equal\n" -" <= less or equal\n" -" < less\n" -" >= greater or equal\n" -" > greater\n" -" =~ is matching POSIX extended regex\n" -" !~ is NOT matching POSIX extended regex\n" -" =* is matching mask (wildcard \"*\" is allowed)\n" -" !* is NOT matching mask (wildcard \"*\" is allowed)\n" +" == equal\n" +" != not equal\n" +" <= less or equal\n" +" < less\n" +" >= greater or equal\n" +" > greater\n" +" =~ is matching POSIX extended regex\n" +" !~ is NOT matching POSIX extended regex\n" +" ==* is matching mask, case sensitive (wildcard \"*\" is " +"allowed)\n" +" !!* is NOT matching mask, case sensitive (wildcard \"*\" is " +"allowed)\n" +" =* is matching mask, case insensitive (wildcard \"*\" is " +"allowed)\n" +" !* is NOT matching mask, case insensitive (wildcard \"*\" " +"is allowed)\n" +" ==- is included, case sensitive\n" +" !!- is NOT included, case sensitive\n" +" =- is included, case insensitive\n" +" !- is NOT included, case insensitive\n" "\n" "An expression is considered as \"true\" if it is not NULL, not empty, and " "different from \"0\".\n" @@ -1786,7 +1797,8 @@ msgid "" " /eval -n -c abcd =~ (?-i)^ABC ==> 0\n" " /eval -n -c abcd =~ (?-i)^abc ==> 1\n" " /eval -n -c abcd !~ abc ==> 0\n" -" /eval -n -c abcd =* a*d ==> 1" +" /eval -n -c abcd =* a*d ==> 1\n" +" /eval -n -c abcd =- bc ==> 1" msgstr "" " -n: gibt das Ergebnis aus, ohne dass dieses in den Buffer gesendet " "wird (debug Modus)\n" |