diff options
37 files changed, 856 insertions, 114 deletions
diff --git a/doc/de/includes/autogen_api_hdata.de.adoc b/doc/de/includes/autogen_api_hdata.de.adoc index 9a6365bce..909b2e932 100644 --- a/doc/de/includes/autogen_api_hdata.de.adoc +++ b/doc/de/includes/autogen_api_hdata.de.adoc @@ -79,6 +79,8 @@ _last_nick_speaking_time_ (pointer, hdata: "irc_channel_speaking") + _modelists_ (pointer, hdata: "irc_modelist") + _last_modelist_ (pointer, hdata: "irc_modelist") + _join_smart_filtered_ (hashtable) + +_typing_state_ (integer) + +_typing_status_sent_ (time) + _buffer_ (pointer, hdata: "buffer") + _buffer_as_string_ (string) + _prev_channel_ (pointer, hdata: "irc_channel") + diff --git a/doc/de/includes/autogen_api_plugins_priority.de.adoc b/doc/de/includes/autogen_api_plugins_priority.de.adoc index e55f70fdf..daccda73c 100644 --- a/doc/de/includes/autogen_api_plugins_priority.de.adoc +++ b/doc/de/includes/autogen_api_plugins_priority.de.adoc @@ -4,14 +4,15 @@ // // tag::plugins_priority[] -. charset (15000) -. logger (14000) -. exec (13000) -. trigger (12000) -. spell (11000) -. alias (10000) -. buflist (9000) -. fifo (8000) +. charset (16000) +. logger (15000) +. exec (14000) +. trigger (13000) +. spell (12000) +. alias (11000) +. buflist (10000) +. fifo (9000) +. typing (8000) . xfer (7000) . irc (6000) . relay (5000) diff --git a/doc/de/includes/autogen_user_options.de.adoc b/doc/de/includes/autogen_user_options.de.adoc index e65a5c865..1b6aa914a 100644 --- a/doc/de/includes/autogen_user_options.de.adoc +++ b/doc/de/includes/autogen_user_options.de.adoc @@ -1849,19 +1849,19 @@ * [[option_typing.look.delay_purge_paused]] *typing.look.delay_purge_paused* ** Beschreibung: pass:none[number of seconds after paused status has been set: if reached, the typing status is removed] ** Typ: integer -** Werte: 1 .. 3600 +** Werte: 1 .. 2147483647 ** Standardwert: `+30+` * [[option_typing.look.delay_purge_typing]] *typing.look.delay_purge_typing* ** Beschreibung: pass:none[number of seconds after typing status has been set: if reached, the typing status is removed] ** Typ: integer -** Werte: 1 .. 3600 +** Werte: 1 .. 2147483647 ** Standardwert: `+6+` * [[option_typing.look.delay_set_paused]] *typing.look.delay_set_paused* ** Beschreibung: pass:none[number of seconds after typing last char: if reached, the typing status becomes "paused" and no more typing signals are sent] ** Typ: integer -** Werte: 1 .. 3600 +** Werte: 1 .. 2147483647 ** Standardwert: `+10+` * [[option_typing.look.enabled_nicks]] *typing.look.enabled_nicks* @@ -1875,6 +1875,12 @@ ** Typ: boolesch ** Werte: on, off ** Standardwert: `+off+` + +* [[option_typing.look.item_max_length]] *typing.look.item_max_length* +** Beschreibung: pass:none[max number of chars displayed in the bar item "typing" (0 = do not truncate content)] +** Typ: integer +** Werte: 0 .. 2147483647 +** Standardwert: `+0+` // end::typing_options[] // tag::xfer_options[] @@ -2553,13 +2559,13 @@ ** Standardwert: `+off+` * [[option_irc.look.typing_status_nicks]] *irc.look.typing_status_nicks* -** Beschreibung: pass:none[display nicks typing on the channel in bar item "typing" (option typing.look.enabled must be enabled and capability "message-tags" must be enabled on the server)] +** Beschreibung: pass:none[display nicks typing on the channel in bar item "typing" (option typing.look.enabled_nicks must be enabled and capability "message-tags" must be enabled on the server)] ** Typ: boolesch ** Werte: on, off ** Standardwert: `+off+` * [[option_irc.look.typing_status_self]] *irc.look.typing_status_self* -** Beschreibung: pass:none[send self typing status to channels so that other users see when you are typing a message (option typing.look.enabled must be enabled and capability "message-tags" must be enabled on the server)] +** Beschreibung: pass:none[send self typing status to channels so that other users see when you are typing a message (option typing.look.enabled_self must be enabled and capability "message-tags" must be enabled on the server)] ** Typ: boolesch ** Werte: on, off ** Standardwert: `+off+` diff --git a/doc/en/includes/autogen_api_hdata.en.adoc b/doc/en/includes/autogen_api_hdata.en.adoc index ef70fdb71..99ce03d53 100644 --- a/doc/en/includes/autogen_api_hdata.en.adoc +++ b/doc/en/includes/autogen_api_hdata.en.adoc @@ -79,6 +79,8 @@ _last_nick_speaking_time_ (pointer, hdata: "irc_channel_speaking") + _modelists_ (pointer, hdata: "irc_modelist") + _last_modelist_ (pointer, hdata: "irc_modelist") + _join_smart_filtered_ (hashtable) + +_typing_state_ (integer) + +_typing_status_sent_ (time) + _buffer_ (pointer, hdata: "buffer") + _buffer_as_string_ (string) + _prev_channel_ (pointer, hdata: "irc_channel") + diff --git a/doc/en/includes/autogen_api_plugins_priority.en.adoc b/doc/en/includes/autogen_api_plugins_priority.en.adoc index e55f70fdf..daccda73c 100644 --- a/doc/en/includes/autogen_api_plugins_priority.en.adoc +++ b/doc/en/includes/autogen_api_plugins_priority.en.adoc @@ -4,14 +4,15 @@ // // tag::plugins_priority[] -. charset (15000) -. logger (14000) -. exec (13000) -. trigger (12000) -. spell (11000) -. alias (10000) -. buflist (9000) -. fifo (8000) +. charset (16000) +. logger (15000) +. exec (14000) +. trigger (13000) +. spell (12000) +. alias (11000) +. buflist (10000) +. fifo (9000) +. typing (8000) . xfer (7000) . irc (6000) . relay (5000) diff --git a/doc/en/includes/autogen_user_options.en.adoc b/doc/en/includes/autogen_user_options.en.adoc index 44595721d..20b0dac45 100644 --- a/doc/en/includes/autogen_user_options.en.adoc +++ b/doc/en/includes/autogen_user_options.en.adoc @@ -1849,19 +1849,19 @@ * [[option_typing.look.delay_purge_paused]] *typing.look.delay_purge_paused* ** description: pass:none[number of seconds after paused status has been set: if reached, the typing status is removed] ** type: integer -** values: 1 .. 3600 +** values: 1 .. 2147483647 ** default value: `+30+` * [[option_typing.look.delay_purge_typing]] *typing.look.delay_purge_typing* ** description: pass:none[number of seconds after typing status has been set: if reached, the typing status is removed] ** type: integer -** values: 1 .. 3600 +** values: 1 .. 2147483647 ** default value: `+6+` * [[option_typing.look.delay_set_paused]] *typing.look.delay_set_paused* ** description: pass:none[number of seconds after typing last char: if reached, the typing status becomes "paused" and no more typing signals are sent] ** type: integer -** values: 1 .. 3600 +** values: 1 .. 2147483647 ** default value: `+10+` * [[option_typing.look.enabled_nicks]] *typing.look.enabled_nicks* @@ -1875,6 +1875,12 @@ ** type: boolean ** values: on, off ** default value: `+off+` + +* [[option_typing.look.item_max_length]] *typing.look.item_max_length* +** description: pass:none[max number of chars displayed in the bar item "typing" (0 = do not truncate content)] +** type: integer +** values: 0 .. 2147483647 +** default value: `+0+` // end::typing_options[] // tag::xfer_options[] @@ -2553,13 +2559,13 @@ ** default value: `+off+` * [[option_irc.look.typing_status_nicks]] *irc.look.typing_status_nicks* -** description: pass:none[display nicks typing on the channel in bar item "typing" (option typing.look.enabled must be enabled and capability "message-tags" must be enabled on the server)] +** description: pass:none[display nicks typing on the channel in bar item "typing" (option typing.look.enabled_nicks must be enabled and capability "message-tags" must be enabled on the server)] ** type: boolean ** values: on, off ** default value: `+off+` * [[option_irc.look.typing_status_self]] *irc.look.typing_status_self* -** description: pass:none[send self typing status to channels so that other users see when you are typing a message (option typing.look.enabled must be enabled and capability "message-tags" must be enabled on the server)] +** description: pass:none[send self typing status to channels so that other users see when you are typing a message (option typing.look.enabled_self must be enabled and capability "message-tags" must be enabled on the server)] ** type: boolean ** values: on, off ** default value: `+off+` diff --git a/doc/fr/includes/autogen_api_hdata.fr.adoc b/doc/fr/includes/autogen_api_hdata.fr.adoc index 65ee42928..91a0354d1 100644 --- a/doc/fr/includes/autogen_api_hdata.fr.adoc +++ b/doc/fr/includes/autogen_api_hdata.fr.adoc @@ -79,6 +79,8 @@ _last_nick_speaking_time_ (pointer, hdata: "irc_channel_speaking") + _modelists_ (pointer, hdata: "irc_modelist") + _last_modelist_ (pointer, hdata: "irc_modelist") + _join_smart_filtered_ (hashtable) + +_typing_state_ (integer) + +_typing_status_sent_ (time) + _buffer_ (pointer, hdata: "buffer") + _buffer_as_string_ (string) + _prev_channel_ (pointer, hdata: "irc_channel") + diff --git a/doc/fr/includes/autogen_api_plugins_priority.fr.adoc b/doc/fr/includes/autogen_api_plugins_priority.fr.adoc index e55f70fdf..daccda73c 100644 --- a/doc/fr/includes/autogen_api_plugins_priority.fr.adoc +++ b/doc/fr/includes/autogen_api_plugins_priority.fr.adoc @@ -4,14 +4,15 @@ // // tag::plugins_priority[] -. charset (15000) -. logger (14000) -. exec (13000) -. trigger (12000) -. spell (11000) -. alias (10000) -. buflist (9000) -. fifo (8000) +. charset (16000) +. logger (15000) +. exec (14000) +. trigger (13000) +. spell (12000) +. alias (11000) +. buflist (10000) +. fifo (9000) +. typing (8000) . xfer (7000) . irc (6000) . relay (5000) diff --git a/doc/fr/includes/autogen_user_options.fr.adoc b/doc/fr/includes/autogen_user_options.fr.adoc index d89205520..ad754caaf 100644 --- a/doc/fr/includes/autogen_user_options.fr.adoc +++ b/doc/fr/includes/autogen_user_options.fr.adoc @@ -1847,34 +1847,40 @@ // tag::typing_options[] * [[option_typing.look.delay_purge_paused]] *typing.look.delay_purge_paused* -** description: pass:none[number of seconds after paused status has been set: if reached, the typing status is removed] +** description: pass:none[nombre de secondes après que le statut "paused" ait été défini : si atteint, le statut d'écriture est supprimé] ** type: entier -** valeurs: 1 .. 3600 +** valeurs: 1 .. 2147483647 ** valeur par défaut: `+30+` * [[option_typing.look.delay_purge_typing]] *typing.look.delay_purge_typing* -** description: pass:none[number of seconds after typing status has been set: if reached, the typing status is removed] +** description: pass:none[nombre de secondes après que le statut "typing" ait été défini : si atteint, le statut d'écriture est supprimé] ** type: entier -** valeurs: 1 .. 3600 +** valeurs: 1 .. 2147483647 ** valeur par défaut: `+6+` * [[option_typing.look.delay_set_paused]] *typing.look.delay_set_paused* -** description: pass:none[number of seconds after typing last char: if reached, the typing status becomes "paused" and no more typing signals are sent] +** description: pass:none[nombre de secondes après avoir tapé le dernier caractère : si atteint, le statut d'écriture devient "paused" et il n'y a plus de signaux typing envoyés] ** type: entier -** valeurs: 1 .. 3600 +** valeurs: 1 .. 2147483647 ** valeur par défaut: `+10+` * [[option_typing.look.enabled_nicks]] *typing.look.enabled_nicks* -** description: pass:none[typing enabled for other nicks (display typing info for nicks typing in the current buffer)] +** description: pass:none[activer le statut d'écriture pour les autres pseudos (afficher le statut d'écriture pour les autres pseudos écrivant un message dans le tampon courant)] ** type: booléen ** valeurs: on, off ** valeur par défaut: `+off+` * [[option_typing.look.enabled_self]] *typing.look.enabled_self* -** description: pass:none[typing enabled for self messages (send typing info to other users)] +** description: pass:none[activer le statut d'écriture pour ses propres messages (envoyer l'information aux autres utilisateurs)] ** type: booléen ** valeurs: on, off ** valeur par défaut: `+off+` + +* [[option_typing.look.item_max_length]] *typing.look.item_max_length* +** description: pass:none[nombre maximum de caractères affichés dans l'objet de barre "typing" (0 = ne pas tronquer le contenu)] +** type: entier +** valeurs: 0 .. 2147483647 +** valeur par défaut: `+0+` // end::typing_options[] // tag::xfer_options[] @@ -2553,13 +2559,13 @@ ** valeur par défaut: `+off+` * [[option_irc.look.typing_status_nicks]] *irc.look.typing_status_nicks* -** description: pass:none[display nicks typing on the channel in bar item "typing" (option typing.look.enabled must be enabled and capability "message-tags" must be enabled on the server)] +** description: pass:none[afficher les pseudos qui écrivent sur le canal dans l'objet de barre "typing" (l'option typing.look.enabled_nicks doit être activée et la capacité "message-tags" doit être activée sur le serveur)] ** type: booléen ** valeurs: on, off ** valeur par défaut: `+off+` * [[option_irc.look.typing_status_self]] *irc.look.typing_status_self* -** description: pass:none[send self typing status to channels so that other users see when you are typing a message (option typing.look.enabled must be enabled and capability "message-tags" must be enabled on the server)] +** description: pass:none[envoyer le statut d'écriture de message aux canaux de sorte que les autres utilisateurs voient quand vous écrivez un message (l'option typing.look.enabled_self doit être activée et la capacité "message-tags" doit être activée sur le serveur)] ** type: booléen ** valeurs: on, off ** valeur par défaut: `+off+` diff --git a/doc/it/includes/autogen_api_hdata.it.adoc b/doc/it/includes/autogen_api_hdata.it.adoc index 12956cbf5..ca47a01c3 100644 --- a/doc/it/includes/autogen_api_hdata.it.adoc +++ b/doc/it/includes/autogen_api_hdata.it.adoc @@ -79,6 +79,8 @@ _last_nick_speaking_time_ (pointer, hdata: "irc_channel_speaking") + _modelists_ (pointer, hdata: "irc_modelist") + _last_modelist_ (pointer, hdata: "irc_modelist") + _join_smart_filtered_ (hashtable) + +_typing_state_ (integer) + +_typing_status_sent_ (time) + _buffer_ (pointer, hdata: "buffer") + _buffer_as_string_ (string) + _prev_channel_ (pointer, hdata: "irc_channel") + diff --git a/doc/it/includes/autogen_api_plugins_priority.it.adoc b/doc/it/includes/autogen_api_plugins_priority.it.adoc index e55f70fdf..daccda73c 100644 --- a/doc/it/includes/autogen_api_plugins_priority.it.adoc +++ b/doc/it/includes/autogen_api_plugins_priority.it.adoc @@ -4,14 +4,15 @@ // // tag::plugins_priority[] -. charset (15000) -. logger (14000) -. exec (13000) -. trigger (12000) -. spell (11000) -. alias (10000) -. buflist (9000) -. fifo (8000) +. charset (16000) +. logger (15000) +. exec (14000) +. trigger (13000) +. spell (12000) +. alias (11000) +. buflist (10000) +. fifo (9000) +. typing (8000) . xfer (7000) . irc (6000) . relay (5000) diff --git a/doc/it/includes/autogen_user_options.it.adoc b/doc/it/includes/autogen_user_options.it.adoc index b16a84092..2092d980a 100644 --- a/doc/it/includes/autogen_user_options.it.adoc +++ b/doc/it/includes/autogen_user_options.it.adoc @@ -1849,19 +1849,19 @@ * [[option_typing.look.delay_purge_paused]] *typing.look.delay_purge_paused* ** descrizione: pass:none[number of seconds after paused status has been set: if reached, the typing status is removed] ** tipo: intero -** valori: 1 .. 3600 +** valori: 1 .. 2147483647 ** valore predefinito: `+30+` * [[option_typing.look.delay_purge_typing]] *typing.look.delay_purge_typing* ** descrizione: pass:none[number of seconds after typing status has been set: if reached, the typing status is removed] ** tipo: intero -** valori: 1 .. 3600 +** valori: 1 .. 2147483647 ** valore predefinito: `+6+` * [[option_typing.look.delay_set_paused]] *typing.look.delay_set_paused* ** descrizione: pass:none[number of seconds after typing last char: if reached, the typing status becomes "paused" and no more typing signals are sent] ** tipo: intero -** valori: 1 .. 3600 +** valori: 1 .. 2147483647 ** valore predefinito: `+10+` * [[option_typing.look.enabled_nicks]] *typing.look.enabled_nicks* @@ -1875,6 +1875,12 @@ ** tipo: bool ** valori: on, off ** valore predefinito: `+off+` + +* [[option_typing.look.item_max_length]] *typing.look.item_max_length* +** descrizione: pass:none[max number of chars displayed in the bar item "typing" (0 = do not truncate content)] +** tipo: intero +** valori: 0 .. 2147483647 +** valore predefinito: `+0+` // end::typing_options[] // tag::xfer_options[] @@ -2553,13 +2559,13 @@ ** valore predefinito: `+off+` * [[option_irc.look.typing_status_nicks]] *irc.look.typing_status_nicks* -** descrizione: pass:none[display nicks typing on the channel in bar item "typing" (option typing.look.enabled must be enabled and capability "message-tags" must be enabled on the server)] +** descrizione: pass:none[display nicks typing on the channel in bar item "typing" (option typing.look.enabled_nicks must be enabled and capability "message-tags" must be enabled on the server)] ** tipo: bool ** valori: on, off ** valore predefinito: `+off+` * [[option_irc.look.typing_status_self]] *irc.look.typing_status_self* -** descrizione: pass:none[send self typing status to channels so that other users see when you are typing a message (option typing.look.enabled must be enabled and capability "message-tags" must be enabled on the server)] +** descrizione: pass:none[send self typing status to channels so that other users see when you are typing a message (option typing.look.enabled_self must be enabled and capability "message-tags" must be enabled on the server)] ** tipo: bool ** valori: on, off ** valore predefinito: `+off+` diff --git a/doc/ja/includes/autogen_api_hdata.ja.adoc b/doc/ja/includes/autogen_api_hdata.ja.adoc index cedbc3acf..97e7cbb08 100644 --- a/doc/ja/includes/autogen_api_hdata.ja.adoc +++ b/doc/ja/includes/autogen_api_hdata.ja.adoc @@ -79,6 +79,8 @@ _last_nick_speaking_time_ (pointer, hdata: "irc_channel_speaking") + _modelists_ (pointer, hdata: "irc_modelist") + _last_modelist_ (pointer, hdata: "irc_modelist") + _join_smart_filtered_ (hashtable) + +_typing_state_ (integer) + +_typing_status_sent_ (time) + _buffer_ (pointer, hdata: "buffer") + _buffer_as_string_ (string) + _prev_channel_ (pointer, hdata: "irc_channel") + diff --git a/doc/ja/includes/autogen_api_plugins_priority.ja.adoc b/doc/ja/includes/autogen_api_plugins_priority.ja.adoc index e55f70fdf..daccda73c 100644 --- a/doc/ja/includes/autogen_api_plugins_priority.ja.adoc +++ b/doc/ja/includes/autogen_api_plugins_priority.ja.adoc @@ -4,14 +4,15 @@ // // tag::plugins_priority[] -. charset (15000) -. logger (14000) -. exec (13000) -. trigger (12000) -. spell (11000) -. alias (10000) -. buflist (9000) -. fifo (8000) +. charset (16000) +. logger (15000) +. exec (14000) +. trigger (13000) +. spell (12000) +. alias (11000) +. buflist (10000) +. fifo (9000) +. typing (8000) . xfer (7000) . irc (6000) . relay (5000) diff --git a/doc/ja/includes/autogen_user_options.ja.adoc b/doc/ja/includes/autogen_user_options.ja.adoc index 44ad2f5ff..633e10e60 100644 --- a/doc/ja/includes/autogen_user_options.ja.adoc +++ b/doc/ja/includes/autogen_user_options.ja.adoc @@ -1849,19 +1849,19 @@ * [[option_typing.look.delay_purge_paused]] *typing.look.delay_purge_paused* ** 説明: pass:none[number of seconds after paused status has been set: if reached, the typing status is removed] ** タイプ: 整数 -** 値: 1 .. 3600 +** 値: 1 .. 2147483647 ** デフォルト値: `+30+` * [[option_typing.look.delay_purge_typing]] *typing.look.delay_purge_typing* ** 説明: pass:none[number of seconds after typing status has been set: if reached, the typing status is removed] ** タイプ: 整数 -** 値: 1 .. 3600 +** 値: 1 .. 2147483647 ** デフォルト値: `+6+` * [[option_typing.look.delay_set_paused]] *typing.look.delay_set_paused* ** 説明: pass:none[number of seconds after typing last char: if reached, the typing status becomes "paused" and no more typing signals are sent] ** タイプ: 整数 -** 値: 1 .. 3600 +** 値: 1 .. 2147483647 ** デフォルト値: `+10+` * [[option_typing.look.enabled_nicks]] *typing.look.enabled_nicks* @@ -1875,6 +1875,12 @@ ** タイプ: ブール ** 値: on, off ** デフォルト値: `+off+` + +* [[option_typing.look.item_max_length]] *typing.look.item_max_length* +** 説明: pass:none[max number of chars displayed in the bar item "typing" (0 = do not truncate content)] +** タイプ: 整数 +** 値: 0 .. 2147483647 +** デフォルト値: `+0+` // end::typing_options[] // tag::xfer_options[] @@ -2553,13 +2559,13 @@ ** デフォルト値: `+off+` * [[option_irc.look.typing_status_nicks]] *irc.look.typing_status_nicks* -** 説明: pass:none[display nicks typing on the channel in bar item "typing" (option typing.look.enabled must be enabled and capability "message-tags" must be enabled on the server)] +** 説明: pass:none[display nicks typing on the channel in bar item "typing" (option typing.look.enabled_nicks must be enabled and capability "message-tags" must be enabled on the server)] ** タイプ: ブール ** 値: on, off ** デフォルト値: `+off+` * [[option_irc.look.typing_status_self]] *irc.look.typing_status_self* -** 説明: pass:none[send self typing status to channels so that other users see when you are typing a message (option typing.look.enabled must be enabled and capability "message-tags" must be enabled on the server)] +** 説明: pass:none[send self typing status to channels so that other users see when you are typing a message (option typing.look.enabled_self must be enabled and capability "message-tags" must be enabled on the server)] ** タイプ: ブール ** 値: on, off ** デフォルト値: `+off+` diff --git a/doc/pl/includes/autogen_api_hdata.pl.adoc b/doc/pl/includes/autogen_api_hdata.pl.adoc index e501770b2..a4e12f74d 100644 --- a/doc/pl/includes/autogen_api_hdata.pl.adoc +++ b/doc/pl/includes/autogen_api_hdata.pl.adoc @@ -79,6 +79,8 @@ _last_nick_speaking_time_ (pointer, hdata: "irc_channel_speaking") + _modelists_ (pointer, hdata: "irc_modelist") + _last_modelist_ (pointer, hdata: "irc_modelist") + _join_smart_filtered_ (hashtable) + +_typing_state_ (integer) + +_typing_status_sent_ (time) + _buffer_ (pointer, hdata: "buffer") + _buffer_as_string_ (string) + _prev_channel_ (pointer, hdata: "irc_channel") + diff --git a/doc/pl/includes/autogen_api_plugins_priority.pl.adoc b/doc/pl/includes/autogen_api_plugins_priority.pl.adoc index e55f70fdf..daccda73c 100644 --- a/doc/pl/includes/autogen_api_plugins_priority.pl.adoc +++ b/doc/pl/includes/autogen_api_plugins_priority.pl.adoc @@ -4,14 +4,15 @@ // // tag::plugins_priority[] -. charset (15000) -. logger (14000) -. exec (13000) -. trigger (12000) -. spell (11000) -. alias (10000) -. buflist (9000) -. fifo (8000) +. charset (16000) +. logger (15000) +. exec (14000) +. trigger (13000) +. spell (12000) +. alias (11000) +. buflist (10000) +. fifo (9000) +. typing (8000) . xfer (7000) . irc (6000) . relay (5000) diff --git a/doc/pl/includes/autogen_user_options.pl.adoc b/doc/pl/includes/autogen_user_options.pl.adoc index 7bf3a766b..316901426 100644 --- a/doc/pl/includes/autogen_user_options.pl.adoc +++ b/doc/pl/includes/autogen_user_options.pl.adoc @@ -1849,19 +1849,19 @@ * [[option_typing.look.delay_purge_paused]] *typing.look.delay_purge_paused* ** opis: pass:none[number of seconds after paused status has been set: if reached, the typing status is removed] ** typ: liczba -** wartości: 1 .. 3600 +** wartości: 1 .. 2147483647 ** domyślna wartość: `+30+` * [[option_typing.look.delay_purge_typing]] *typing.look.delay_purge_typing* ** opis: pass:none[number of seconds after typing status has been set: if reached, the typing status is removed] ** typ: liczba -** wartości: 1 .. 3600 +** wartości: 1 .. 2147483647 ** domyślna wartość: `+6+` * [[option_typing.look.delay_set_paused]] *typing.look.delay_set_paused* ** opis: pass:none[number of seconds after typing last char: if reached, the typing status becomes "paused" and no more typing signals are sent] ** typ: liczba -** wartości: 1 .. 3600 +** wartości: 1 .. 2147483647 ** domyślna wartość: `+10+` * [[option_typing.look.enabled_nicks]] *typing.look.enabled_nicks* @@ -1875,6 +1875,12 @@ ** typ: bool ** wartości: on, off ** domyślna wartość: `+off+` + +* [[option_typing.look.item_max_length]] *typing.look.item_max_length* +** opis: pass:none[max number of chars displayed in the bar item "typing" (0 = do not truncate content)] +** typ: liczba +** wartości: 0 .. 2147483647 +** domyślna wartość: `+0+` // end::typing_options[] // tag::xfer_options[] @@ -2553,13 +2559,13 @@ ** domyślna wartość: `+off+` * [[option_irc.look.typing_status_nicks]] *irc.look.typing_status_nicks* -** opis: pass:none[display nicks typing on the channel in bar item "typing" (option typing.look.enabled must be enabled and capability "message-tags" must be enabled on the server)] +** opis: pass:none[display nicks typing on the channel in bar item "typing" (option typing.look.enabled_nicks must be enabled and capability "message-tags" must be enabled on the server)] ** typ: bool ** wartości: on, off ** domyślna wartość: `+off+` * [[option_irc.look.typing_status_self]] *irc.look.typing_status_self* -** opis: pass:none[send self typing status to channels so that other users see when you are typing a message (option typing.look.enabled must be enabled and capability "message-tags" must be enabled on the server)] +** opis: pass:none[send self typing status to channels so that other users see when you are typing a message (option typing.look.enabled_self must be enabled and capability "message-tags" must be enabled on the server)] ** typ: bool ** wartości: on, off ** domyślna wartość: `+off+` diff --git a/doc/sr/includes/autogen_api_hdata.sr.adoc b/doc/sr/includes/autogen_api_hdata.sr.adoc index 1e5a15a43..891ebd01c 100644 --- a/doc/sr/includes/autogen_api_hdata.sr.adoc +++ b/doc/sr/includes/autogen_api_hdata.sr.adoc @@ -79,6 +79,8 @@ _last_nick_speaking_time_ (pointer, hdata: "irc_channel_speaking") + _modelists_ (pointer, hdata: "irc_modelist") + _last_modelist_ (pointer, hdata: "irc_modelist") + _join_smart_filtered_ (hashtable) + +_typing_state_ (integer) + +_typing_status_sent_ (time) + _buffer_ (pointer, hdata: "buffer") + _buffer_as_string_ (string) + _prev_channel_ (pointer, hdata: "irc_channel") + diff --git a/doc/sr/includes/autogen_api_plugins_priority.sr.adoc b/doc/sr/includes/autogen_api_plugins_priority.sr.adoc index e55f70fdf..daccda73c 100644 --- a/doc/sr/includes/autogen_api_plugins_priority.sr.adoc +++ b/doc/sr/includes/autogen_api_plugins_priority.sr.adoc @@ -4,14 +4,15 @@ // // tag::plugins_priority[] -. charset (15000) -. logger (14000) -. exec (13000) -. trigger (12000) -. spell (11000) -. alias (10000) -. buflist (9000) -. fifo (8000) +. charset (16000) +. logger (15000) +. exec (14000) +. trigger (13000) +. spell (12000) +. alias (11000) +. buflist (10000) +. fifo (9000) +. typing (8000) . xfer (7000) . irc (6000) . relay (5000) diff --git a/doc/sr/includes/autogen_user_options.sr.adoc b/doc/sr/includes/autogen_user_options.sr.adoc index 78fc587c7..eb6a095f3 100644 --- a/doc/sr/includes/autogen_user_options.sr.adoc +++ b/doc/sr/includes/autogen_user_options.sr.adoc @@ -1849,19 +1849,19 @@ * [[option_typing.look.delay_purge_paused]] *typing.look.delay_purge_paused* ** опис: pass:none[number of seconds after paused status has been set: if reached, the typing status is removed] ** тип: целобројна -** вредности: 1 .. 3600 +** вредности: 1 .. 2147483647 ** подразумевана вредност: `+30+` * [[option_typing.look.delay_purge_typing]] *typing.look.delay_purge_typing* ** опис: pass:none[number of seconds after typing status has been set: if reached, the typing status is removed] ** тип: целобројна -** вредности: 1 .. 3600 +** вредности: 1 .. 2147483647 ** подразумевана вредност: `+6+` * [[option_typing.look.delay_set_paused]] *typing.look.delay_set_paused* ** опис: pass:none[number of seconds after typing last char: if reached, the typing status becomes "paused" and no more typing signals are sent] ** тип: целобројна -** вредности: 1 .. 3600 +** вредности: 1 .. 2147483647 ** подразумевана вредност: `+10+` * [[option_typing.look.enabled_nicks]] *typing.look.enabled_nicks* @@ -1875,6 +1875,12 @@ ** тип: логичка ** вредности: on, off ** подразумевана вредност: `+off+` + +* [[option_typing.look.item_max_length]] *typing.look.item_max_length* +** опис: pass:none[max number of chars displayed in the bar item "typing" (0 = do not truncate content)] +** тип: целобројна +** вредности: 0 .. 2147483647 +** подразумевана вредност: `+0+` // end::typing_options[] // tag::xfer_options[] @@ -2553,13 +2559,13 @@ ** подразумевана вредност: `+off+` * [[option_irc.look.typing_status_nicks]] *irc.look.typing_status_nicks* -** опис: pass:none[display nicks typing on the channel in bar item "typing" (option typing.look.enabled must be enabled and capability "message-tags" must be enabled on the server)] +** опис: pass:none[display nicks typing on the channel in bar item "typing" (option typing.look.enabled_nicks must be enabled and capability "message-tags" must be enabled on the server)] ** тип: логичка ** вредности: on, off ** подразумевана вредност: `+off+` * [[option_irc.look.typing_status_self]] *irc.look.typing_status_self* -** опис: pass:none[send self typing status to channels so that other users see when you are typing a message (option typing.look.enabled must be enabled and capability "message-tags" must be enabled on the server)] +** опис: pass:none[send self typing status to channels so that other users see when you are typing a message (option typing.look.enabled_self must be enabled and capability "message-tags" must be enabled on the server)] ** тип: логичка ** вредности: on, off ** подразумевана вредност: `+off+` @@ -21,7 +21,7 @@ msgid "" msgstr "" "Project-Id-Version: WeeChat\n" "Report-Msgid-Bugs-To: flashcode@flashtux.org\n" -"POT-Creation-Date: 2021-06-27 10:33+0200\n" +"POT-Creation-Date: 2021-07-04 13:35+0200\n" "PO-Revision-Date: 2021-05-25 18:28+0200\n" "Last-Translator: Ondřej Súkup <mimi.vx@gmail.com>\n" "Language-Team: weechat-dev <weechat-dev@nongnu.org>\n" @@ -8623,6 +8623,18 @@ msgstr "" "(zprávy budou zobrazeny při otevření bufferu s čistými daty)" msgid "" +"display nicks typing on the channel in bar item \"typing\" (option typing." +"look.enabled_nicks must be enabled and capability \"message-tags\" must be " +"enabled on the server)" +msgstr "" + +msgid "" +"send self typing status to channels so that other users see when you are " +"typing a message (option typing.look.enabled_self must be enabled and " +"capability \"message-tags\" must be enabled on the server)" +msgstr "" + +msgid "" "merge server buffers; this option has no effect if a layout is saved and is " "conflicting with this value (see /help layout)" msgstr "" @@ -12806,6 +12818,41 @@ msgstr "získat jméno barvy přezdívky" msgid "text color for disabled trigger name" msgstr "barva textu pro aktuální jméno bufferu ve stavovém řádku" +msgid "Typing status of users" +msgstr "" + +#. TRANSLATORS: this text is displayed before the list of nicks typing in the bar item "typing", it must be as short as possible +msgid "Typing: " +msgstr "" + +msgid "" +"number of seconds after paused status has been set: if reached, the typing " +"status is removed" +msgstr "" + +msgid "" +"number of seconds after typing status has been set: if reached, the typing " +"status is removed" +msgstr "" + +msgid "" +"number of seconds after typing last char: if reached, the typing status " +"becomes \"paused\" and no more typing signals are sent" +msgstr "" + +msgid "" +"typing enabled for other nicks (display typing info for nicks typing in the " +"current buffer)" +msgstr "" + +msgid "typing enabled for self messages (send typing info to other users)" +msgstr "" + +msgid "" +"max number of chars displayed in the bar item \"typing\" (0 = do not " +"truncate content)" +msgstr "" + msgid " [A] Accept" msgstr " [A] Akceptovat" @@ -24,7 +24,7 @@ msgid "" msgstr "" "Project-Id-Version: WeeChat\n" "Report-Msgid-Bugs-To: flashcode@flashtux.org\n" -"POT-Creation-Date: 2021-06-27 10:33+0200\n" +"POT-Creation-Date: 2021-07-04 13:35+0200\n" "PO-Revision-Date: 2021-06-28 08:57+0200\n" "Last-Translator: Nils Görs <weechatter@arcor.de>\n" "Language-Team: German <kde-i18n-de@kde.org>\n" @@ -10650,6 +10650,18 @@ msgstr "" "angezeigt sobald der RAW-Daten-Buffer geöffnet wird)" msgid "" +"display nicks typing on the channel in bar item \"typing\" (option typing." +"look.enabled_nicks must be enabled and capability \"message-tags\" must be " +"enabled on the server)" +msgstr "" + +msgid "" +"send self typing status to channels so that other users see when you are " +"typing a message (option typing.look.enabled_self must be enabled and " +"capability \"message-tags\" must be enabled on the server)" +msgstr "" + +msgid "" "merge server buffers; this option has no effect if a layout is saved and is " "conflicting with this value (see /help layout)" msgstr "" @@ -15348,6 +15360,41 @@ msgstr "Textfarbe für den Namen des Triggers" msgid "text color for disabled trigger name" msgstr "Textfarbe für den Namen des Triggers, wenn dieser deaktiviert ist" +msgid "Typing status of users" +msgstr "" + +#. TRANSLATORS: this text is displayed before the list of nicks typing in the bar item "typing", it must be as short as possible +msgid "Typing: " +msgstr "" + +msgid "" +"number of seconds after paused status has been set: if reached, the typing " +"status is removed" +msgstr "" + +msgid "" +"number of seconds after typing status has been set: if reached, the typing " +"status is removed" +msgstr "" + +msgid "" +"number of seconds after typing last char: if reached, the typing status " +"becomes \"paused\" and no more typing signals are sent" +msgstr "" + +msgid "" +"typing enabled for other nicks (display typing info for nicks typing in the " +"current buffer)" +msgstr "" + +msgid "typing enabled for self messages (send typing info to other users)" +msgstr "" + +msgid "" +"max number of chars displayed in the bar item \"typing\" (0 = do not " +"truncate content)" +msgstr "" + msgid " [A] Accept" msgstr " [A] annehmen" @@ -22,7 +22,7 @@ msgid "" msgstr "" "Project-Id-Version: WeeChat\n" "Report-Msgid-Bugs-To: flashcode@flashtux.org\n" -"POT-Creation-Date: 2021-06-27 10:33+0200\n" +"POT-Creation-Date: 2021-07-04 13:35+0200\n" "PO-Revision-Date: 2021-05-25 18:28+0200\n" "Last-Translator: Elián Hanisch <lambdae2@gmail.com>\n" "Language-Team: weechat-dev <weechat-dev@nongnu.org>\n" @@ -8894,6 +8894,18 @@ msgstr "" "bruto está cerrado (los mensajes serán mostrados cuando sea abra este buffer)" msgid "" +"display nicks typing on the channel in bar item \"typing\" (option typing." +"look.enabled_nicks must be enabled and capability \"message-tags\" must be " +"enabled on the server)" +msgstr "" + +msgid "" +"send self typing status to channels so that other users see when you are " +"typing a message (option typing.look.enabled_self must be enabled and " +"capability \"message-tags\" must be enabled on the server)" +msgstr "" + +msgid "" "merge server buffers; this option has no effect if a layout is saved and is " "conflicting with this value (see /help layout)" msgstr "" @@ -13061,6 +13073,41 @@ msgstr "color para los nombres de los servidores" msgid "text color for disabled trigger name" msgstr "color para los nombres de los servidores" +msgid "Typing status of users" +msgstr "" + +#. TRANSLATORS: this text is displayed before the list of nicks typing in the bar item "typing", it must be as short as possible +msgid "Typing: " +msgstr "" + +msgid "" +"number of seconds after paused status has been set: if reached, the typing " +"status is removed" +msgstr "" + +msgid "" +"number of seconds after typing status has been set: if reached, the typing " +"status is removed" +msgstr "" + +msgid "" +"number of seconds after typing last char: if reached, the typing status " +"becomes \"paused\" and no more typing signals are sent" +msgstr "" + +msgid "" +"typing enabled for other nicks (display typing info for nicks typing in the " +"current buffer)" +msgstr "" + +msgid "typing enabled for self messages (send typing info to other users)" +msgstr "" + +msgid "" +"max number of chars displayed in the bar item \"typing\" (0 = do not " +"truncate content)" +msgstr "" + msgid " [A] Accept" msgstr " [A] Aceptar" @@ -21,8 +21,8 @@ msgid "" msgstr "" "Project-Id-Version: WeeChat\n" "Report-Msgid-Bugs-To: flashcode@flashtux.org\n" -"POT-Creation-Date: 2021-06-27 10:33+0200\n" -"PO-Revision-Date: 2021-06-27 10:34+0200\n" +"POT-Creation-Date: 2021-07-04 13:35+0200\n" +"PO-Revision-Date: 2021-07-04 13:35+0200\n" "Last-Translator: Sébastien Helleu <flashcode@flashtux.org>\n" "Language-Team: weechat-dev <weechat-dev@nongnu.org>\n" "Language: fr\n" @@ -10441,6 +10441,25 @@ msgstr "" "du tampon des données brutes)" msgid "" +"display nicks typing on the channel in bar item \"typing\" (option typing." +"look.enabled_nicks must be enabled and capability \"message-tags\" must be " +"enabled on the server)" +msgstr "" +"afficher les pseudos qui écrivent sur le canal dans l'objet de barre \"typing" +"\" (l'option typing.look.enabled_nicks doit être activée et la capacité " +"\"message-tags\" doit être activée sur le serveur)" + +msgid "" +"send self typing status to channels so that other users see when you are " +"typing a message (option typing.look.enabled_self must be enabled and " +"capability \"message-tags\" must be enabled on the server)" +msgstr "" +"envoyer le statut d'écriture de message aux canaux de sorte que les autres " +"utilisateurs voient quand vous écrivez un message (l'option typing.look." +"enabled_self doit être activée et la capacité \"message-tags\" doit être " +"activée sur le serveur)" + +msgid "" "merge server buffers; this option has no effect if a layout is saved and is " "conflicting with this value (see /help layout)" msgstr "" @@ -15044,6 +15063,55 @@ msgstr "couleur du texte pour le nom du trigger" msgid "text color for disabled trigger name" msgstr "couleur du texte pour le nom du trigger désactivé" +msgid "Typing status of users" +msgstr "Statut d'écriture des utilisateurs" + +#. TRANSLATORS: this text is displayed before the list of nicks typing in the bar item "typing", it must be as short as possible +msgid "Typing: " +msgstr "Écrit : " + +msgid "" +"number of seconds after paused status has been set: if reached, the typing " +"status is removed" +msgstr "" +"nombre de secondes après que le statut \"paused\" ait été défini : si " +"atteint, le statut d'écriture est supprimé" + +msgid "" +"number of seconds after typing status has been set: if reached, the typing " +"status is removed" +msgstr "" +"nombre de secondes après que le statut \"typing\" ait été défini : si " +"atteint, le statut d'écriture est supprimé" + +msgid "" +"number of seconds after typing last char: if reached, the typing status " +"becomes \"paused\" and no more typing signals are sent" +msgstr "" +"nombre de secondes après avoir tapé le dernier caractère : si atteint, le " +"statut d'écriture devient \"paused\" et il n'y a plus de signaux typing " +"envoyés" + +msgid "" +"typing enabled for other nicks (display typing info for nicks typing in the " +"current buffer)" +msgstr "" +"activer le statut d'écriture pour les autres pseudos (afficher le statut " +"d'écriture pour les autres pseudos écrivant un message dans le tampon " +"courant)" + +msgid "typing enabled for self messages (send typing info to other users)" +msgstr "" +"activer le statut d'écriture pour ses propres messages (envoyer " +"l'information aux autres utilisateurs)" + +msgid "" +"max number of chars displayed in the bar item \"typing\" (0 = do not " +"truncate content)" +msgstr "" +"nombre maximum de caractères affichés dans l'objet de barre \"typing\" (0 = " +"ne pas tronquer le contenu)" + msgid " [A] Accept" msgstr " [A] Accepter" @@ -20,7 +20,7 @@ msgid "" msgstr "" "Project-Id-Version: WeeChat\n" "Report-Msgid-Bugs-To: flashcode@flashtux.org\n" -"POT-Creation-Date: 2021-06-27 10:33+0200\n" +"POT-Creation-Date: 2021-07-04 13:35+0200\n" "PO-Revision-Date: 2021-05-25 18:28+0200\n" "Last-Translator: Andras Voroskoi <voroskoi@frugalware.org>\n" "Language-Team: weechat-dev <weechat-dev@nongnu.org>\n" @@ -8184,6 +8184,18 @@ msgid "" msgstr "" msgid "" +"display nicks typing on the channel in bar item \"typing\" (option typing." +"look.enabled_nicks must be enabled and capability \"message-tags\" must be " +"enabled on the server)" +msgstr "" + +msgid "" +"send self typing status to channels so that other users see when you are " +"typing a message (option typing.look.enabled_self must be enabled and " +"capability \"message-tags\" must be enabled on the server)" +msgstr "" + +msgid "" "merge server buffers; this option has no effect if a layout is saved and is " "conflicting with this value (see /help layout)" msgstr "" @@ -12226,6 +12238,41 @@ msgstr "szerver nevének színe" msgid "text color for disabled trigger name" msgstr "szerver nevének színe" +msgid "Typing status of users" +msgstr "" + +#. TRANSLATORS: this text is displayed before the list of nicks typing in the bar item "typing", it must be as short as possible +msgid "Typing: " +msgstr "" + +msgid "" +"number of seconds after paused status has been set: if reached, the typing " +"status is removed" +msgstr "" + +msgid "" +"number of seconds after typing status has been set: if reached, the typing " +"status is removed" +msgstr "" + +msgid "" +"number of seconds after typing last char: if reached, the typing status " +"becomes \"paused\" and no more typing signals are sent" +msgstr "" + +msgid "" +"typing enabled for other nicks (display typing info for nicks typing in the " +"current buffer)" +msgstr "" + +msgid "typing enabled for self messages (send typing info to other users)" +msgstr "" + +msgid "" +"max number of chars displayed in the bar item \"typing\" (0 = do not " +"truncate content)" +msgstr "" + msgid " [A] Accept" msgstr " [A] Elfogadás" @@ -20,7 +20,7 @@ msgid "" msgstr "" "Project-Id-Version: WeeChat\n" "Report-Msgid-Bugs-To: flashcode@flashtux.org\n" -"POT-Creation-Date: 2021-06-27 10:33+0200\n" +"POT-Creation-Date: 2021-07-04 13:35+0200\n" "PO-Revision-Date: 2021-05-25 18:28+0200\n" "Last-Translator: Esteban I. Ruiz Moreno <exio4.com@gmail.com>\n" "Language-Team: weechat-dev <weechat-dev@nongnu.org>\n" @@ -9049,6 +9049,18 @@ msgstr "" "dati raw)" msgid "" +"display nicks typing on the channel in bar item \"typing\" (option typing." +"look.enabled_nicks must be enabled and capability \"message-tags\" must be " +"enabled on the server)" +msgstr "" + +msgid "" +"send self typing status to channels so that other users see when you are " +"typing a message (option typing.look.enabled_self must be enabled and " +"capability \"message-tags\" must be enabled on the server)" +msgstr "" + +msgid "" "merge server buffers; this option has no effect if a layout is saved and is " "conflicting with this value (see /help layout)" msgstr "" @@ -13249,6 +13261,41 @@ msgstr "colore del testo per i nomi dei server" msgid "text color for disabled trigger name" msgstr "colore del testo per i nomi dei server" +msgid "Typing status of users" +msgstr "" + +#. TRANSLATORS: this text is displayed before the list of nicks typing in the bar item "typing", it must be as short as possible +msgid "Typing: " +msgstr "" + +msgid "" +"number of seconds after paused status has been set: if reached, the typing " +"status is removed" +msgstr "" + +msgid "" +"number of seconds after typing status has been set: if reached, the typing " +"status is removed" +msgstr "" + +msgid "" +"number of seconds after typing last char: if reached, the typing status " +"becomes \"paused\" and no more typing signals are sent" +msgstr "" + +msgid "" +"typing enabled for other nicks (display typing info for nicks typing in the " +"current buffer)" +msgstr "" + +msgid "typing enabled for self messages (send typing info to other users)" +msgstr "" + +msgid "" +"max number of chars displayed in the bar item \"typing\" (0 = do not " +"truncate content)" +msgstr "" + msgid " [A] Accept" msgstr " [A] Accetta" @@ -20,7 +20,7 @@ msgid "" msgstr "" "Project-Id-Version: WeeChat\n" "Report-Msgid-Bugs-To: flashcode@flashtux.org\n" -"POT-Creation-Date: 2021-06-27 10:33+0200\n" +"POT-Creation-Date: 2021-07-04 13:35+0200\n" "PO-Revision-Date: 2021-05-25 18:28+0200\n" "Last-Translator: AYANOKOUZI, Ryuunosuke <i38w7i3@yahoo.co.jp>\n" "Language-Team: Japanese <https://github.com/l/weechat/tree/master/" @@ -9960,6 +9960,18 @@ msgstr "" "バッファを開いたときに表示されるメッセージ)" msgid "" +"display nicks typing on the channel in bar item \"typing\" (option typing." +"look.enabled_nicks must be enabled and capability \"message-tags\" must be " +"enabled on the server)" +msgstr "" + +msgid "" +"send self typing status to channels so that other users see when you are " +"typing a message (option typing.look.enabled_self must be enabled and " +"capability \"message-tags\" must be enabled on the server)" +msgstr "" + +msgid "" "merge server buffers; this option has no effect if a layout is saved and is " "conflicting with this value (see /help layout)" msgstr "" @@ -14377,6 +14389,41 @@ msgstr "トリガ名に対するテキスト色" msgid "text color for disabled trigger name" msgstr "無効化されたトリガの名前に対するテキスト色" +msgid "Typing status of users" +msgstr "" + +#. TRANSLATORS: this text is displayed before the list of nicks typing in the bar item "typing", it must be as short as possible +msgid "Typing: " +msgstr "" + +msgid "" +"number of seconds after paused status has been set: if reached, the typing " +"status is removed" +msgstr "" + +msgid "" +"number of seconds after typing status has been set: if reached, the typing " +"status is removed" +msgstr "" + +msgid "" +"number of seconds after typing last char: if reached, the typing status " +"becomes \"paused\" and no more typing signals are sent" +msgstr "" + +msgid "" +"typing enabled for other nicks (display typing info for nicks typing in the " +"current buffer)" +msgstr "" + +msgid "typing enabled for self messages (send typing info to other users)" +msgstr "" + +msgid "" +"max number of chars displayed in the bar item \"typing\" (0 = do not " +"truncate content)" +msgstr "" + msgid " [A] Accept" msgstr " [A] 受け入れる" @@ -22,7 +22,7 @@ msgid "" msgstr "" "Project-Id-Version: WeeChat\n" "Report-Msgid-Bugs-To: flashcode@flashtux.org\n" -"POT-Creation-Date: 2021-06-27 10:33+0200\n" +"POT-Creation-Date: 2021-07-04 13:35+0200\n" "PO-Revision-Date: 2021-06-28 21:11+0200\n" "Last-Translator: Krzysztof Korościk <soltys@soltys.info>\n" "Language-Team: Polish <kde-i18n-doc@kde.org>\n" @@ -10203,6 +10203,18 @@ msgstr "" "otworzeniu dla nich bufora)" msgid "" +"display nicks typing on the channel in bar item \"typing\" (option typing." +"look.enabled_nicks must be enabled and capability \"message-tags\" must be " +"enabled on the server)" +msgstr "" + +msgid "" +"send self typing status to channels so that other users see when you are " +"typing a message (option typing.look.enabled_self must be enabled and " +"capability \"message-tags\" must be enabled on the server)" +msgstr "" + +msgid "" "merge server buffers; this option has no effect if a layout is saved and is " "conflicting with this value (see /help layout)" msgstr "" @@ -14709,6 +14721,41 @@ msgstr "kolor tekstu dla nazwy triggera" msgid "text color for disabled trigger name" msgstr "kolor tekstu dla nazwy wyłączonego triggera" +msgid "Typing status of users" +msgstr "" + +#. TRANSLATORS: this text is displayed before the list of nicks typing in the bar item "typing", it must be as short as possible +msgid "Typing: " +msgstr "" + +msgid "" +"number of seconds after paused status has been set: if reached, the typing " +"status is removed" +msgstr "" + +msgid "" +"number of seconds after typing status has been set: if reached, the typing " +"status is removed" +msgstr "" + +msgid "" +"number of seconds after typing last char: if reached, the typing status " +"becomes \"paused\" and no more typing signals are sent" +msgstr "" + +msgid "" +"typing enabled for other nicks (display typing info for nicks typing in the " +"current buffer)" +msgstr "" + +msgid "typing enabled for self messages (send typing info to other users)" +msgstr "" + +msgid "" +"max number of chars displayed in the bar item \"typing\" (0 = do not " +"truncate content)" +msgstr "" + msgid " [A] Accept" msgstr " [A] Akceptuj" @@ -20,7 +20,7 @@ msgid "" msgstr "" "Project-Id-Version: WeeChat\n" "Report-Msgid-Bugs-To: flashcode@flashtux.org\n" -"POT-Creation-Date: 2021-06-27 10:33+0200\n" +"POT-Creation-Date: 2021-07-04 13:35+0200\n" "PO-Revision-Date: 2021-05-25 18:28+0200\n" "Last-Translator: Vasco Almeida <vascomalmeida@sapo.pt>\n" "Language-Team: Portuguese <>\n" @@ -9767,6 +9767,18 @@ msgstr "" "com dados em bruto)" msgid "" +"display nicks typing on the channel in bar item \"typing\" (option typing." +"look.enabled_nicks must be enabled and capability \"message-tags\" must be " +"enabled on the server)" +msgstr "" + +msgid "" +"send self typing status to channels so that other users see when you are " +"typing a message (option typing.look.enabled_self must be enabled and " +"capability \"message-tags\" must be enabled on the server)" +msgstr "" + +msgid "" "merge server buffers; this option has no effect if a layout is saved and is " "conflicting with this value (see /help layout)" msgstr "" @@ -14218,6 +14230,41 @@ msgstr "cor do texto para o nome do acionador" msgid "text color for disabled trigger name" msgstr "cor do texto para o nome de acionador desativado" +msgid "Typing status of users" +msgstr "" + +#. TRANSLATORS: this text is displayed before the list of nicks typing in the bar item "typing", it must be as short as possible +msgid "Typing: " +msgstr "" + +msgid "" +"number of seconds after paused status has been set: if reached, the typing " +"status is removed" +msgstr "" + +msgid "" +"number of seconds after typing status has been set: if reached, the typing " +"status is removed" +msgstr "" + +msgid "" +"number of seconds after typing last char: if reached, the typing status " +"becomes \"paused\" and no more typing signals are sent" +msgstr "" + +msgid "" +"typing enabled for other nicks (display typing info for nicks typing in the " +"current buffer)" +msgstr "" + +msgid "typing enabled for self messages (send typing info to other users)" +msgstr "" + +msgid "" +"max number of chars displayed in the bar item \"typing\" (0 = do not " +"truncate content)" +msgstr "" + msgid " [A] Accept" msgstr " [A] Aceitar" diff --git a/po/pt_BR.po b/po/pt_BR.po index c2059129d..3d1b9e3be 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: 2021-06-27 10:33+0200\n" +"POT-Creation-Date: 2021-07-04 13:35+0200\n" "PO-Revision-Date: 2021-05-25 18:28+0200\n" "Last-Translator: Érico Nogueira <ericonr@disroot.org>\n" "Language-Team: weechat-dev <weechat-dev@nongnu.org>\n" @@ -8625,6 +8625,18 @@ msgid "" msgstr "" msgid "" +"display nicks typing on the channel in bar item \"typing\" (option typing." +"look.enabled_nicks must be enabled and capability \"message-tags\" must be " +"enabled on the server)" +msgstr "" + +msgid "" +"send self typing status to channels so that other users see when you are " +"typing a message (option typing.look.enabled_self must be enabled and " +"capability \"message-tags\" must be enabled on the server)" +msgstr "" + +msgid "" "merge server buffers; this option has no effect if a layout is saved and is " "conflicting with this value (see /help layout)" msgstr "" @@ -12715,6 +12727,41 @@ msgstr "cor do texto para nomes de servidor" msgid "text color for disabled trigger name" msgstr "cor do texto para nomes de servidor" +msgid "Typing status of users" +msgstr "" + +#. TRANSLATORS: this text is displayed before the list of nicks typing in the bar item "typing", it must be as short as possible +msgid "Typing: " +msgstr "" + +msgid "" +"number of seconds after paused status has been set: if reached, the typing " +"status is removed" +msgstr "" + +msgid "" +"number of seconds after typing status has been set: if reached, the typing " +"status is removed" +msgstr "" + +msgid "" +"number of seconds after typing last char: if reached, the typing status " +"becomes \"paused\" and no more typing signals are sent" +msgstr "" + +msgid "" +"typing enabled for other nicks (display typing info for nicks typing in the " +"current buffer)" +msgstr "" + +msgid "typing enabled for self messages (send typing info to other users)" +msgstr "" + +msgid "" +"max number of chars displayed in the bar item \"typing\" (0 = do not " +"truncate content)" +msgstr "" + msgid " [A] Accept" msgstr " [A] Aceitar" @@ -21,7 +21,7 @@ msgid "" msgstr "" "Project-Id-Version: WeeChat\n" "Report-Msgid-Bugs-To: flashcode@flashtux.org\n" -"POT-Creation-Date: 2021-06-27 10:33+0200\n" +"POT-Creation-Date: 2021-07-04 13:35+0200\n" "PO-Revision-Date: 2021-05-25 18:28+0200\n" "Last-Translator: Aleksey V Zapparov AKA ixti <ixti@member.fsf.org>\n" "Language-Team: weechat-dev <weechat-dev@nongnu.org>\n" @@ -8217,6 +8217,18 @@ msgid "" msgstr "" msgid "" +"display nicks typing on the channel in bar item \"typing\" (option typing." +"look.enabled_nicks must be enabled and capability \"message-tags\" must be " +"enabled on the server)" +msgstr "" + +msgid "" +"send self typing status to channels so that other users see when you are " +"typing a message (option typing.look.enabled_self must be enabled and " +"capability \"message-tags\" must be enabled on the server)" +msgstr "" + +msgid "" "merge server buffers; this option has no effect if a layout is saved and is " "conflicting with this value (see /help layout)" msgstr "" @@ -12264,6 +12276,41 @@ msgstr "цвет названия сервера" msgid "text color for disabled trigger name" msgstr "цвет названия сервера" +msgid "Typing status of users" +msgstr "" + +#. TRANSLATORS: this text is displayed before the list of nicks typing in the bar item "typing", it must be as short as possible +msgid "Typing: " +msgstr "" + +msgid "" +"number of seconds after paused status has been set: if reached, the typing " +"status is removed" +msgstr "" + +msgid "" +"number of seconds after typing status has been set: if reached, the typing " +"status is removed" +msgstr "" + +msgid "" +"number of seconds after typing last char: if reached, the typing status " +"becomes \"paused\" and no more typing signals are sent" +msgstr "" + +msgid "" +"typing enabled for other nicks (display typing info for nicks typing in the " +"current buffer)" +msgstr "" + +msgid "typing enabled for self messages (send typing info to other users)" +msgstr "" + +msgid "" +"max number of chars displayed in the bar item \"typing\" (0 = do not " +"truncate content)" +msgstr "" + msgid " [A] Accept" msgstr " [A] Принять" @@ -20,7 +20,7 @@ msgid "" msgstr "" "Project-Id-Version: WeeChat\n" "Report-Msgid-Bugs-To: flashcode@flashtux.org\n" -"POT-Creation-Date: 2021-06-27 10:33+0200\n" +"POT-Creation-Date: 2021-07-04 13:35+0200\n" "PO-Revision-Date: 2021-06-03 15:15+0400\n" "Last-Translator: Ivan Pešić <ivan.pesic@gmail.com>\n" "Language-Team: weechat-dev <weechat-dev@nongnu.org>\n" @@ -10178,6 +10178,18 @@ msgstr "" "података)" msgid "" +"display nicks typing on the channel in bar item \"typing\" (option typing." +"look.enabled_nicks must be enabled and capability \"message-tags\" must be " +"enabled on the server)" +msgstr "" + +msgid "" +"send self typing status to channels so that other users see when you are " +"typing a message (option typing.look.enabled_self must be enabled and " +"capability \"message-tags\" must be enabled on the server)" +msgstr "" + +msgid "" "merge server buffers; this option has no effect if a layout is saved and is " "conflicting with this value (see /help layout)" msgstr "" @@ -14680,6 +14692,41 @@ msgstr "боја текста за име окидача" msgid "text color for disabled trigger name" msgstr "боја текста за име искљученог окидача" +msgid "Typing status of users" +msgstr "" + +#. TRANSLATORS: this text is displayed before the list of nicks typing in the bar item "typing", it must be as short as possible +msgid "Typing: " +msgstr "" + +msgid "" +"number of seconds after paused status has been set: if reached, the typing " +"status is removed" +msgstr "" + +msgid "" +"number of seconds after typing status has been set: if reached, the typing " +"status is removed" +msgstr "" + +msgid "" +"number of seconds after typing last char: if reached, the typing status " +"becomes \"paused\" and no more typing signals are sent" +msgstr "" + +msgid "" +"typing enabled for other nicks (display typing info for nicks typing in the " +"current buffer)" +msgstr "" + +msgid "typing enabled for self messages (send typing info to other users)" +msgstr "" + +msgid "" +"max number of chars displayed in the bar item \"typing\" (0 = do not " +"truncate content)" +msgstr "" + msgid " [A] Accept" msgstr " [A] Прихвати" @@ -20,7 +20,7 @@ msgid "" msgstr "" "Project-Id-Version: WeeChat\n" "Report-Msgid-Bugs-To: flashcode@flashtux.org\n" -"POT-Creation-Date: 2021-06-27 10:33+0200\n" +"POT-Creation-Date: 2021-07-04 13:35+0200\n" "PO-Revision-Date: 2021-05-25 18:28+0200\n" "Last-Translator: Emir SARI <bitigchi@me.com>\n" "Language-Team: weechat-dev <weechat-dev@nongnu.org>\n" @@ -7833,6 +7833,18 @@ msgid "" msgstr "" msgid "" +"display nicks typing on the channel in bar item \"typing\" (option typing." +"look.enabled_nicks must be enabled and capability \"message-tags\" must be " +"enabled on the server)" +msgstr "" + +msgid "" +"send self typing status to channels so that other users see when you are " +"typing a message (option typing.look.enabled_self must be enabled and " +"capability \"message-tags\" must be enabled on the server)" +msgstr "" + +msgid "" "merge server buffers; this option has no effect if a layout is saved and is " "conflicting with this value (see /help layout)" msgstr "" @@ -11597,6 +11609,41 @@ msgstr "tetik adı metin rengi" msgid "text color for disabled trigger name" msgstr "devre dışı tetik adı metin rengi" +msgid "Typing status of users" +msgstr "" + +#. TRANSLATORS: this text is displayed before the list of nicks typing in the bar item "typing", it must be as short as possible +msgid "Typing: " +msgstr "" + +msgid "" +"number of seconds after paused status has been set: if reached, the typing " +"status is removed" +msgstr "" + +msgid "" +"number of seconds after typing status has been set: if reached, the typing " +"status is removed" +msgstr "" + +msgid "" +"number of seconds after typing last char: if reached, the typing status " +"becomes \"paused\" and no more typing signals are sent" +msgstr "" + +msgid "" +"typing enabled for other nicks (display typing info for nicks typing in the " +"current buffer)" +msgstr "" + +msgid "typing enabled for self messages (send typing info to other users)" +msgstr "" + +msgid "" +"max number of chars displayed in the bar item \"typing\" (0 = do not " +"truncate content)" +msgstr "" + msgid " [A] Accept" msgstr "" diff --git a/po/weechat.pot b/po/weechat.pot index ce65e9cb3..78c56d133 100644 --- a/po/weechat.pot +++ b/po/weechat.pot @@ -21,7 +21,7 @@ msgid "" msgstr "" "Project-Id-Version: WeeChat\n" "Report-Msgid-Bugs-To: flashcode@flashtux.org\n" -"POT-Creation-Date: 2021-06-27 10:33+0200\n" +"POT-Creation-Date: 2021-07-04 13:35+0200\n" "PO-Revision-Date: 2014-08-16 10:27+0200\n" "Last-Translator: Sébastien Helleu <flashcode@flashtux.org>\n" "Language-Team: weechat-dev <weechat-dev@nongnu.org>\n" @@ -7301,6 +7301,18 @@ msgid "" msgstr "" msgid "" +"display nicks typing on the channel in bar item \"typing\" (option typing." +"look.enabled_nicks must be enabled and capability \"message-tags\" must be " +"enabled on the server)" +msgstr "" + +msgid "" +"send self typing status to channels so that other users see when you are " +"typing a message (option typing.look.enabled_self must be enabled and " +"capability \"message-tags\" must be enabled on the server)" +msgstr "" + +msgid "" "merge server buffers; this option has no effect if a layout is saved and is " "conflicting with this value (see /help layout)" msgstr "" @@ -11052,6 +11064,41 @@ msgstr "" msgid "text color for disabled trigger name" msgstr "" +msgid "Typing status of users" +msgstr "" + +#. TRANSLATORS: this text is displayed before the list of nicks typing in the bar item "typing", it must be as short as possible +msgid "Typing: " +msgstr "" + +msgid "" +"number of seconds after paused status has been set: if reached, the typing " +"status is removed" +msgstr "" + +msgid "" +"number of seconds after typing status has been set: if reached, the typing " +"status is removed" +msgstr "" + +msgid "" +"number of seconds after typing last char: if reached, the typing status " +"becomes \"paused\" and no more typing signals are sent" +msgstr "" + +msgid "" +"typing enabled for other nicks (display typing info for nicks typing in the " +"current buffer)" +msgstr "" + +msgid "typing enabled for self messages (send typing info to other users)" +msgstr "" + +msgid "" +"max number of chars displayed in the bar item \"typing\" (0 = do not " +"truncate content)" +msgstr "" + msgid " [A] Accept" msgstr "" diff --git a/src/plugins/irc/irc-config.c b/src/plugins/irc/irc-config.c index 78f58ad96..606b1bb25 100644 --- a/src/plugins/irc/irc-config.c +++ b/src/plugins/irc/irc-config.c @@ -3121,7 +3121,7 @@ irc_config_init () irc_config_file, ptr_section, "typing_status_nicks", "boolean", N_("display nicks typing on the channel in bar item \"typing\" " - "(option typing.look.enabled must be enabled and capability " + "(option typing.look.enabled_nicks must be enabled and capability " "\"message-tags\" must be enabled on the server)"), NULL, 0, 0, "off", NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); @@ -3130,7 +3130,7 @@ irc_config_init () "typing_status_self", "boolean", N_("send self typing status to channels so that other users see when " "you are typing a message " - "(option typing.look.enabled must be enabled and capability " + "(option typing.look.enabled_self must be enabled and capability " "\"message-tags\" must be enabled on the server)"), NULL, 0, 0, "off", NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); diff --git a/src/plugins/typing/typing.c b/src/plugins/typing/typing.c index cc5b38dbd..003863228 100644 --- a/src/plugins/typing/typing.c +++ b/src/plugins/typing/typing.c @@ -472,7 +472,7 @@ typing_typing_reset_buffer_signal_cb (const void *pointer, void *data, } /* - * Creates or removes hooks, according to option typing.look.enabled. + * Creates or removes hooks, according to options "typing.look.enabled_*". */ void |