diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/de/autogen/plugin_api/hdata.txt | 2 | ||||
-rw-r--r-- | doc/de/autogen/user/irc_options.txt | 5 | ||||
-rw-r--r-- | doc/de/weechat_faq.de.txt | 17 | ||||
-rw-r--r-- | doc/en/autogen/plugin_api/hdata.txt | 2 | ||||
-rw-r--r-- | doc/en/autogen/user/irc_options.txt | 5 | ||||
-rw-r--r-- | doc/en/weechat_faq.en.txt | 14 | ||||
-rw-r--r-- | doc/fr/autogen/plugin_api/hdata.txt | 2 | ||||
-rw-r--r-- | doc/fr/autogen/user/irc_options.txt | 5 | ||||
-rw-r--r-- | doc/fr/weechat_faq.fr.txt | 14 | ||||
-rw-r--r-- | doc/it/autogen/plugin_api/hdata.txt | 2 | ||||
-rw-r--r-- | doc/it/autogen/user/irc_options.txt | 5 | ||||
-rw-r--r-- | doc/it/weechat_faq.it.txt | 17 | ||||
-rw-r--r-- | doc/ja/autogen/plugin_api/hdata.txt | 2 | ||||
-rw-r--r-- | doc/ja/autogen/user/irc_options.txt | 5 | ||||
-rw-r--r-- | doc/ja/weechat_faq.ja.txt | 17 | ||||
-rw-r--r-- | doc/pl/weechat_faq.pl.txt | 17 |
16 files changed, 120 insertions, 11 deletions
diff --git a/doc/de/autogen/plugin_api/hdata.txt b/doc/de/autogen/plugin_api/hdata.txt index 0727d104f..69140d35e 100644 --- a/doc/de/autogen/plugin_api/hdata.txt +++ b/doc/de/autogen/plugin_api/hdata.txt @@ -27,7 +27,7 @@ 'modes' (string) + 'limit' (integer) + 'key' (string) + - 'names_received' (integer) + + 'join_msg_received' (hashtable) + 'checking_away' (integer) + 'away_message' (string) + 'has_quit_server' (integer) + diff --git a/doc/de/autogen/user/irc_options.txt b/doc/de/autogen/user/irc_options.txt index 2515c1a5d..90c661a32 100644 --- a/doc/de/autogen/user/irc_options.txt +++ b/doc/de/autogen/user/irc_options.txt @@ -143,6 +143,11 @@ ** Typ: boolesch ** Werte: on, off (Standardwert: `on`) +* [[option_irc.look.display_join_message]] *irc.look.display_join_message* +** Beschreibung: `comma-separated list of messages to display after joining a channel: 329 = channel creation date, 332 = topic, 333 = nick/date for topic, 366 = names on channel` +** Typ: Zeichenkette +** Werte: beliebige Zeichenkette (Standardwert: `"329,332,333,366"`) + * [[option_irc.look.display_old_topic]] *irc.look.display_old_topic* ** Beschreibung: `Zeige das alte Thema an, falls das Thema des Channels geändert wurde` ** Typ: boolesch diff --git a/doc/de/weechat_faq.de.txt b/doc/de/weechat_faq.de.txt index 4ff4949e5..d4e0dc7ec 100644 --- a/doc/de/weechat_faq.de.txt +++ b/doc/de/weechat_faq.de.txt @@ -609,7 +609,22 @@ Für weitere Hilfe: `/help filter` und `/help irc.look.smart_filter` Wie kann ich Nachrichten filtern wenn ich einen IRC Channel betrete? ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -Es folgen einige Tags die man zum filtern von Nachrichten nutzen kann: +// TRANSLATION MISSING +With WeeChat ≥ 0.4.1, you can disable some messages with option +'irc.look.display_join_message'. + +// TRANSLATION MISSING +For example, to disable names (which is IRC message '366'): + +---------------------------------------- +/set irc.look.display_join_message "329,332,333" +---------------------------------------- + +[NOTE] +For help: `/help irc.look.display_join_message` + +// TRANSLATION MISSING +Another solution is to filter messages on tag: * 'irc_366': Auflistung der Namen die sich im Channel befinden * 'irc_332,irc_333': Channel Topic/Datum diff --git a/doc/en/autogen/plugin_api/hdata.txt b/doc/en/autogen/plugin_api/hdata.txt index e3f6d018e..bd48a5e19 100644 --- a/doc/en/autogen/plugin_api/hdata.txt +++ b/doc/en/autogen/plugin_api/hdata.txt @@ -27,7 +27,7 @@ 'modes' (string) + 'limit' (integer) + 'key' (string) + - 'names_received' (integer) + + 'join_msg_received' (hashtable) + 'checking_away' (integer) + 'away_message' (string) + 'has_quit_server' (integer) + diff --git a/doc/en/autogen/user/irc_options.txt b/doc/en/autogen/user/irc_options.txt index 22db79c64..a22851b15 100644 --- a/doc/en/autogen/user/irc_options.txt +++ b/doc/en/autogen/user/irc_options.txt @@ -143,6 +143,11 @@ ** type: boolean ** values: on, off (default value: `on`) +* [[option_irc.look.display_join_message]] *irc.look.display_join_message* +** description: `comma-separated list of messages to display after joining a channel: 329 = channel creation date, 332 = topic, 333 = nick/date for topic, 366 = names on channel` +** type: string +** values: any string (default value: `"329,332,333,366"`) + * [[option_irc.look.display_old_topic]] *irc.look.display_old_topic* ** description: `display old topic when channel topic is changed` ** type: boolean diff --git a/doc/en/weechat_faq.en.txt b/doc/en/weechat_faq.en.txt index 26a094a87..0553a358b 100644 --- a/doc/en/weechat_faq.en.txt +++ b/doc/en/weechat_faq.en.txt @@ -579,7 +579,19 @@ For help: `/help filter` and `/help irc.look.smart_filter` How can I filter some messages displayed when I join an IRC channel? ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -Some tags you can use to filter messages: +With WeeChat ≥ 0.4.1, you can disable some messages with option +'irc.look.display_join_message'. + +For example, to disable names (which is IRC message '366'): + +---------------------------------------- +/set irc.look.display_join_message "329,332,333" +---------------------------------------- + +[NOTE] +For help: `/help irc.look.display_join_message` + +Another solution is to filter messages on tag: * 'irc_366': names on channel * 'irc_332,irc_333': channel topic/date diff --git a/doc/fr/autogen/plugin_api/hdata.txt b/doc/fr/autogen/plugin_api/hdata.txt index 14de5d359..c3a14860d 100644 --- a/doc/fr/autogen/plugin_api/hdata.txt +++ b/doc/fr/autogen/plugin_api/hdata.txt @@ -27,7 +27,7 @@ 'modes' (string) + 'limit' (integer) + 'key' (string) + - 'names_received' (integer) + + 'join_msg_received' (hashtable) + 'checking_away' (integer) + 'away_message' (string) + 'has_quit_server' (integer) + diff --git a/doc/fr/autogen/user/irc_options.txt b/doc/fr/autogen/user/irc_options.txt index f00b7bba0..d5489b27f 100644 --- a/doc/fr/autogen/user/irc_options.txt +++ b/doc/fr/autogen/user/irc_options.txt @@ -143,6 +143,11 @@ ** type: booléen ** valeurs: on, off (valeur par défaut: `on`) +* [[option_irc.look.display_join_message]] *irc.look.display_join_message* +** description: `liste de messages (séparés par des virgules) à afficher après avoir rejoint un canal: 329 = date de création du canal, 332 = titre, 333 = pseudo/date pour le titre, 366 = noms sur le canal` +** type: chaîne +** valeurs: toute chaîne (valeur par défaut: `"329,332,333,366"`) + * [[option_irc.look.display_old_topic]] *irc.look.display_old_topic* ** description: `afficher l'ancien titre lorsque le titre du canal est changé` ** type: booléen diff --git a/doc/fr/weechat_faq.fr.txt b/doc/fr/weechat_faq.fr.txt index ababbe88b..600faa9fe 100644 --- a/doc/fr/weechat_faq.fr.txt +++ b/doc/fr/weechat_faq.fr.txt @@ -605,7 +605,19 @@ Pour l'aide : `/help filter` et `/help irc.look.smart_filter` Comment puis-je filtrer certains messages affichés quand je rejoins un canal IRC ? ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -Quelques étiquettes que vous pouvez utiliser pour filtrer des messages : +Avec WeeChat ≥ 0.4.1, vous pouvez désactiver des messages avec l'option +'irc.look.display_join_message'. + +Par exemple, pour désactiver les noms (qui est le message IRC '366') : + +---------------------------------------- +/set irc.look.display_join_message "329,332,333" +---------------------------------------- + +[NOTE] +Pour l'aide : `/help irc.look.display_join_message` + +Une autre solution est de filtrer les messages par l'étiquette : * 'irc_366' : noms sur le canal * 'irc_332,irc_333' : titre/date du canal diff --git a/doc/it/autogen/plugin_api/hdata.txt b/doc/it/autogen/plugin_api/hdata.txt index 4e2d2b514..ab1c212f4 100644 --- a/doc/it/autogen/plugin_api/hdata.txt +++ b/doc/it/autogen/plugin_api/hdata.txt @@ -27,7 +27,7 @@ 'modes' (string) + 'limit' (integer) + 'key' (string) + - 'names_received' (integer) + + 'join_msg_received' (hashtable) + 'checking_away' (integer) + 'away_message' (string) + 'has_quit_server' (integer) + diff --git a/doc/it/autogen/user/irc_options.txt b/doc/it/autogen/user/irc_options.txt index a85e1529b..65033e631 100644 --- a/doc/it/autogen/user/irc_options.txt +++ b/doc/it/autogen/user/irc_options.txt @@ -143,6 +143,11 @@ ** tipo: bool ** valori: on, off (valore predefinito: `on`) +* [[option_irc.look.display_join_message]] *irc.look.display_join_message* +** descrizione: `comma-separated list of messages to display after joining a channel: 329 = channel creation date, 332 = topic, 333 = nick/date for topic, 366 = names on channel` +** tipo: stringa +** valori: qualsiasi stringa (valore predefinito: `"329,332,333,366"`) + * [[option_irc.look.display_old_topic]] *irc.look.display_old_topic* ** descrizione: `visualizza l'argomento del canale precedente quando viene cambiato` ** tipo: bool diff --git a/doc/it/weechat_faq.it.txt b/doc/it/weechat_faq.it.txt index 7714d484c..fb5e67588 100644 --- a/doc/it/weechat_faq.it.txt +++ b/doc/it/weechat_faq.it.txt @@ -600,7 +600,22 @@ Per aiuto: `/help filter` e `/help irc.look.smart_filter` Come posso filtrare i messaggi visualizzati all'ingresso su un canale IRC? ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -Ecco alcuni tag da poter utilizzare per filtrare i messaggi: +// TRANSLATION MISSING +With WeeChat ≥ 0.4.1, you can disable some messages with option +'irc.look.display_join_message'. + +// TRANSLATION MISSING +For example, to disable names (which is IRC message '366'): + +---------------------------------------- +/set irc.look.display_join_message "329,332,333" +---------------------------------------- + +[NOTE] +For help: `/help irc.look.display_join_message` + +// TRANSLATION MISSING +Another solution is to filter messages on tag: * 'irc_366': nomi sui canali * 'irc_332,irc_333': topic/data del canale diff --git a/doc/ja/autogen/plugin_api/hdata.txt b/doc/ja/autogen/plugin_api/hdata.txt index 390b683d2..d4ddf64aa 100644 --- a/doc/ja/autogen/plugin_api/hdata.txt +++ b/doc/ja/autogen/plugin_api/hdata.txt @@ -27,7 +27,7 @@ 'modes' (string) + 'limit' (integer) + 'key' (string) + - 'names_received' (integer) + + 'join_msg_received' (hashtable) + 'checking_away' (integer) + 'away_message' (string) + 'has_quit_server' (integer) + diff --git a/doc/ja/autogen/user/irc_options.txt b/doc/ja/autogen/user/irc_options.txt index 6a52b7532..d4e01eb13 100644 --- a/doc/ja/autogen/user/irc_options.txt +++ b/doc/ja/autogen/user/irc_options.txt @@ -143,6 +143,11 @@ ** タイプ: ブール ** 値: on, off (デフォルト値: `on`) +* [[option_irc.look.display_join_message]] *irc.look.display_join_message* +** 説明: `comma-separated list of messages to display after joining a channel: 329 = channel creation date, 332 = topic, 333 = nick/date for topic, 366 = names on channel` +** タイプ: 文字列 +** 値: 未制約文字列 (デフォルト値: `"329,332,333,366"`) + * [[option_irc.look.display_old_topic]] *irc.look.display_old_topic* ** 説明: `チャンネルトピックが変更された場合に、古いトピックを表示` ** タイプ: ブール diff --git a/doc/ja/weechat_faq.ja.txt b/doc/ja/weechat_faq.ja.txt index 4184de2c0..093b0dc78 100644 --- a/doc/ja/weechat_faq.ja.txt +++ b/doc/ja/weechat_faq.ja.txt @@ -539,7 +539,22 @@ of channels): [[filter_irc_join_channel_messages]] === どうすれば IRC チャンネルに参加した際に表示される一部のメッセージをフィルタできますか。 === -メッセージをフィルタするためにいくつかのタグが使えます: +// TRANSLATION MISSING +With WeeChat ≥ 0.4.1, you can disable some messages with option +'irc.look.display_join_message'. + +// TRANSLATION MISSING +For example, to disable names (which is IRC message '366'): + +---------------------------------------- +/set irc.look.display_join_message "329,332,333" +---------------------------------------- + +[NOTE] +For help: `/help irc.look.display_join_message` + +// TRANSLATION MISSING +Another solution is to filter messages on tag: * 'irc_366': チャンネルにいるユーザの名前 * 'irc_332,irc_333': チャンネルのトピック/日時 diff --git a/doc/pl/weechat_faq.pl.txt b/doc/pl/weechat_faq.pl.txt index b747dc642..3d936c592 100644 --- a/doc/pl/weechat_faq.pl.txt +++ b/doc/pl/weechat_faq.pl.txt @@ -583,7 +583,22 @@ Więcej informacji: `/help filter` i `/help irc.look.smart_filter` Jak mogę filtrować wyświetlane wiadomości podczas wejścia na kanał IRC? ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -Tagi, które można użyć do filtrowania wiadomości: +// TRANSLATION MISSING +With WeeChat ≥ 0.4.1, you can disable some messages with option +'irc.look.display_join_message'. + +// TRANSLATION MISSING +For example, to disable names (which is IRC message '366'): + +---------------------------------------- +/set irc.look.display_join_message "329,332,333" +---------------------------------------- + +[NOTE] +For help: `/help irc.look.display_join_message` + +// TRANSLATION MISSING +Another solution is to filter messages on tag: * 'irc_366': osoby na kanale * 'irc_332,irc_333': temat/data kanału |