summaryrefslogtreecommitdiff
path: root/doc/fr
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2018-04-07 13:20:58 +0200
committerSébastien Helleu <flashcode@flashtux.org>2018-04-07 13:20:58 +0200
commit6de98179bc87df4f2da38e36d64a03a1c0f9f623 (patch)
treeac3505c42a0297cf32fa966fc67f86a7825d8520 /doc/fr
parentea365cccbffb245285b33e5beeebac06743f7056 (diff)
downloadweechat-6de98179bc87df4f2da38e36d64a03a1c0f9f623.zip
api: add function string_format_size in scripting API
Diffstat (limited to 'doc/fr')
-rw-r--r--doc/fr/weechat_plugin_api.fr.adoc12
-rw-r--r--doc/fr/weechat_scripting.fr.adoc1
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 +