summaryrefslogtreecommitdiff
path: root/doc/pl
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2019-09-27 20:52:00 +0200
committerSébastien Helleu <flashcode@flashtux.org>2019-09-27 20:52:00 +0200
commitae38b114072858ca4cd21d8492c54a2ae592d196 (patch)
tree6cdea623841c7cc3b75f5670b0b71e523c4cfada /doc/pl
parent3f33b327b139a90c100aff5c36d4684faa6e48c6 (diff)
downloadweechat-ae38b114072858ca4cd21d8492c54a2ae592d196.zip
irc: add "user" in output of irc_message_parse (closes #136)
Diffstat (limited to 'doc/pl')
-rw-r--r--doc/pl/autogen/plugin_api/infos_hashtable.adoc2
-rw-r--r--doc/pl/weechat_scripting.pl.adoc6
2 files changed, 7 insertions, 1 deletions
diff --git a/doc/pl/autogen/plugin_api/infos_hashtable.adoc b/doc/pl/autogen/plugin_api/infos_hashtable.adoc
index 8bd6229bf..414117264 100644
--- a/doc/pl/autogen/plugin_api/infos_hashtable.adoc
+++ b/doc/pl/autogen/plugin_api/infos_hashtable.adoc
@@ -6,7 +6,7 @@
|===
| Wtyczka | Nazwa | Opis | Hashtable (wejście) | Hashtable (wyjście)
-| irc | irc_message_parse | przetwarza wiadomość IRC | "message": wiadomość IRC, "server": nazwa serwera (opcjonalne) | "tags": tagi, "message_without_tags": wiadomość bez tagów, "nick": nick, "host": host, "command": komenda, "channel": kanał, "arguments": argumenty (razem z kanałem), "text": tekst (na przykład wiadomość użytkownika), "pos_command": indeks wiadomości "command" message ("-1" jeśli "command" nie zostało znalezione), "pos_arguments": indeks wiadomości "arguments" ("-1" jeśli "arguments" nie zostało znalezione), "pos_channel": indeks wiadomości "channel" ("-1" jeśli "channel" nie został znaleziony), "pos_text": indeks słowa "text" ("-1" jeśli "text" nie został znaleziony)
+| irc | irc_message_parse | przetwarza wiadomość IRC | "message": wiadomość IRC, "server": nazwa serwera (opcjonalne) | "tags": tags, "message_without_tags": message without the tags, "nick": nick, "user": user, "host": host, "command": command, "channel": channel, "arguments": arguments (includes channel), "text": text (for example user message), "pos_command": index of "command" message ("-1" if "command" was not found), "pos_arguments": index of "arguments" message ("-1" if "arguments" was not found), "pos_channel": index of "channel" message ("-1" if "channel" was not found), "pos_text": index of "text" message ("-1" if "text" was not found)
| irc | irc_message_split | dziel wiadomość IRC (aby zmieściła się domyślnie w 512 bajtach) | "message": wiadomość IRC, "server": nazwa serwera (opcjonalne) | "msg1" ... "msgN": wiadomości do wysłania (bez kończącego "\r\n"), "args1" ... "argsN": argumenty wiadomości, "count": ilość wiadomości
diff --git a/doc/pl/weechat_scripting.pl.adoc b/doc/pl/weechat_scripting.pl.adoc
index 67a1497cc..e5941e906 100644
--- a/doc/pl/weechat_scripting.pl.adoc
+++ b/doc/pl/weechat_scripting.pl.adoc
@@ -1160,6 +1160,11 @@ Wynik jest tabela hashy z następującymi kluczami
Nick żródła. |
`nick`
+// TRANSLATION MISSING
+| user | ≥ 2.7 |
+ The origin user. |
+ `user`
+
| host | ≥ 0.3.4 |
Host żródła (zawiera nick). |
`nick!user@host`
@@ -1207,6 +1212,7 @@ dict = weechat.info_get_hashtable(
# "tags": "time=2015-06-27T16:40:35.000Z",
# "message_without_tags": ":nick!user@host PRIVMSG #weechat :hello!",
# "nick": "nick",
+# "user": "user",
# "host": "nick!user@host",
# "command": "PRIVMSG",
# "channel": "#weechat",