diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2014-06-27 07:54:53 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2014-06-27 07:54:53 +0200 |
commit | 1a1c50cc01a5a91013b86708dc2a8e5ad330619e (patch) | |
tree | 41f1db8017db611cab2a9b45393d024775dbb80c /doc/it/weechat_faq.it.asciidoc | |
parent | 6cdcb6feca0a7e040298f3a5e3f867fc93dd6bf8 (diff) | |
download | weechat-1a1c50cc01a5a91013b86708dc2a8e5ad330619e.zip |
core: add option "env" in command /set
Diffstat (limited to 'doc/it/weechat_faq.it.asciidoc')
-rw-r--r-- | doc/it/weechat_faq.it.asciidoc | 23 |
1 files changed, 15 insertions, 8 deletions
diff --git a/doc/it/weechat_faq.it.asciidoc b/doc/it/weechat_faq.it.asciidoc index f0e040067..19e255cc8 100644 --- a/doc/it/weechat_faq.it.asciidoc +++ b/doc/it/weechat_faq.it.asciidoc @@ -276,16 +276,22 @@ Una soluzione alternativa è usare uno script: [[change_locale_without_quit]] === Voglio cambiare la lingua utilizzata da WeeChat per i messaggi, ma senza uscire da WeeChat, è possibile? -Sì. è necessario uno script python, 'shell.py' (disponibile sul sito di WeeChat) -e digitare questi comandi quando viene caricato lo script: +// TRANSLATION MISSING +Yes, with WeeChat ≥ 1.0: ---- -/shell setenv LANG=it_IT.UTF-8 +/set env LANG it_IT.UTF-8 /upgrade ---- -Per avere i messaggi in inglese con la codifica UTF-8 per il terminale, per gli -utenti ISO, digitare: `/shell setenv LANG=en_US`. +// TRANSLATION MISSING +With older WeeChat: + +---- +/script install shell.py +/shell setenv LANG=it_IT.UTF-8 +/upgrade +---- [[use_256_colors]] === Come posso usare 256 colori in WeeChat? @@ -309,11 +315,12 @@ proprio '~/.screenrc': term screen-256color ---- -Se la variabile 'TERM' contiene un valore errato e WeeChat è già in esecuzione, -niente panico! È possibile cambiarla senza riavviare, grazie allo script 'shell.py': +// TRANSLATION MISSING +If your 'TERM' variable has wrong value and that WeeChat is already running, +you can change it with these two commands (with WeeChat ≥ 1.0): ---- -/shell setenv TERM=screen-256color +/set env TERM screen-256color /upgrade ---- |