diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2014-03-16 17:21:35 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2014-03-16 17:21:35 +0100 |
commit | 907e099f86697ffce9da91f10ad4a2c6e21e851d (patch) | |
tree | 23ebeb80352673ae732b1253a3f1ae04efb37458 /doc/it | |
parent | fa28d23c4dcf8eaa700fd7d5682207a2ee2da301 (diff) | |
download | weechat-907e099f86697ffce9da91f10ad4a2c6e21e851d.zip |
api: allow negative value for y in function printf_y
Diffstat (limited to 'doc/it')
-rw-r--r-- | doc/it/weechat_plugin_api.it.txt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/doc/it/weechat_plugin_api.it.txt b/doc/it/weechat_plugin_api.it.txt index 1ce753ae0..7bd7bc4a4 100644 --- a/doc/it/weechat_plugin_api.it.txt +++ b/doc/it/weechat_plugin_api.it.txt @@ -6685,7 +6685,11 @@ void weechat_printf_y (struct t_gui_buffer *buffer, int y, Argomenti: * 'buffer': puntatore al buffer -* 'y': numero di riga (la prima riga è 0) +// TRANSLATION MISSING +* 'y': numero di riga (la prima riga è 0); a negative value adds a line after + last line displayed: absolute value of 'y' is the number of lines after last + line (for example -1 is immediately after last line, -2 is 2 lines after last + line) _(WeeChat ≥ 0.4.4)_ * 'message': messaggio da visualizzare Esempio in C: |