summaryrefslogtreecommitdiff
path: root/doc/it
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2012-04-04 20:02:27 +0200
committerSebastien Helleu <flashcode@flashtux.org>2012-04-04 20:02:27 +0200
commit6c261d31e1fe41a062366ff16d2ea6a6d32fa51d (patch)
treec01720e6c32d2a5584c2366785fc43a50d894e84 /doc/it
parent2b26348965941c961f1ad73cfc7c6605be5abf3e (diff)
downloadweechat-6c261d31e1fe41a062366ff16d2ea6a6d32fa51d.zip
doc: add list of commonly used tags in plugin API reference (in function printf_date_tags)
Diffstat (limited to 'doc/it')
-rw-r--r--doc/it/weechat_plugin_api.it.txt27
1 files changed, 27 insertions, 0 deletions
diff --git a/doc/it/weechat_plugin_api.it.txt b/doc/it/weechat_plugin_api.it.txt
index b68823d62..e3f2817e2 100644
--- a/doc/it/weechat_plugin_api.it.txt
+++ b/doc/it/weechat_plugin_api.it.txt
@@ -6313,6 +6313,33 @@ Argomenti:
* 'tags': lista di tag separati da virgole
* 'message': messaggio da visualizzare
+// TRANSLATION MISSING
+Tags commonly used (non-exhaustive list):
+
+// TRANSLATION MISSING
+[width="70%",cols="1m,4",options="header"]
+|========================================
+| Tag | Description
+| no_filter | Line can not be filtered
+| no_highlight | No highlight is possible on line
+| no_log | Line is not written in log file
+| log0 ... log9 | Level of log for line (see `/help logger`)
+| notify_none | Buffer with line is not added to hotlist
+| notify_message | Buffer with line is added to hotlist with level "message"
+| notify_private | Buffer with line is added to hotlist with level "private"
+| notify_highlight | Buffer with line is added to hotlist with level "highlight"
+| nick_xxx | Message is from nick "xxx"
+| prefix_nick_ccc | Prefix is a nick with color "ccc"
+| irc_xxx | IRC message "xxx" (can be a command or a 3-digits number)
+| irc_numeric | IRC numeric message
+| irc_error | Error from IRC server
+| irc_action | Action from a nick (command `/me`)
+| irc_ctcp | CTCP message
+| irc_ctcp_reply | Reply to CTCP message
+| irc_smart_filter | IRC message that can be filtered with the "smart filter"
+| away_info | Message with away info
+|========================================
+
Esempio in C:
[source,C]