diff options
Diffstat (limited to 'doc/fr')
-rw-r--r-- | doc/fr/weechat_plugin_api.fr.adoc | 12 | ||||
-rw-r--r-- | doc/fr/weechat_scripting.fr.adoc | 1 |
2 files changed, 11 insertions, 2 deletions
diff --git a/doc/fr/weechat_plugin_api.fr.adoc b/doc/fr/weechat_plugin_api.fr.adoc index 8b3f45c84..b19787f7c 100644 --- a/doc/fr/weechat_plugin_api.fr.adoc +++ b/doc/fr/weechat_plugin_api.fr.adoc @@ -1751,8 +1751,16 @@ char *str = weechat_string_format_size (2097152); /* str == "2.10 Mo" */ free (str); ---- -[NOTE] -Cette fonction n'est pas disponible dans l'API script. +Script (Python) : + +[source,python] +---- +# prototype +str = weechat.string_format_size(size) + +# exemple +str = weechat.string_format_size(15200) # == "15.2 Ko" +---- ==== string_remove_color diff --git a/doc/fr/weechat_scripting.fr.adoc b/doc/fr/weechat_scripting.fr.adoc index f5ec58c96..c728869f5 100644 --- a/doc/fr/weechat_scripting.fr.adoc +++ b/doc/fr/weechat_scripting.fr.adoc @@ -442,6 +442,7 @@ Liste des fonctions de l'API script : string_has_highlight + string_has_highlight_regex + string_mask_to_regex + + string_format_size + string_remove_color + string_is_command_char + string_input_for_buffer + |