diff --git a/doc/de/autogen/user/weechat_commands.txt b/doc/de/autogen/user/weechat_commands.txt index 27b54128e..b149b0cbd 100644 --- a/doc/de/autogen/user/weechat_commands.txt +++ b/doc/de/autogen/user/weechat_commands.txt @@ -207,40 +207,40 @@ infolists: zeigt Information über die Infolists an /eval [-n] [-n] - -n: zeigt das Ergebnis an, ohne dieses in den Buffer zu schreiben (debug Modus) -expression: Ausdruck welcher verarbeitet werden soll. Variablen im Format ${variable} werden ersetzt (siehe unten) - operator: ein logischer oder vergleichender Operand: - - logische Operanden: - && boolean "und" - || boolean "oder" - - vergleichende Operanden: - == gleich - != ungleich - <= kleiner oder gleich - < kleiner - >= größer oder gleich - > größer - =~ stimmt mit regulärem Ausdruck überein - !~ stimmt NICHT mit regulärem Ausdruck überein + -n: display result without sending it to buffer (debug mode) +expression: expression to evaluate, variables with format ${variable} are replaced (see below) + operator: a logical or comparison operator: + - logical operators: + && boolean "and" + || boolean "or" + - comparison operators: + == equal + != not equal + <= less or equal + < less + >= greater or equal + > greater + =~ is matching regex + !~ is NOT matching regex -Ein Ausdruck gilt als "wahr", sofern das Ergebnis nicht NULL, nicht leer und von "0" abweichend ist. -Der Vergleich findet zwischen zwei Integer statt, sofern die beiden Ausdrücke gültige Integer-Werte sind. -Um einen Vergleich zwischen zwei Zeichenketten zu erzwingen, müssen die Ausdrücke in Anführungszeichen gesetzt werden, zum Beispiel: +An expression is considered as "true" if it is not NULL, not empty, and different from "0". +The comparison is made using integers if the two expressions are valid integers. +To force a string comparison, add double quotes around each expression, for example: 50 > 100 ==> 0 "50" > "100" ==> 1 -Einige Variablen werden im Ausdruck, mittels der Formatierung ${Variable}, ersetzt. Mögliche Variablen sind, nach Reihenfolge ihrer Priorität: - 1. der Name einer Option (file.section.option) - 2. der Name der lokalen Variablen für Buffer - 3. ein hdata Name/Variable (der Wert wird automatisch als Zeichenkette konvertiert), Standardmäßig wird für "window" und "buffer" das aktuelle Fenster/Buffer verwendet. -Das Format für hdata: - hdata.var1.var2...: startet mit hdata (der Pointer muss bekannt sein) und fragt eine Variable nach der anderen ab (weitere hdata können folgen) - hdata(list).var1.var2...: startet hdata mittels einer Liste, zum Beispiel: - ${buffer[gui_buffers].full_name}: der vollständige Name des ersten Buffers, in der verknüpften Liste aller Buffer - ${plugin[weechat_plugins].name}: Name der ersten Erweiterung, in der verknüpften Liste aller Erweiterungen -Die vorhandenen Namen für hdata und Variablen sind in der "Anleitung für API Erweiterung", Bereich "weechat_hdata_get". beschrieben +Some variables are replaced in expression, using the format ${variable}, variable can be, by order of priority : + 1. the name of an option (file.section.option) + 2. the name of a local variable in buffer + 3. a hdata name/variable (the value is automatically converted to string), by default "window" and "buffer" point to current window/buffer. +Format for hdata can be one of following: + hdata.var1.var2...: start with a hdata (pointer must be known), and ask variables one after one (other hdata can be followed) + hdata[list].var1.var2...: start with a hdata using a list, for example: + ${buffer[gui_buffers].full_name}: full name of first buffer in linked list of buffers + ${plugin[weechat_plugins].name}: name of first plugin in linked list of plugins +For name of hdata and variables, please look at "Plugin API reference", function "weechat_hdata_get". -Beispiele: +Examples: /eval -n ${weechat.look.scroll_amount} ==> 3 /eval -n ${window} ==> 0x2549aa0 /eval -n ${window.buffer} ==> 0x2549320 diff --git a/doc/en/autogen/user/weechat_commands.txt b/doc/en/autogen/user/weechat_commands.txt index e2df26c2d..5d236f087 100644 --- a/doc/en/autogen/user/weechat_commands.txt +++ b/doc/en/autogen/user/weechat_commands.txt @@ -235,7 +235,7 @@ Some variables are replaced in expression, using the format ${variable}, variabl 3. a hdata name/variable (the value is automatically converted to string), by default "window" and "buffer" point to current window/buffer. Format for hdata can be one of following: hdata.var1.var2...: start with a hdata (pointer must be known), and ask variables one after one (other hdata can be followed) - hdata(list).var1.var2...: start with a hdata using a list, for example: + hdata[list].var1.var2...: start with a hdata using a list, for example: ${buffer[gui_buffers].full_name}: full name of first buffer in linked list of buffers ${plugin[weechat_plugins].name}: name of first plugin in linked list of plugins For name of hdata and variables, please look at "Plugin API reference", function "weechat_hdata_get". diff --git a/doc/fr/autogen/user/weechat_commands.txt b/doc/fr/autogen/user/weechat_commands.txt index 43b56a7cf..cb7906f49 100644 --- a/doc/fr/autogen/user/weechat_commands.txt +++ b/doc/fr/autogen/user/weechat_commands.txt @@ -235,7 +235,7 @@ Des variables sont remplacées dans l'expression, en utilisant le format ${varia 3. le nom d'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. Le format du hdata peut être le suivant : hdata.var1.var2...: démarrer avec un hdata (le pointeur doit être connu), et demander les variables l'une après l'autre (d'autres hdata peuvent être suivis) - hdata(list).var1.var2...: démarrer avec un hdata en utilisant une liste, par exemple : + hdata[list].var1.var2...: démarrer avec un hdata en utilisant une liste, par exemple : ${buffer[gui_buffers].full_name}: nom complet du premier tampon dans la liste chaînée des tampons ${plugin[weechat_plugins].name}: nom de la première extension dans la liste chaînée des extensions Pour le nom du hdata et des variables, voir la "Référence API extension", fonction "weechat_hdata_get". diff --git a/doc/it/autogen/user/weechat_commands.txt b/doc/it/autogen/user/weechat_commands.txt index f34198087..bc1e3ff61 100644 --- a/doc/it/autogen/user/weechat_commands.txt +++ b/doc/it/autogen/user/weechat_commands.txt @@ -235,7 +235,7 @@ Some variables are replaced in expression, using the format ${variable}, variabl 3. a hdata name/variable (the value is automatically converted to string), by default "window" and "buffer" point to current window/buffer. Format for hdata can be one of following: hdata.var1.var2...: start with a hdata (pointer must be known), and ask variables one after one (other hdata can be followed) - hdata(list).var1.var2...: start with a hdata using a list, for example: + hdata[list].var1.var2...: start with a hdata using a list, for example: ${buffer[gui_buffers].full_name}: full name of first buffer in linked list of buffers ${plugin[weechat_plugins].name}: name of first plugin in linked list of plugins For name of hdata and variables, please look at "Plugin API reference", function "weechat_hdata_get". diff --git a/doc/ja/autogen/user/weechat_commands.txt b/doc/ja/autogen/user/weechat_commands.txt index 1a40713a7..dd3346222 100644 --- a/doc/ja/autogen/user/weechat_commands.txt +++ b/doc/ja/autogen/user/weechat_commands.txt @@ -235,7 +235,7 @@ Some variables are replaced in expression, using the format ${variable}, variabl 3. a hdata name/variable (the value is automatically converted to string), by default "window" and "buffer" point to current window/buffer. Format for hdata can be one of following: hdata.var1.var2...: start with a hdata (pointer must be known), and ask variables one after one (other hdata can be followed) - hdata(list).var1.var2...: start with a hdata using a list, for example: + hdata[list].var1.var2...: start with a hdata using a list, for example: ${buffer[gui_buffers].full_name}: full name of first buffer in linked list of buffers ${plugin[weechat_plugins].name}: name of first plugin in linked list of plugins For name of hdata and variables, please look at "Plugin API reference", function "weechat_hdata_get". diff --git a/po/cs.po b/po/cs.po index 804fa55c7..7426676be 100644 --- a/po/cs.po +++ b/po/cs.po @@ -20,7 +20,7 @@ msgid "" msgstr "" "Project-Id-Version: WeeChat 0.4.1-dev\n" "Report-Msgid-Bugs-To: flashcode@flashtux.org\n" -"POT-Creation-Date: 2013-04-23 21:20+0200\n" +"POT-Creation-Date: 2013-04-25 12:05+0200\n" "PO-Revision-Date: 2013-03-16 17:49+0100\n" "Last-Translator: Jiri Golembiovsky \n" "Language-Team: weechat-dev \n" @@ -1266,7 +1266,7 @@ msgid "" "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" -" hdata(list).var1.var2...: start with a hdata using a list, for example:\n" +" hdata[list].var1.var2...: start with a hdata using a list, for example:\n" " ${buffer[gui_buffers].full_name}: full name of first buffer in linked " "list of buffers\n" " ${plugin[weechat_plugins].name}: name of first plugin in linked list of " diff --git a/po/de.po b/po/de.po index 3c431a65d..944106ec5 100644 --- a/po/de.po +++ b/po/de.po @@ -22,8 +22,8 @@ msgid "" msgstr "" "Project-Id-Version: WeeChat 0.4.1-dev\n" "Report-Msgid-Bugs-To: flashcode@flashtux.org\n" -"POT-Creation-Date: 2013-04-23 21:20+0200\n" -"PO-Revision-Date: 2013-04-16 20:07+0200\n" +"POT-Creation-Date: 2013-04-25 12:05+0200\n" +"PO-Revision-Date: 2013-04-25 12:07+0200\n" "Last-Translator: Nils Görs \n" "Language-Team: German \n" "Language: de\n" @@ -1318,7 +1318,7 @@ msgid "" "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" -" hdata(list).var1.var2...: start with a hdata using a list, for example:\n" +" hdata[list].var1.var2...: start with a hdata using a list, for example:\n" " ${buffer[gui_buffers].full_name}: full name of first buffer in linked " "list of buffers\n" " ${plugin[weechat_plugins].name}: name of first plugin in linked list of " @@ -1341,10 +1341,8 @@ msgid "" " /eval -n abcd =~ (?-i)^abc ==> 1\n" " /eval -n abcd !~ abc ==> 0" msgstr "" -" -n: zeigt das Ergebnis an, ohne dieses in den Buffer zu schreiben " -"(debug Modus)\n" -"expression: Ausdruck welcher verarbeitet werden soll. Variablen im Format " -"${variable} werden ersetzt (siehe unten)\n" +" -n: zeigt das Ergebnis an, ohne dieses in den Buffer zu schreiben (debug Modus)\n" +"expression: Ausdruck welcher verarbeitet werden soll. Variablen im Format ${variable} werden ersetzt (siehe unten)\n" " operator: ein logischer oder vergleichender Operand:\n" " - logische Operanden:\n" " && boolean \"und\"\n" @@ -1359,33 +1357,22 @@ msgstr "" " =~ stimmt mit regulärem Ausdruck überein\n" " !~ stimmt NICHT mit regulärem Ausdruck überein\n" "\n" -"Ein Ausdruck gilt als \"wahr\", sofern das Ergebnis nicht NULL, nicht leer " -"und von \"0\" abweichend ist.\n" -"Der Vergleich findet zwischen zwei Integer statt, sofern die beiden " -"Ausdrücke gültige Integer-Werte sind.\n" -"Um einen Vergleich zwischen zwei Zeichenketten zu erzwingen, müssen die " -"Ausdrücke in Anführungszeichen gesetzt werden, zum Beispiel:\n" +"Ein Ausdruck gilt als \"wahr\", sofern das Ergebnis nicht NULL, nicht leer und von \"0\" abweichend ist.\n" +"Der Vergleich findet zwischen zwei Integer statt, sofern die beiden Ausdrücke gültige Integer-Werte sind.\n" +"Um einen Vergleich zwischen zwei Zeichenketten zu erzwingen, müssen die Ausdrücke in Anführungszeichen gesetzt werden, zum Beispiel:\n" " 50 > 100 ==> 0\n" " \"50\" > \"100\" ==> 1\n" "\n" -"Einige Variablen werden im Ausdruck, mittels der Formatierung ${Variable}, " -"ersetzt. Mögliche Variablen sind, nach Reihenfolge ihrer Priorität:\n" +"Einige Variablen werden im Ausdruck, mittels der Formatierung ${Variable}, ersetzt. Mögliche Variablen sind, nach Reihenfolge ihrer Priorität:\n" " 1. der Name einer Option (file.section.option)\n" " 2. der Name der lokalen Variablen für Buffer\n" -" 3. ein hdata Name/Variable (der Wert wird automatisch als Zeichenkette " -"konvertiert), Standardmäßig wird für \"window\" und \"buffer\" das aktuelle " -"Fenster/Buffer verwendet.\n" +" 3. ein hdata Name/Variable (der Wert wird automatisch als Zeichenkette konvertiert), Standardmäßig wird für \"window\" und \"buffer\" das aktuelle Fenster/Buffer verwendet.\n" "Das Format für hdata:\n" -" hdata.var1.var2...: startet mit hdata (der Pointer muss bekannt sein) und " -"fragt eine Variable nach der anderen ab (weitere hdata können folgen)\n" -" hdata(list).var1.var2...: startet hdata mittels einer Liste, zum " -"Beispiel:\n" -" ${buffer[gui_buffers].full_name}: der vollständige Name des ersten " -"Buffers, in der verknüpften Liste aller Buffer\n" -" ${plugin[weechat_plugins].name}: Name der ersten Erweiterung, in der " -"verknüpften Liste aller Erweiterungen\n" -"Die vorhandenen Namen für hdata und Variablen sind in der \"Anleitung für " -"API Erweiterung\", Bereich \"weechat_hdata_get\". beschrieben\n" +" hdata.var1.var2...: startet mit hdata (der Pointer muss bekannt sein) und fragt eine Variable nach der anderen ab (weitere hdata können folgen)\n" +" hdata[list].var1.var2...: startet hdata mittels einer Liste, zum Beispiel:\n" +" ${buffer[gui_buffers].full_name}: der vollständige Name des ersten Buffers, in der verknüpften Liste aller Buffer\n" +" ${plugin[weechat_plugins].name}: Name der ersten Erweiterung, in der verknüpften Liste aller Erweiterungen\n" +"Die vorhandenen Namen für hdata und Variablen sind in der \"Anleitung für API Erweiterung\", Bereich \"weechat_hdata_get\". beschrieben\n" "\n" "Beispiele:\n" " /eval -n ${weechat.look.scroll_amount} ==> 3\n" diff --git a/po/es.po b/po/es.po index da3971e57..e6b46ed33 100644 --- a/po/es.po +++ b/po/es.po @@ -22,7 +22,7 @@ msgid "" msgstr "" "Project-Id-Version: WeeChat 0.4.1-dev\n" "Report-Msgid-Bugs-To: flashcode@flashtux.org\n" -"POT-Creation-Date: 2013-04-23 21:20+0200\n" +"POT-Creation-Date: 2013-04-25 12:05+0200\n" "PO-Revision-Date: 2013-03-17 08:20+0100\n" "Last-Translator: Elián Hanisch \n" "Language-Team: weechat-dev \n" @@ -1300,7 +1300,7 @@ msgid "" "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" -" hdata(list).var1.var2...: start with a hdata using a list, for example:\n" +" hdata[list].var1.var2...: start with a hdata using a list, for example:\n" " ${buffer[gui_buffers].full_name}: full name of first buffer in linked " "list of buffers\n" " ${plugin[weechat_plugins].name}: name of first plugin in linked list of " diff --git a/po/fr.po b/po/fr.po index 1c3275d68..806c32d00 100644 --- a/po/fr.po +++ b/po/fr.po @@ -21,8 +21,8 @@ msgid "" msgstr "" "Project-Id-Version: WeeChat 0.4.1-dev\n" "Report-Msgid-Bugs-To: flashcode@flashtux.org\n" -"POT-Creation-Date: 2013-04-23 21:20+0200\n" -"PO-Revision-Date: 2013-04-23 21:21+0200\n" +"POT-Creation-Date: 2013-04-25 12:05+0200\n" +"PO-Revision-Date: 2013-04-25 12:06+0200\n" "Last-Translator: Sebastien Helleu \n" "Language-Team: weechat-dev \n" "Language: fr\n" @@ -1295,7 +1295,7 @@ msgid "" "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" -" hdata(list).var1.var2...: start with a hdata using a list, for example:\n" +" hdata[list].var1.var2...: start with a hdata using a list, for example:\n" " ${buffer[gui_buffers].full_name}: full name of first buffer in linked " "list of buffers\n" " ${plugin[weechat_plugins].name}: name of first plugin in linked list of " @@ -1355,7 +1355,7 @@ msgstr "" " hdata.var1.var2...: démarrer avec un hdata (le pointeur doit être connu), " "et demander les variables l'une après l'autre (d'autres hdata peuvent être " "suivis)\n" -" hdata(list).var1.var2...: démarrer avec un hdata en utilisant une liste, " +" hdata[list].var1.var2...: démarrer avec un hdata en utilisant une liste, " "par exemple :\n" " ${buffer[gui_buffers].full_name}: nom complet du premier tampon dans la " "liste chaînée des tampons\n" diff --git a/po/hu.po b/po/hu.po index b54d78c55..35033fd5f 100644 --- a/po/hu.po +++ b/po/hu.po @@ -20,7 +20,7 @@ msgid "" msgstr "" "Project-Id-Version: WeeChat 0.4.1-dev\n" "Report-Msgid-Bugs-To: flashcode@flashtux.org\n" -"POT-Creation-Date: 2013-04-23 21:20+0200\n" +"POT-Creation-Date: 2013-04-25 12:05+0200\n" "PO-Revision-Date: 2013-03-16 17:50+0100\n" "Last-Translator: Andras Voroskoi \n" "Language-Team: weechat-dev \n" @@ -1196,7 +1196,7 @@ msgid "" "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" -" hdata(list).var1.var2...: start with a hdata using a list, for example:\n" +" hdata[list].var1.var2...: start with a hdata using a list, for example:\n" " ${buffer[gui_buffers].full_name}: full name of first buffer in linked " "list of buffers\n" " ${plugin[weechat_plugins].name}: name of first plugin in linked list of " diff --git a/po/it.po b/po/it.po index 6c1b93808..e1be7ab17 100644 --- a/po/it.po +++ b/po/it.po @@ -20,7 +20,7 @@ msgid "" msgstr "" "Project-Id-Version: WeeChat 0.4.1-dev\n" "Report-Msgid-Bugs-To: flashcode@flashtux.org\n" -"POT-Creation-Date: 2013-04-23 21:20+0200\n" +"POT-Creation-Date: 2013-04-25 12:05+0200\n" "PO-Revision-Date: 2013-03-17 08:20+0100\n" "Last-Translator: Marco Paolone \n" "Language-Team: weechat-dev \n" @@ -1287,7 +1287,7 @@ msgid "" "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" -" hdata(list).var1.var2...: start with a hdata using a list, for example:\n" +" hdata[list].var1.var2...: start with a hdata using a list, for example:\n" " ${buffer[gui_buffers].full_name}: full name of first buffer in linked " "list of buffers\n" " ${plugin[weechat_plugins].name}: name of first plugin in linked list of " diff --git a/po/ja.po b/po/ja.po index ffb1943e4..0870d12e4 100644 --- a/po/ja.po +++ b/po/ja.po @@ -20,7 +20,7 @@ msgid "" msgstr "" "Project-Id-Version: WeeChat 0.4.1-dev\n" "Report-Msgid-Bugs-To: flashcode@flashtux.org\n" -"POT-Creation-Date: 2013-04-23 21:20+0200\n" +"POT-Creation-Date: 2013-04-25 12:05+0200\n" "PO-Revision-Date: 2013-03-17 08:20+0100\n" "Last-Translator: AYANOKOUZI, Ryuunosuke \n" "Language-Team: Japanese \n" @@ -1272,7 +1272,7 @@ msgid "" "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" -" hdata(list).var1.var2...: start with a hdata using a list, for example:\n" +" hdata[list].var1.var2...: start with a hdata using a list, for example:\n" " ${buffer[gui_buffers].full_name}: full name of first buffer in linked " "list of buffers\n" " ${plugin[weechat_plugins].name}: name of first plugin in linked list of " diff --git a/po/pl.po b/po/pl.po index 397678829..467c8c518 100644 --- a/po/pl.po +++ b/po/pl.po @@ -21,7 +21,7 @@ msgid "" msgstr "" "Project-Id-Version: WeeChat 0.4.1-dev\n" "Report-Msgid-Bugs-To: flashcode@flashtux.org\n" -"POT-Creation-Date: 2013-04-23 21:20+0200\n" +"POT-Creation-Date: 2013-04-25 12:05+0200\n" "PO-Revision-Date: 2013-03-17 08:20+0100\n" "Last-Translator: Krzysztof Korościk \n" "Language-Team: weechat-dev \n" @@ -1302,7 +1302,7 @@ msgid "" "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" -" hdata(list).var1.var2...: start with a hdata using a list, for example:\n" +" hdata[list].var1.var2...: start with a hdata using a list, for example:\n" " ${buffer[gui_buffers].full_name}: full name of first buffer in linked " "list of buffers\n" " ${plugin[weechat_plugins].name}: name of first plugin in linked list of " diff --git a/po/pt_BR.po b/po/pt_BR.po index f017d0ab2..64ca3863b 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -21,7 +21,7 @@ msgid "" msgstr "" "Project-Id-Version: WeeChat 0.4.1-dev\n" "Report-Msgid-Bugs-To: flashcode@flashtux.org\n" -"POT-Creation-Date: 2013-04-23 21:20+0200\n" +"POT-Creation-Date: 2013-04-25 12:05+0200\n" "PO-Revision-Date: 2013-03-17 08:20+0100\n" "Last-Translator: Sergio Durigan Junior \n" "Language-Team: weechat-dev \n" @@ -1333,7 +1333,7 @@ msgid "" "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" -" hdata(list).var1.var2...: start with a hdata using a list, for example:\n" +" hdata[list].var1.var2...: start with a hdata using a list, for example:\n" " ${buffer[gui_buffers].full_name}: full name of first buffer in linked " "list of buffers\n" " ${plugin[weechat_plugins].name}: name of first plugin in linked list of " diff --git a/po/ru.po b/po/ru.po index 2bac8cd51..e98b550d1 100644 --- a/po/ru.po +++ b/po/ru.po @@ -21,7 +21,7 @@ msgid "" msgstr "" "Project-Id-Version: WeeChat 0.4.1-dev\n" "Report-Msgid-Bugs-To: flashcode@flashtux.org\n" -"POT-Creation-Date: 2013-04-23 21:20+0200\n" +"POT-Creation-Date: 2013-04-25 12:05+0200\n" "PO-Revision-Date: 2013-03-16 17:50+0100\n" "Last-Translator: Aleksey V Zapparov AKA ixti \n" "Language-Team: weechat-dev \n" @@ -1217,7 +1217,7 @@ msgid "" "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" -" hdata(list).var1.var2...: start with a hdata using a list, for example:\n" +" hdata[list].var1.var2...: start with a hdata using a list, for example:\n" " ${buffer[gui_buffers].full_name}: full name of first buffer in linked " "list of buffers\n" " ${plugin[weechat_plugins].name}: name of first plugin in linked list of " diff --git a/po/weechat.pot b/po/weechat.pot index 7ddab6aa9..3bf4ddd9f 100644 --- a/po/weechat.pot +++ b/po/weechat.pot @@ -21,7 +21,7 @@ msgid "" msgstr "" "Project-Id-Version: WeeChat 0.4.1-dev\n" "Report-Msgid-Bugs-To: flashcode@flashtux.org\n" -"POT-Creation-Date: 2013-04-23 21:20+0200\n" +"POT-Creation-Date: 2013-04-25 12:05+0200\n" "PO-Revision-Date: 2013-02-14 18:20+0100\n" "Last-Translator: FULL NAME \n" "Language-Team: weechat-dev \n" @@ -1071,7 +1071,7 @@ msgid "" "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" -" hdata(list).var1.var2...: start with a hdata using a list, for example:\n" +" hdata[list].var1.var2...: start with a hdata using a list, for example:\n" " ${buffer[gui_buffers].full_name}: full name of first buffer in linked " "list of buffers\n" " ${plugin[weechat_plugins].name}: name of first plugin in linked list of " diff --git a/src/core/wee-command.c b/src/core/wee-command.c index d4ab0d00a..10d92a454 100644 --- a/src/core/wee-command.c +++ b/src/core/wee-command.c @@ -6123,7 +6123,7 @@ command_init () " hdata.var1.var2...: start with a hdata (pointer must be " "known), and ask variables one after one (other hdata can " "be followed)\n" - " hdata(list).var1.var2...: start with a hdata using a " + " hdata[list].var1.var2...: start with a hdata using a " "list, for example:\n" " ${buffer[gui_buffers].full_name}: full name of first " "buffer in linked list of buffers\n"