diff options
Diffstat (limited to 'doc/fr')
-rw-r--r-- | doc/fr/weechat_plugin_api.fr.adoc | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/doc/fr/weechat_plugin_api.fr.adoc b/doc/fr/weechat_plugin_api.fr.adoc index d5e7032a5..490676564 100644 --- a/doc/fr/weechat_plugin_api.fr.adoc +++ b/doc/fr/weechat_plugin_api.fr.adoc @@ -15810,7 +15810,7 @@ if (hashtable_in) weechat_hashtable_set ( hashtable_in, "message", - "@time=2015-06-27T16:40:35.000Z;tag2=value\\sspace :nick!user@host PRIVMSG #weechat :hello!"); + "@time=2015-06-27T16:40:35.000Z;tag2=value\\sspace :nick!user@host PRIVMSG #weechat :Hello world!"); hashtable_out = weechat_info_get_hashtable ("irc_message_parse", hashtable_in); /* @@ -15818,14 +15818,17 @@ if (hashtable_in) * "tags" : "time=2015-06-27T16:40:35.000Z;tag2=value\\sspace" * "tag_time" : "2015-06-27T16:40:35.000Z" * "tag_tag2" : "value space" - * "message_without_tags": ":nick!user@host PRIVMSG #weechat :hello!" + * "message_without_tags": ":nick!user@host PRIVMSG #weechat :Hello world!" * "nick" : "nick" " "user" : "user" * "host" : "nick!user@host" * "command" : "PRIVMSG" * "channel" : "#weechat" - * "arguments" : "#weechat :hello!" - * "text" : "hello!" + * "arguments" : "#weechat :Hello world!" + * "text" : "Hello world!" + * "param1" : "#weechat" + * "param2" : "Hello world!" + * "num_params" : "2" * "pos_command" : "65" * "pos_arguments" : "73" * "pos_channel" : "73" |