summaryrefslogtreecommitdiff
path: root/po/de.po
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2014-10-16 20:46:06 +0200
committerSébastien Helleu <flashcode@flashtux.org>2014-10-16 20:46:06 +0200
commitf62f759c3db98044c2c05e01028a940ea5d6bb18 (patch)
tree1c7eee3b6ce5c2540e75d1d000dd350c37514c23 /po/de.po
parent9d849db85a45509fa53a8be3572bba1609062bed (diff)
downloadweechat-f62f759c3db98044c2c05e01028a940ea5d6bb18.zip
core: add hide of chars in string in evaluation of expressions
The syntax is: ${hide:char,string}. All chars in string are replaced with char (which can be one or more chars).
Diffstat (limited to 'po/de.po')
-rw-r--r--po/de.po45
1 files changed, 24 insertions, 21 deletions
diff --git a/po/de.po b/po/de.po
index 68d6790eb..c03705d83 100644
--- a/po/de.po
+++ b/po/de.po
@@ -22,7 +22,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WeeChat\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
-"POT-Creation-Date: 2014-10-08 22:22+0200\n"
+"POT-Creation-Date: 2014-10-16 20:40+0200\n"
"PO-Revision-Date: 2014-09-21 19:48+0100\n"
"Last-Translator: Nils Görs <weechatter@arcor.de>\n"
"Language-Team: German <weechatter@arcor.de>\n"
@@ -1464,6 +1464,7 @@ msgstr "evaluierter Ausdruck"
msgid "[-n] <expression> || [-n] -c <expression1> <operator> <expression2>"
msgstr "[-n] <expression> || [-n] -c <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 "
@@ -1496,11 +1497,12 @@ msgid ""
"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 color (format: \"color:xxx\")\n"
-" 3. an info (format: \"info:name,arguments\", arguments are optional)\n"
-" 4. an option (format: \"file.section.option\")\n"
-" 5. a local variable in buffer\n"
-" 6. a hdata name/variable (the value is automatically converted to string), "
+" 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 option (format: \"file.section.option\")\n"
+" 6. a local variable in buffer\n"
+" 7. 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 "
@@ -1514,23 +1516,24 @@ msgid ""
"function \"weechat_hdata_get\".\n"
"\n"
"Examples (simple strings):\n"
-" /eval -n ${info:version} ==> 0.4.3\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 ${\\t} ==> <tab>\n"
+" /eval -n ${info:version} ==> 0.4.3\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 ${\\t} ==> <tab>\n"
+" /eval -n ${hide:-,${relay.network.password}} ==> --------\n"
"\n"
"Examples (conditions):\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"
+" /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: gibt das Ergebnis aus, ohne das dieses in den Buffer gesendet "
"wird (debug Modus)\n"