From 62df708fdc5b3981d6ffc0ea0868c03f406246b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Helleu?= Date: Sat, 12 Apr 2014 13:25:58 +0200 Subject: [PATCH] core: add tag "host_xxx" in /help filter --- doc/de/autogen/user/weechat_commands.txt | 73 ++++++++++++------------ doc/en/autogen/user/weechat_commands.txt | 1 + doc/fr/autogen/user/weechat_commands.txt | 1 + doc/it/autogen/user/weechat_commands.txt | 1 + doc/ja/autogen/user/weechat_commands.txt | 71 +++++++++++------------ doc/pl/autogen/user/weechat_commands.txt | 1 + po/cs.po | 3 +- po/de.po | 4 +- po/es.po | 3 +- po/fr.po | 6 +- po/hu.po | 3 +- po/it.po | 3 +- po/ja.po | 4 +- po/pl.po | 3 +- po/pt_BR.po | 3 +- po/ru.po | 3 +- po/tr.po | 3 +- po/weechat.pot | 3 +- src/core/wee-command.c | 1 + 19 files changed, 106 insertions(+), 84 deletions(-) diff --git a/doc/de/autogen/user/weechat_commands.txt b/doc/de/autogen/user/weechat_commands.txt index 5f3a4be19..74974be7f 100644 --- a/doc/de/autogen/user/weechat_commands.txt +++ b/doc/de/autogen/user/weechat_commands.txt @@ -301,53 +301,54 @@ Beispiele (Bedingungen): rename del |-all - list: alle Filter auflisten - enable: Filter wird aktiviert (Filter werden standardmäßig aktiviert) -disable: Filter deaktivieren - toggle: Filter umschalten - name: Name des Filters ("@" = aktiviert/deaktiviert alle Filter im aktuellen Buffer) - add: Filter hinzufügen - rename: benennt einen Filter um - del: Filter entfernen - -all: entfernt alle Filter - buffer: durch Kommata getrennte Liste von Buffer in denen der Filter aktiv sein soll: - - ist der vollständige Name eines Buffer inklusive seiner Erweiterung (Beispiel: "irc.freenode.#weechat") - - "*" anwenden auf alle Buffer - - beginnt ein Name mit '!' wird für diesen Buffer kein Filter genutzt - - ein Name darf mit '*' beginnen oder enden um mehrere Buffer auszuwählen - tags: durch Kommata getrennte Liste von Schlagwörtern. Zum Beispiel: "irc_join,irc_part,irc_quit" - - logisch "und": wird "+" zwischen den Tags verwendet (zum Beispiel: "nick_toto+irc_action") - - Tags können mit '*' beginnen oder enden - regex: erweiterter regulärer POSIX Ausdruck, um in einer Zeile zu suchen - - das Präfix (z.B. Nick) wird mittels '\t' von der Nachricht getrennt. Sonderzeichen wie '|' müssen mit einer Escapesequenz : '\|' eingebunden werden) - - wird ein regulärer Ausdruck mit '!' eingeleitet dann wird das übereinstimmende Ergebnis umgekehrt (nutze '\!' um mit '!' zu beginnen) - - es werden zwei reguläre Ausdrücke erstellt: Der erste für den Präfix und der zweite für die eigentliche Nachricht - - reguläre Ausdrücke unterscheiden nicht zwischen Groß- und Kleinschreibung. Um zwischen Groß- und Kleinschreibung zu unterscheiden müssen diese mit "(?-i)" eingeleitet werden. + list: list all filters + enable: enable filters (filters are enabled by default) +disable: disable filters + toggle: toggle filters + name: filter name ("@" = enable/disable all filters in current buffer) + add: add a filter + rename: rename a filter + del: delete a filter + -all: delete all filters + buffer: comma separated list of buffers where filter is active: + - this is full name including plugin (example: "irc.freenode.#weechat") + - "*" means all buffers + - a name starting with '!' is excluded + - name can start or end with '*' to match many buffers + tags: comma separated list of tags, for example "irc_join,irc_part,irc_quit" + - logical "and": use "+" between tags (for example: "nick_toto+irc_action") + - tags can start or end with '*' + regex: POSIX extended regular expression to search in line + - use '\t' to separate prefix from message, special chars like '|' must be escaped: '\|' + - if regex starts with '!', then matching result is reversed (use '\!' to start with '!') + - two regular expressions are created: one for prefix and one for message + - regex are case insensitive, they can start by "(?-i)" to become case sensitive -Mit der Tastenvoreinstellung alt+'=' kann die Filterfunktion (de-)aktiviert werden. +The default key alt+'=' toggles filtering on/off. -Die am häufigsten gebrauchten Schlagwörter lauten: - no_filter, no_highlight, no_log, log0..log9 (log Level), +Tags most commonly used: + no_filter, no_highlight, no_log, log0..log9 (log level), notify_none, notify_message, notify_private, notify_highlight, - nick_xxx (xxx ist durch den Nicknamen zu ersetzen), prefix_nick_ccc (ccc ist die Farbe mit der der Nick dargestellt wird), - irc_xxx (xxx ist durch einen IRC-Befehl/-Nummer zu ersetzen, siehe /server raw oder /debug tags) + nick_xxx (xxx is nick in message), prefix_nick_ccc (ccc is color of nick), + host_xxx (xxx is username + host in message), + irc_xxx (xxx is command name or number, see /server raw or /debug tags), irc_numeric, irc_error, irc_action, irc_ctcp, irc_ctcp_reply, irc_smart_filter, away_info. -Mittels "/debug tags" kann man sich die Tags jeder einzelnen Zeile darstellen zu lassen. +To see tags for lines in buffers: /debug tags -Beispiele: - aktiviert einen einfachen IRC Filter für join/part/quit/nick Nachrichten für alle Buffer: +Examples: + use IRC smart filter on all buffers: /filter add irc_smart * irc_smart_filter * - aktiviert einen einfachen IRC Filter für join/part/quit/nick Nachrichten der für alle Buffer genutzt wird, außer Buffer die "#weechat" im Namen tragen: + use IRC smart filter on all buffers except those with "#weechat" in name: /filter add irc_smart *,!*#weechat* irc_smart_filter * - filtert alle IRC join/part/quit Nachrichten: + filter all IRC join/part/quit messages: /filter add joinquit * irc_join,irc_part,irc_quit * - filtert Nicks wenn diese den Channel betreten oder durch den Befehl "/names" angezeigt werden: + filter nicks displayed when joining channels or with /names: /filter add nicks * irc_366 * - filtert Nick "toto" im IRC Channel #weechat: + filter nick "toto" on IRC channel #weechat: /filter add toto irc.freenode.#weechat nick_toto * - filtert IRC join/action Nachrichten von Nick "toto": + filter IRC join/action messages from nick "toto": /filter add toto * nick_toto+irc_join,nick_toto+irc_action * - filtert Zeilen die "weechat sucks" im IRC Channel #weechat enthalten: + filter lines containing "weechat sucks" on IRC channel #weechat: /filter add sucks irc.freenode.#weechat * weechat sucks ---- diff --git a/doc/en/autogen/user/weechat_commands.txt b/doc/en/autogen/user/weechat_commands.txt index 3a880b2f8..c5b25e462 100644 --- a/doc/en/autogen/user/weechat_commands.txt +++ b/doc/en/autogen/user/weechat_commands.txt @@ -330,6 +330,7 @@ Tags most commonly used: no_filter, no_highlight, no_log, log0..log9 (log level), notify_none, notify_message, notify_private, notify_highlight, nick_xxx (xxx is nick in message), prefix_nick_ccc (ccc is color of nick), + host_xxx (xxx is username + host in message), irc_xxx (xxx is command name or number, see /server raw or /debug tags), irc_numeric, irc_error, irc_action, irc_ctcp, irc_ctcp_reply, irc_smart_filter, away_info. To see tags for lines in buffers: /debug tags diff --git a/doc/fr/autogen/user/weechat_commands.txt b/doc/fr/autogen/user/weechat_commands.txt index c7f315248..aba674e0d 100644 --- a/doc/fr/autogen/user/weechat_commands.txt +++ b/doc/fr/autogen/user/weechat_commands.txt @@ -330,6 +330,7 @@ Les étiquettes les plus couramment utilisées: no_filter, no_highlight, no_log, log0..log9 (niveau de log), notify_none, notify_message, notify_private, notify_highlight, nick_xxx (xxx est le pseudo dans le message), prefix_nick_ccc (ccc est la couleur du pseudo), + host_xxx (xxx est le nom d'utilisateur + hôte dans le message), irc_xxx (xxx est un nom de commande ou nombre, voir /server raw ou /debug tags), irc_numeric, irc_error, irc_action, irc_ctcp, irc_ctcp_reply, irc_smart_filter, away_info. Pour voir les étiquettes des lignes affichées: /debug tags diff --git a/doc/it/autogen/user/weechat_commands.txt b/doc/it/autogen/user/weechat_commands.txt index 6f8b1b729..99ac3309d 100644 --- a/doc/it/autogen/user/weechat_commands.txt +++ b/doc/it/autogen/user/weechat_commands.txt @@ -330,6 +330,7 @@ Tags most commonly used: no_filter, no_highlight, no_log, log0..log9 (log level), notify_none, notify_message, notify_private, notify_highlight, nick_xxx (xxx is nick in message), prefix_nick_ccc (ccc is color of nick), + host_xxx (xxx is username + host in message), irc_xxx (xxx is command name or number, see /server raw or /debug tags), irc_numeric, irc_error, irc_action, irc_ctcp, irc_ctcp_reply, irc_smart_filter, away_info. To see tags for lines in buffers: /debug tags diff --git a/doc/ja/autogen/user/weechat_commands.txt b/doc/ja/autogen/user/weechat_commands.txt index b95e572a1..ee266ee0e 100644 --- a/doc/ja/autogen/user/weechat_commands.txt +++ b/doc/ja/autogen/user/weechat_commands.txt @@ -301,53 +301,54 @@ hdata と変数の名前については、"プラグイン API リファレン rename del |-all - list: 全てのフィルタをリストアップ - enable: フィルタを有効化 (フィルタはデフォルトで有効になっています) -disable: フィルタを無効化 - toggle: フィルタの有効無効を切り替え - name: フィルタの名前 ("@" = 現在のバッファに設定されている全てのフィルタを有効化/無効化) - add: フィルタを追加 - rename: フィルタをリネーム - del: フィルタを削除 - -all: 全てのフィルタを削除 - buffer: フィルタが有効化されているバッファのコンマ区切りリスト: - - これはプラグイン名を含む完全な名前です (例えば: "irc.freenode.#weechat") - - "*" は全てのバッファを意味します - - 名前が '!' から始まるものは除外されます - - 多くのバッファにマッチさせるためには名前を '*' から始めるか終わらせてください - tags: タグのコンマ区切りリスト、例えば "irc_join,irc_part,irc_quit" - - 論理積 "and": タグ同士を "+" でつなげる (例えば: "nick_toto+irc_action") - - タグの最初と最後には '*' を使うことができます - regex: 行単位検索の正規表現 - - '\t' を使うと、プレフィックスをメッセージから分離できます。'|' 等の特別な文字は '\|' のようにエスケープしなければいけません - - 正規表現の最初に '!' が含まれる場合は、マッチ結果が反転されます (最初の '!' にマッチさせたければ、'\!' を使ってください) - - 2 種類の正規表現があります: 一方はプレフィックス用、他方はメッセージ用 - - 正規表現は大文字小文字を区別しません、"(?-i)" から始まる場合は区別します + list: list all filters + enable: enable filters (filters are enabled by default) +disable: disable filters + toggle: toggle filters + name: filter name ("@" = enable/disable all filters in current buffer) + add: add a filter + rename: rename a filter + del: delete a filter + -all: delete all filters + buffer: comma separated list of buffers where filter is active: + - this is full name including plugin (example: "irc.freenode.#weechat") + - "*" means all buffers + - a name starting with '!' is excluded + - name can start or end with '*' to match many buffers + tags: comma separated list of tags, for example "irc_join,irc_part,irc_quit" + - logical "and": use "+" between tags (for example: "nick_toto+irc_action") + - tags can start or end with '*' + regex: POSIX extended regular expression to search in line + - use '\t' to separate prefix from message, special chars like '|' must be escaped: '\|' + - if regex starts with '!', then matching result is reversed (use '\!' to start with '!') + - two regular expressions are created: one for prefix and one for message + - regex are case insensitive, they can start by "(?-i)" to become case sensitive -デフォルトではキー alt+'=' でフィルタリングの on/off を切り替えられます。 +The default key alt+'=' toggles filtering on/off. -よく使われるタグ: +Tags most commonly used: no_filter, no_highlight, no_log, log0..log9 (log level), notify_none, notify_message, notify_private, notify_highlight, - nick_xxx (xxx はメッセージのニックネーム), prefix_nick_ccc (ccc はニックネームの色) - irc_xxx (xxx はコマンド名又は番号、/server raw または /debug tags で確認), + nick_xxx (xxx is nick in message), prefix_nick_ccc (ccc is color of nick), + host_xxx (xxx is username + host in message), + irc_xxx (xxx is command name or number, see /server raw or /debug tags), irc_numeric, irc_error, irc_action, irc_ctcp, irc_ctcp_reply, irc_smart_filter, away_info. -バッファ内でタグを見るには: /debug tags +To see tags for lines in buffers: /debug tags -例: - 全てのバッファで IRC スマートフィルタを使用: +Examples: + use IRC smart filter on all buffers: /filter add irc_smart * irc_smart_filter * - 名前に "#weechat" を含むバッファを除いた全てのバッファで IRC スマートフィルタを使用: + use IRC smart filter on all buffers except those with "#weechat" in name: /filter add irc_smart *,!*#weechat* irc_smart_filter * - 全ての IRC join/part/quit メッセージをフィルタ: + filter all IRC join/part/quit messages: /filter add joinquit * irc_join,irc_part,irc_quit * - チャンネルに入った時や /names で表示されるニックネームをフィルタ: + filter nicks displayed when joining channels or with /names: /filter add nicks * irc_366 * - IRC チャンネル #weechat で "toto" を含むニックネームをフィルタ: + filter nick "toto" on IRC channel #weechat: /filter add toto irc.freenode.#weechat nick_toto * - ニックネーム "toto" からの IRC の参加/アクションメッセージをフィルタ: + filter IRC join/action messages from nick "toto": /filter add toto * nick_toto+irc_join,nick_toto+irc_action * - IRC チャンネル #weechat で "weechat sucks" を含む行をフィルタ: + filter lines containing "weechat sucks" on IRC channel #weechat: /filter add sucks irc.freenode.#weechat * weechat sucks ---- diff --git a/doc/pl/autogen/user/weechat_commands.txt b/doc/pl/autogen/user/weechat_commands.txt index 8028687c6..488aae578 100644 --- a/doc/pl/autogen/user/weechat_commands.txt +++ b/doc/pl/autogen/user/weechat_commands.txt @@ -330,6 +330,7 @@ Tags most commonly used: no_filter, no_highlight, no_log, log0..log9 (log level), notify_none, notify_message, notify_private, notify_highlight, nick_xxx (xxx is nick in message), prefix_nick_ccc (ccc is color of nick), + host_xxx (xxx is username + host in message), irc_xxx (xxx is command name or number, see /server raw or /debug tags), irc_numeric, irc_error, irc_action, irc_ctcp, irc_ctcp_reply, irc_smart_filter, away_info. To see tags for lines in buffers: /debug tags diff --git a/po/cs.po b/po/cs.po index 2165b3e18..6c200458f 100644 --- a/po/cs.po +++ b/po/cs.po @@ -20,7 +20,7 @@ msgid "" msgstr "" "Project-Id-Version: WeeChat\n" "Report-Msgid-Bugs-To: flashcode@flashtux.org\n" -"POT-Creation-Date: 2014-04-12 09:29+0200\n" +"POT-Creation-Date: 2014-04-12 13:23+0200\n" "PO-Revision-Date: 2014-04-05 16:12+0200\n" "Last-Translator: Jiri Golembiovsky \n" "Language-Team: weechat-dev \n" @@ -1471,6 +1471,7 @@ msgid "" " notify_none, notify_message, notify_private, notify_highlight,\n" " nick_xxx (xxx is nick in message), prefix_nick_ccc (ccc is color of " "nick),\n" +" host_xxx (xxx is username + host in message),\n" " irc_xxx (xxx is command name or number, see /server raw or /debug tags),\n" " irc_numeric, irc_error, irc_action, irc_ctcp, irc_ctcp_reply, " "irc_smart_filter, away_info.\n" diff --git a/po/de.po b/po/de.po index 574d57a3a..24bde732f 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-04-12 09:29+0200\n" +"POT-Creation-Date: 2014-04-12 13:23+0200\n" "PO-Revision-Date: 2014-04-05 21:06+0100\n" "Last-Translator: Nils Görs \n" "Language-Team: German \n" @@ -1571,6 +1571,7 @@ msgstr "" "list || enable|disable|toggle [|@] || add [," "...] || rename || del |-all" +#, fuzzy msgid "" " list: list all filters\n" " enable: enable filters (filters are enabled by default)\n" @@ -1609,6 +1610,7 @@ msgid "" " notify_none, notify_message, notify_private, notify_highlight,\n" " nick_xxx (xxx is nick in message), prefix_nick_ccc (ccc is color of " "nick),\n" +" host_xxx (xxx is username + host in message),\n" " irc_xxx (xxx is command name or number, see /server raw or /debug tags),\n" " irc_numeric, irc_error, irc_action, irc_ctcp, irc_ctcp_reply, " "irc_smart_filter, away_info.\n" diff --git a/po/es.po b/po/es.po index 0dc9ff596..b5213f84f 100644 --- a/po/es.po +++ b/po/es.po @@ -22,7 +22,7 @@ msgid "" msgstr "" "Project-Id-Version: WeeChat\n" "Report-Msgid-Bugs-To: flashcode@flashtux.org\n" -"POT-Creation-Date: 2014-04-12 09:29+0200\n" +"POT-Creation-Date: 2014-04-12 13:23+0200\n" "PO-Revision-Date: 2014-04-05 16:12+0200\n" "Last-Translator: Elián Hanisch \n" "Language-Team: weechat-dev \n" @@ -1509,6 +1509,7 @@ msgid "" " notify_none, notify_message, notify_private, notify_highlight,\n" " nick_xxx (xxx is nick in message), prefix_nick_ccc (ccc is color of " "nick),\n" +" host_xxx (xxx is username + host in message),\n" " irc_xxx (xxx is command name or number, see /server raw or /debug tags),\n" " irc_numeric, irc_error, irc_action, irc_ctcp, irc_ctcp_reply, " "irc_smart_filter, away_info.\n" diff --git a/po/fr.po b/po/fr.po index 405160e1e..f7f2c71cd 100644 --- a/po/fr.po +++ b/po/fr.po @@ -21,8 +21,8 @@ msgid "" msgstr "" "Project-Id-Version: WeeChat\n" "Report-Msgid-Bugs-To: flashcode@flashtux.org\n" -"POT-Creation-Date: 2014-04-12 09:29+0200\n" -"PO-Revision-Date: 2014-04-12 09:29+0200\n" +"POT-Creation-Date: 2014-04-12 13:23+0200\n" +"PO-Revision-Date: 2014-04-12 13:24+0200\n" "Last-Translator: Sébastien Helleu \n" "Language-Team: weechat-dev \n" "Language: fr\n" @@ -1588,6 +1588,7 @@ msgid "" " notify_none, notify_message, notify_private, notify_highlight,\n" " nick_xxx (xxx is nick in message), prefix_nick_ccc (ccc is color of " "nick),\n" +" host_xxx (xxx is username + host in message),\n" " irc_xxx (xxx is command name or number, see /server raw or /debug tags),\n" " irc_numeric, irc_error, irc_action, irc_ctcp, irc_ctcp_reply, " "irc_smart_filter, away_info.\n" @@ -1650,6 +1651,7 @@ msgstr "" " notify_none, notify_message, notify_private, notify_highlight,\n" " nick_xxx (xxx est le pseudo dans le message), prefix_nick_ccc (ccc est la " "couleur du pseudo),\n" +" host_xxx (xxx est le nom d'utilisateur + hôte dans le message),\n" " irc_xxx (xxx est un nom de commande ou nombre, voir /server raw ou /debug " "tags),\n" " irc_numeric, irc_error, irc_action, irc_ctcp, irc_ctcp_reply, " diff --git a/po/hu.po b/po/hu.po index 343349ccb..70cc939d8 100644 --- a/po/hu.po +++ b/po/hu.po @@ -20,7 +20,7 @@ msgid "" msgstr "" "Project-Id-Version: WeeChat\n" "Report-Msgid-Bugs-To: flashcode@flashtux.org\n" -"POT-Creation-Date: 2014-04-12 09:29+0200\n" +"POT-Creation-Date: 2014-04-12 13:23+0200\n" "PO-Revision-Date: 2014-04-05 16:12+0200\n" "Last-Translator: Andras Voroskoi \n" "Language-Team: weechat-dev \n" @@ -1398,6 +1398,7 @@ msgid "" " notify_none, notify_message, notify_private, notify_highlight,\n" " nick_xxx (xxx is nick in message), prefix_nick_ccc (ccc is color of " "nick),\n" +" host_xxx (xxx is username + host in message),\n" " irc_xxx (xxx is command name or number, see /server raw or /debug tags),\n" " irc_numeric, irc_error, irc_action, irc_ctcp, irc_ctcp_reply, " "irc_smart_filter, away_info.\n" diff --git a/po/it.po b/po/it.po index 9e2a5b2d6..53b07d1db 100644 --- a/po/it.po +++ b/po/it.po @@ -20,7 +20,7 @@ msgid "" msgstr "" "Project-Id-Version: WeeChat\n" "Report-Msgid-Bugs-To: flashcode@flashtux.org\n" -"POT-Creation-Date: 2014-04-12 09:29+0200\n" +"POT-Creation-Date: 2014-04-12 13:23+0200\n" "PO-Revision-Date: 2014-04-05 16:12+0200\n" "Last-Translator: Esteban I. Ruiz Moreno \n" "Language-Team: weechat-dev \n" @@ -1547,6 +1547,7 @@ msgid "" " notify_none, notify_message, notify_private, notify_highlight,\n" " nick_xxx (xxx is nick in message), prefix_nick_ccc (ccc is color of " "nick),\n" +" host_xxx (xxx is username + host in message),\n" " irc_xxx (xxx is command name or number, see /server raw or /debug tags),\n" " irc_numeric, irc_error, irc_action, irc_ctcp, irc_ctcp_reply, " "irc_smart_filter, away_info.\n" diff --git a/po/ja.po b/po/ja.po index 0ce672bd8..5e6cd5c2d 100644 --- a/po/ja.po +++ b/po/ja.po @@ -20,7 +20,7 @@ msgid "" msgstr "" "Project-Id-Version: WeeChat\n" "Report-Msgid-Bugs-To: flashcode@flashtux.org\n" -"POT-Creation-Date: 2014-04-12 09:29+0200\n" +"POT-Creation-Date: 2014-04-12 13:23+0200\n" "PO-Revision-Date: 2014-04-05 16:12+0200\n" "Last-Translator: AYANOKOUZI, Ryuunosuke \n" "Language-Team: Japanese \n" @@ -1506,6 +1506,7 @@ msgstr "" "list || enable|disable|toggle [|@] || add [," "...] || rename || del |-all" +#, fuzzy msgid "" " list: list all filters\n" " enable: enable filters (filters are enabled by default)\n" @@ -1544,6 +1545,7 @@ msgid "" " notify_none, notify_message, notify_private, notify_highlight,\n" " nick_xxx (xxx is nick in message), prefix_nick_ccc (ccc is color of " "nick),\n" +" host_xxx (xxx is username + host in message),\n" " irc_xxx (xxx is command name or number, see /server raw or /debug tags),\n" " irc_numeric, irc_error, irc_action, irc_ctcp, irc_ctcp_reply, " "irc_smart_filter, away_info.\n" diff --git a/po/pl.po b/po/pl.po index a94718a53..f72211a39 100644 --- a/po/pl.po +++ b/po/pl.po @@ -21,7 +21,7 @@ msgid "" msgstr "" "Project-Id-Version: WeeChat\n" "Report-Msgid-Bugs-To: flashcode@flashtux.org\n" -"POT-Creation-Date: 2014-04-12 09:29+0200\n" +"POT-Creation-Date: 2014-04-12 13:23+0200\n" "PO-Revision-Date: 2014-04-05 16:12+0200\n" "Last-Translator: Krzysztof Korościk \n" "Language-Team: weechat-dev \n" @@ -1572,6 +1572,7 @@ msgid "" " notify_none, notify_message, notify_private, notify_highlight,\n" " nick_xxx (xxx is nick in message), prefix_nick_ccc (ccc is color of " "nick),\n" +" host_xxx (xxx is username + host in message),\n" " irc_xxx (xxx is command name or number, see /server raw or /debug tags),\n" " irc_numeric, irc_error, irc_action, irc_ctcp, irc_ctcp_reply, " "irc_smart_filter, away_info.\n" diff --git a/po/pt_BR.po b/po/pt_BR.po index 7a8418fa5..94778898b 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -21,7 +21,7 @@ msgid "" msgstr "" "Project-Id-Version: WeeChat\n" "Report-Msgid-Bugs-To: flashcode@flashtux.org\n" -"POT-Creation-Date: 2014-04-12 09:29+0200\n" +"POT-Creation-Date: 2014-04-12 13:23+0200\n" "PO-Revision-Date: 2014-04-05 16:12+0200\n" "Last-Translator: Sergio Durigan Junior \n" "Language-Team: weechat-dev \n" @@ -1526,6 +1526,7 @@ msgid "" " notify_none, notify_message, notify_private, notify_highlight,\n" " nick_xxx (xxx is nick in message), prefix_nick_ccc (ccc is color of " "nick),\n" +" host_xxx (xxx is username + host in message),\n" " irc_xxx (xxx is command name or number, see /server raw or /debug tags),\n" " irc_numeric, irc_error, irc_action, irc_ctcp, irc_ctcp_reply, " "irc_smart_filter, away_info.\n" diff --git a/po/ru.po b/po/ru.po index 7ccbcd635..894ddeab9 100644 --- a/po/ru.po +++ b/po/ru.po @@ -21,7 +21,7 @@ msgid "" msgstr "" "Project-Id-Version: WeeChat\n" "Report-Msgid-Bugs-To: flashcode@flashtux.org\n" -"POT-Creation-Date: 2014-04-12 09:29+0200\n" +"POT-Creation-Date: 2014-04-12 13:23+0200\n" "PO-Revision-Date: 2014-04-05 16:12+0200\n" "Last-Translator: Aleksey V Zapparov AKA ixti \n" "Language-Team: weechat-dev \n" @@ -1420,6 +1420,7 @@ msgid "" " notify_none, notify_message, notify_private, notify_highlight,\n" " nick_xxx (xxx is nick in message), prefix_nick_ccc (ccc is color of " "nick),\n" +" host_xxx (xxx is username + host in message),\n" " irc_xxx (xxx is command name or number, see /server raw or /debug tags),\n" " irc_numeric, irc_error, irc_action, irc_ctcp, irc_ctcp_reply, " "irc_smart_filter, away_info.\n" diff --git a/po/tr.po b/po/tr.po index 633184c63..dccbc62df 100644 --- a/po/tr.po +++ b/po/tr.po @@ -20,7 +20,7 @@ msgid "" msgstr "" "Project-Id-Version: WeeChat\n" "Report-Msgid-Bugs-To: flashcode@flashtux.org\n" -"POT-Creation-Date: 2014-04-12 09:29+0200\n" +"POT-Creation-Date: 2014-04-12 13:23+0200\n" "PO-Revision-Date: 2014-03-24 14:23+0100\n" "Last-Translator: Hasan Kiran \n" "Language-Team: weechat-dev \n" @@ -1254,6 +1254,7 @@ msgid "" " notify_none, notify_message, notify_private, notify_highlight,\n" " nick_xxx (xxx is nick in message), prefix_nick_ccc (ccc is color of " "nick),\n" +" host_xxx (xxx is username + host in message),\n" " irc_xxx (xxx is command name or number, see /server raw or /debug tags),\n" " irc_numeric, irc_error, irc_action, irc_ctcp, irc_ctcp_reply, " "irc_smart_filter, away_info.\n" diff --git a/po/weechat.pot b/po/weechat.pot index e3eaea0c7..2fbeafd10 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: 2014-04-12 09:29+0200\n" +"POT-Creation-Date: 2014-04-12 13:23+0200\n" "PO-Revision-Date: 2013-02-14 18:20+0100\n" "Last-Translator: FULL NAME \n" "Language-Team: weechat-dev \n" @@ -1260,6 +1260,7 @@ msgid "" " notify_none, notify_message, notify_private, notify_highlight,\n" " nick_xxx (xxx is nick in message), prefix_nick_ccc (ccc is color of " "nick),\n" +" host_xxx (xxx is username + host in message),\n" " irc_xxx (xxx is command name or number, see /server raw or /debug tags),\n" " irc_numeric, irc_error, irc_action, irc_ctcp, irc_ctcp_reply, " "irc_smart_filter, away_info.\n" diff --git a/src/core/wee-command.c b/src/core/wee-command.c index 0aefdabbe..a0ad2bd28 100644 --- a/src/core/wee-command.c +++ b/src/core/wee-command.c @@ -7093,6 +7093,7 @@ command_init () " notify_none, notify_message, notify_private, notify_highlight,\n" " nick_xxx (xxx is nick in message), prefix_nick_ccc (ccc is color " "of nick),\n" + " host_xxx (xxx is username + host in message),\n" " irc_xxx (xxx is command name or number, see /server raw or /debug " "tags),\n" " irc_numeric, irc_error, irc_action, irc_ctcp, irc_ctcp_reply, "