summaryrefslogtreecommitdiff
path: root/doc/it
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2016-11-26 17:11:45 +0100
committerSébastien Helleu <flashcode@flashtux.org>2016-11-26 17:11:45 +0100
commit114cf666060428b1e30ff816e4acd7e7d0c7279f (patch)
tree6055af81b8dd181e30d704761b238d8eff7947bb /doc/it
parent114c11cb8dceaf0029df2ee23251e8900336eb6f (diff)
downloadweechat-114cf666060428b1e30ff816e4acd7e7d0c7279f.zip
doc: add chapter about buffers lines in user's guide
Diffstat (limited to 'doc/it')
-rw-r--r--doc/it/weechat_plugin_api.it.adoc29
-rw-r--r--doc/it/weechat_user.it.adoc62
2 files changed, 65 insertions, 26 deletions
diff --git a/doc/it/weechat_plugin_api.it.adoc b/doc/it/weechat_plugin_api.it.adoc
index 6b728e504..3a2658f26 100644
--- a/doc/it/weechat_plugin_api.it.adoc
+++ b/doc/it/weechat_plugin_api.it.adoc
@@ -7094,32 +7094,9 @@ Argomenti:
* _tags_: lista di tag separati da virgole (NULL means no tags)
* _message_: messaggio da visualizzare
-Tag usati di frequente (elenco non esaustivo):
-
-[width="70%",cols="^1,4",options="header"]
-|===
-| Tag | Descrizione
-| no_filter | La riga non può essere filtrata
-| no_highlight | Evidenziazione non possibile sulla riga
-| no_log | La riga non viene scritta nel file di log
-| log0 ... log9 | Livello di log per la riga (consultare `/help logger`)
-| notify_none | Il buffer con la riga non viene aggiunto alla hotlist
-| notify_message | Il buffer con la riga viene aggiunto alla hotlist con il livello "message"
-| notify_private | Il buffer con la riga viene aggiunto alla hotlist con il livello "private"
-| notify_highlight | Il buffer con la riga viene aggiunto alla hotlist con il livello "higlight"
-| nick_xxx | Il messaggio viene dal nick "xxx"
-| prefix_nick_ccc | Il prefisso è un nick con il colore "ccc"
-// TRANSLATION MISSING
-| host_xxx | Username and host in message
-| irc_xxx | Messaggio IRC "xxx" (può essere un comando o un numero di 3 cifre)
-| irc_numeric | Messaggio IRC numerico
-| irc_error | Errore dal server IRC
-| irc_action | Azione da un nic (comando `/me`)
-| irc_ctcp | Messaggio CTCP
-| irc_ctcp_reply | Risposta ad un messaggio CTCP
-| irc_smart_filter | Messaggio IRC filtrabile tramite lo "smart filter" (filtro intelligente)
-| away_info | Messagio con informazioni sull'assenza
-|===
+// TRANSLATION MISSING
+See chapter about line tags in _WeeChat User's guide_ for a list of commonly
+used tags in WeeChat.
Esempio in C:
diff --git a/doc/it/weechat_user.it.adoc b/doc/it/weechat_user.it.adoc
index 3f589b92d..76726509c 100644
--- a/doc/it/weechat_user.it.adoc
+++ b/doc/it/weechat_user.it.adoc
@@ -1011,6 +1011,68 @@ Esempio di split orizzontale + verticale:
....
// TRANSLATION MISSING
+[[buffers_lines]]
+=== Buffers lines
+
+[[lines_format]]
+==== Format of lines
+
+Lines displayed in formatted buffers have following fields:
+
+[width="100%",cols="2,2,10",options="header"]
+|===
+| Field | Displayed | Description
+| date/time (message) | Yes | Date/time of message (may be past).
+| date/time (print) | No | Date/time when WeeChat prints the message.
+| prefix | Yes | Prefix of message, commonly a nick.
+| message | Yes | The message itself.
+| displayed | No | Boolean: true if line is displayed, false if line is filtered with command <<command_weechat_filter,/filter>>.
+| highlight | No | Boolean: true if line has a highlight, false otherwise.
+| tags | With `/debug tags` | Tags associated with the line (see <<lines_tags,lines tags>>).
+|===
+
+[[lines_tags]]
+==== Lines tags
+
+WeeChat uses tags in lines for different purposes:
+
+* highlight
+* notify level
+* logging
+* use of command <<command_weechat_filter,/filter>>
+
+Tags can be displayed with the command `/debug tags` (same command to hide them).
+
+Tag usati di frequente (elenco non esaustivo):
+
+[width="70%",cols="1m,4",options="header"]
+|===
+| Tag | Descrizione
+| no_filter | La riga non può essere filtrata.
+| no_highlight | Evidenziazione non possibile sulla riga.
+| no_log | La riga non viene scritta nel file di log.
+| log0 ... log9 | Livello di log per la riga (consultare `/help logger`).
+| notify_none | Il buffer con la riga non viene aggiunto alla hotlist.
+| notify_message | Il buffer con la riga viene aggiunto alla hotlist con il livello "message".
+| notify_private | Il buffer con la riga viene aggiunto alla hotlist con il livello "private".
+| notify_highlight | Il buffer con la riga viene aggiunto alla hotlist con il livello "higlight".
+// TRANSLATION MISSING
+| self_msg | Self message.
+| nick_xxx | Il messaggio viene dal nick "xxx".
+| prefix_nick_ccc | Il prefisso è un nick con il colore "ccc".
+// TRANSLATION MISSING
+| host_xxx | Username and host in message.
+| irc_xxx | Messaggio IRC "xxx" (può essere un comando o un numero di 3 cifre).
+| irc_numeric | Messaggio IRC numerico.
+| irc_error | Errore dal server IRC.
+| irc_action | Azione da un nic (comando `/me`).
+| irc_ctcp | Messaggio CTCP.
+| irc_ctcp_reply | Risposta ad un messaggio CTCP.
+| irc_smart_filter | Messaggio IRC filtrabile tramite lo "smart filter" (filtro intelligente).
+| away_info | Messagio con informazioni sull'assenza.
+|===
+
+// TRANSLATION MISSING
[[bars]]
=== Bars