summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/en/weechat_plugin_api.en.adoc11
-rw-r--r--doc/fr/weechat_plugin_api.fr.adoc11
-rw-r--r--doc/it/weechat_plugin_api.it.adoc11
-rw-r--r--doc/ja/weechat_plugin_api.ja.adoc11
-rw-r--r--doc/sr/weechat_plugin_api.sr.adoc11
5 files changed, 35 insertions, 20 deletions
diff --git a/doc/en/weechat_plugin_api.en.adoc b/doc/en/weechat_plugin_api.en.adoc
index 1c03e17f9..610406fd6 100644
--- a/doc/en/weechat_plugin_api.en.adoc
+++ b/doc/en/weechat_plugin_api.en.adoc
@@ -15485,7 +15485,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);
/*
@@ -15493,14 +15493,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"
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"
diff --git a/doc/it/weechat_plugin_api.it.adoc b/doc/it/weechat_plugin_api.it.adoc
index 4719ae3bc..0e1159767 100644
--- a/doc/it/weechat_plugin_api.it.adoc
+++ b/doc/it/weechat_plugin_api.it.adoc
@@ -16126,7 +16126,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);
/*
@@ -16134,14 +16134,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"
diff --git a/doc/ja/weechat_plugin_api.ja.adoc b/doc/ja/weechat_plugin_api.ja.adoc
index e14463d1f..3b33360fc 100644
--- a/doc/ja/weechat_plugin_api.ja.adoc
+++ b/doc/ja/weechat_plugin_api.ja.adoc
@@ -15544,7 +15544,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);
/*
@@ -15552,14 +15552,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"
diff --git a/doc/sr/weechat_plugin_api.sr.adoc b/doc/sr/weechat_plugin_api.sr.adoc
index 57e834112..98cc86171 100644
--- a/doc/sr/weechat_plugin_api.sr.adoc
+++ b/doc/sr/weechat_plugin_api.sr.adoc
@@ -14958,7 +14958,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);
/*
@@ -14966,14 +14966,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"