diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2010-04-08 10:24:05 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2010-04-08 10:24:05 +0200 |
commit | 3fc11807f9662327b57a8911fb4cb9314c1599dd (patch) | |
tree | 624fa6b9cfc5301024f2a670cdf6a6056179b233 /doc/fr/weechat_plugin_api.fr.txt | |
parent | 2e82d65819a5318f5217e3b27205eecf91155437 (diff) | |
download | weechat-3fc11807f9662327b57a8911fb4cb9314c1599dd.zip |
Update italian doc and translations
Diffstat (limited to 'doc/fr/weechat_plugin_api.fr.txt')
-rw-r--r-- | doc/fr/weechat_plugin_api.fr.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/fr/weechat_plugin_api.fr.txt b/doc/fr/weechat_plugin_api.fr.txt index 6ec5d0c93..bfd8e61f2 100644 --- a/doc/fr/weechat_plugin_api.fr.txt +++ b/doc/fr/weechat_plugin_api.fr.txt @@ -2810,19 +2810,19 @@ def my_section_read_cb(data, config_file, section, option_name, value): def my_section_write_cb(data, config_file, section_name): # ... - return weechat.WEECHAT_RC_OK + return weechat.WEECHAT_CONFIG_WRITE_OK def my_section_write_default_cb(data, config_file, section_name): # ... - return weechat.WEECHAT_RC_OK + return weechat.WEECHAT_CONFIG_WRITE_OK def my_section_create_option_cb(data, config_file, section, option_name, value): # ... - return weechat.WEECHAT_RC_OK + return weechat.WEECHAT_CONFIG_OPTION_SET_OK_SAME_VALUE def my_section_delete_option_cb(data, config_file, section, option): # ... - return weechat.WEECHAT_RC_OK + return weechat.WEECHAT_CONFIG_OPTION_UNSET_OK_REMOVED section = weechat.config_new_section(config_file, "section1", 1, 1, "my_section_read_cb", "", |