summaryrefslogtreecommitdiff
path: root/doc/it/weechat_plugin_api.it.txt
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2010-05-24 09:58:31 +0200
committerSebastien Helleu <flashcode@flashtux.org>2010-05-24 09:58:31 +0200
commit69ca70cbc7307114c5788b8d5ad91ff4febbc164 (patch)
tree7ffc84adc09287b702c1efac2f46d71d37ea6422 /doc/it/weechat_plugin_api.it.txt
parent64d7fa7e51b8b6fbaf6d332b8854c7615889b63d (diff)
downloadweechat-69ca70cbc7307114c5788b8d5ad91ff4febbc164.zip
Update italian files
Diffstat (limited to 'doc/it/weechat_plugin_api.it.txt')
-rw-r--r--doc/it/weechat_plugin_api.it.txt18
1 files changed, 9 insertions, 9 deletions
diff --git a/doc/it/weechat_plugin_api.it.txt b/doc/it/weechat_plugin_api.it.txt
index 4258dd5c8..08cd51cd5 100644
--- a/doc/it/weechat_plugin_api.it.txt
+++ b/doc/it/weechat_plugin_api.it.txt
@@ -750,26 +750,26 @@ free (str);
weechat_string_expand_home
^^^^^^^^^^^^^^^^^^^^^^^^^^
-Replace leading `~` by string with home directory. If string does not start
-with `~`, then same string is returned.
+Sostituisce la `~` iniziale con la stringa con la cartella home. Se la stringa
+non inizia con `~`, viene restituita la stessa stringa.
-Prototype:
+Prototipo:
[source,C]
----------------------------------------
char *weechat_string_expand_home (const char *path);
----------------------------------------
-Arguments:
+Argomenti:
-* 'path': path
+* 'path': percorso
-Return value:
+Valore restituito:
-* path with leading `~` replaced by home directory (must be freed by calling
- "free" after use)
+* percorso con la `~` iniziale sostituita dalla cartella home (deve essere
+ liberata chiamando "free" dopo l'uso)
-C example:
+Esempio in C:
[source,C]
----------------------------------------