diff options
-rw-r--r-- | doc/en/weechat_plugin_api.en.txt | 4 | ||||
-rw-r--r-- | doc/fr/weechat_plugin_api.fr.txt | 4 | ||||
-rw-r--r-- | doc/it/weechat_plugin_api.it.txt | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/doc/en/weechat_plugin_api.en.txt b/doc/en/weechat_plugin_api.en.txt index d1a5aef8c..30e162daa 100644 --- a/doc/en/weechat_plugin_api.en.txt +++ b/doc/en/weechat_plugin_api.en.txt @@ -11899,7 +11899,7 @@ C example: ---------------------------------------- struct t_gui_bar *my_bar = weechat_bar_new ("mybar", "off", - 100, + "100", "window", "", "top", @@ -11924,7 +11924,7 @@ bar = weechat.bar_new(name, hidden, priority, type, condition, position, color_fg, color_delim, color_bg, separator, items) # example -bar = weechat.bar_new("mybar", "off", 100, "window", "", "top", "horizontal", "vertical", +bar = weechat.bar_new("mybar", "off", "100", "window", "", "top", "horizontal", "vertical", "0", "5", "default", "cyan", "blue", "off", "time,buffer_number+buffer_name") ---------------------------------------- diff --git a/doc/fr/weechat_plugin_api.fr.txt b/doc/fr/weechat_plugin_api.fr.txt index 9ddb8226e..5db4d9c16 100644 --- a/doc/fr/weechat_plugin_api.fr.txt +++ b/doc/fr/weechat_plugin_api.fr.txt @@ -12104,7 +12104,7 @@ Exemple en C : ---------------------------------------- struct t_gui_bar *my_bar = weechat_bar_new ("mybar", "off", - 100, + "100", "window", "", "top", @@ -12129,7 +12129,7 @@ bar = weechat.bar_new(name, hidden, priority, type, condition, position, color_fg, color_delim, color_bg, separator, items) # exemple -bar = weechat.bar_new("mybar", "off", 100, "window", "", "top", "horizontal", "vertical", +bar = weechat.bar_new("mybar", "off", "100", "window", "", "top", "horizontal", "vertical", "0", "5", "default", "cyan", "blue", "off", "time,buffer_number+buffer_name") ---------------------------------------- diff --git a/doc/it/weechat_plugin_api.it.txt b/doc/it/weechat_plugin_api.it.txt index 496d4e35a..ceee1ac49 100644 --- a/doc/it/weechat_plugin_api.it.txt +++ b/doc/it/weechat_plugin_api.it.txt @@ -12077,7 +12077,7 @@ Esempio in C: ---------------------------------------- struct t_gui_bar *my_bar = weechat_bar_new ("mybar", "off", - 100, + "100", "window", "", "top", @@ -12102,7 +12102,7 @@ bar = weechat.bar_new(name, hidden, priority, type, condition, position, color_fg, color_delim, color_bg, separator, items) # esempio -bar = weechat.bar_new("mybar", "off", 100, "window", "", "top", "horizontal", "vertical", +bar = weechat.bar_new("mybar", "off", "100", "window", "", "top", "horizontal", "vertical", "0", "5", "default", "cyan", "blue", "off", "time,buffer_number+buffer_name") ---------------------------------------- |