summaryrefslogtreecommitdiff
path: root/po/de.po
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2013-08-04 08:56:56 +0200
committerSebastien Helleu <flashcode@flashtux.org>2013-08-04 08:56:56 +0200
commitdc878c5b69d498e3edb225e1997455510579deed (patch)
tree2c6dbd6bb5640ce17d23b937463310656ec7f126 /po/de.po
parentb94a1ce59baa99e2076c83d82f25cbe5d9a7c19b (diff)
downloadweechat-dc878c5b69d498e3edb225e1997455510579deed.zip
api: add argument "options" in function string_eval_expression, add option "-c" for command /eval (to evaluate a condition)
Diffstat (limited to 'po/de.po')
-rw-r--r--po/de.po34
1 files changed, 19 insertions, 15 deletions
diff --git a/po/de.po b/po/de.po
index e977a7582..0224af6e7 100644
--- a/po/de.po
+++ b/po/de.po
@@ -22,7 +22,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat 0.4.2-dev\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
-"POT-Creation-Date: 2013-08-02 23:16+0200\n"
+"POT-Creation-Date: 2013-08-03 15:05+0200\n"
"PO-Revision-Date: 2013-08-01 19:57+0200\n"
"Last-Translator: Nils Görs <weechatter@arcor.de>\n"
"Language-Team: German <weechatter@arcor.de>\n"
@@ -1317,11 +1317,15 @@ msgstr ""
msgid "evaluate expression and send result to buffer"
msgstr "wertet einen Ausdruck aus und gibt das Resultat im Buffer aus"
-msgid "[-n] <expression> || [-n] <expression1> <operator> <expression2>"
+#, fuzzy
+msgid "[-n] <expression> || [-n] -c <expression1> <operator> <expression2>"
msgstr "[-n] <expression> || [-n] <expression1> <operator> <expression2>"
+#, fuzzy
msgid ""
" -n: display result without sending it to buffer (debug mode)\n"
+" -c: evaluate as condition: use operators and parentheses, return a "
+"boolean value (\"0\" or \"1\")\n"
"expression: expression to evaluate, variables with format ${variable} are "
"replaced (see below)\n"
" operator: a logical or comparison operator:\n"
@@ -1365,19 +1369,19 @@ msgid ""
"function \"weechat_hdata_get\".\n"
"\n"
"Examples:\n"
-" /eval -n ${weechat.look.scroll_amount} ==> 3\n"
-" /eval -n ${window} ==> 0x2549aa0\n"
-" /eval -n ${window.buffer} ==> 0x2549320\n"
-" /eval -n ${window.buffer.full_name} ==> core.weechat\n"
-" /eval -n ${window.buffer.number} ==> 1\n"
-" /eval -n ${window.buffer.number} > 2 ==> 0\n"
-" /eval -n ${window.win_width} > 100 ==> 1\n"
-" /eval -n (8 > 12) || (5 > 2) ==> 1\n"
-" /eval -n (8 > 12) && (5 > 2) ==> 0\n"
-" /eval -n abcd =~ ^ABC ==> 1\n"
-" /eval -n abcd =~ (?-i)^ABC ==> 0\n"
-" /eval -n abcd =~ (?-i)^abc ==> 1\n"
-" /eval -n abcd !~ abc ==> 0"
+" /eval -n ${weechat.look.scroll_amount} ==> 3\n"
+" /eval -n ${window} ==> 0x2549aa0\n"
+" /eval -n ${window.buffer} ==> 0x2549320\n"
+" /eval -n ${window.buffer.full_name} ==> core.weechat\n"
+" /eval -n ${window.buffer.number} ==> 1\n"
+" /eval -n -c ${window.buffer.number} > 2 ==> 0\n"
+" /eval -n -c ${window.win_width} > 100 ==> 1\n"
+" /eval -n -c (8 > 12) || (5 > 2) ==> 1\n"
+" /eval -n -c (8 > 12) && (5 > 2) ==> 0\n"
+" /eval -n -c abcd =~ ^ABC ==> 1\n"
+" /eval -n -c abcd =~ (?-i)^ABC ==> 0\n"
+" /eval -n -c abcd =~ (?-i)^abc ==> 1\n"
+" /eval -n -c abcd !~ abc ==> 0"
msgstr ""
" -n: zeigt das Ergebnis an, ohne das dieses in den Buffer geschrieben "
"wird (debug Modus)\n"