diff options
Diffstat (limited to 'doc/it/includes')
-rw-r--r-- | doc/it/includes/cmdline_options.it.adoc | 89 | ||||
-rw-r--r-- | doc/it/includes/man.it.adoc | 113 |
2 files changed, 202 insertions, 0 deletions
diff --git a/doc/it/includes/cmdline_options.it.adoc b/doc/it/includes/cmdline_options.it.adoc new file mode 100644 index 000000000..7be2504b4 --- /dev/null +++ b/doc/it/includes/cmdline_options.it.adoc @@ -0,0 +1,89 @@ +// tag::standard[] +*-a*, *--no-connect*:: + Disabilita la connessione automatica ai server all'avvio di WeeChat. + +*-c*, *--colors*:: + Mostra i colori prefefiniti nel terminale. + +// TRANSLATION MISSING +*--daemon*:: + Run WeeChat in background, as a daemon (works only with the command + *weechat-headless*). + +// TRANSLATION MISSING +*--stdout*:: + Display log messages on standard output instead of writing them in log file + (works only with the command *weechat-headless*, not compatible with option + "--daemon"). + +// TRANSLATION MISSING +*-d*, *--dir* _<path>_:: + Imposta una directory come home per WeeChat (utilizzata per i file di + configurazione, log, plugin e script dell'utente), il valore predefinito + è "~/.weechat" (nota: directory viene creata se non trovata da WeeChat). + If this option is not given, the environment variable WEECHAT_HOME is used + (if not empty). + +// TRANSLATION MISSING +*-t*, *--temp-dir*:: + Create a temporary WeeChat home directory and delete it on exit + (incompatible with option "-d"). + + The name of the directory is automatically built by WeeChat, with this + template: "weechat_temp_XXXXXX" (where "XXXXXX" is random). It it created + in the first available directory in this list: environment variable "TMPDIR", + "/tmp" (may be different according to the operating system), environment + variable "HOME", current directory. + + The temporary home directory has permissions 0700 (only owner can read, + write and execute). + +*-h*, *--help*:: + Mostra l'aiuto. + +*-l*, *--license*:: + Mostra la licenza di WeeChat. + +*-p*, *--no-plugin*:: + Disabilita il caricamento automatico dei plugin. + +// TRANSLATION MISSING +*-P*, *--plugins* _<plugins>_:: + Load only these plugins at startup (see /help weechat.plugin.autoload). + If this option is given, the option weechat.plugin.autoload is not used. + +// TRANSLATION MISSING +*-r*, *--run-command* _<command>_:: + Run command(s) after startup; many commands can be separated by semicolons, + this option can be given multiple times. + +*-s*, *--no-script*:: + Disabilita il caricamento automatico dei script. + +// TRANSLATION MISSING +*--upgrade*:: + Upgrade WeeChat using session files generated with command `/upgrade -quit`. + +*-v*, *--version*:: + Mostra la versione di WeeChat. + +*plugin:option*:: + Opzione per il plugin. +// end::standard[] + +// tag::debug[] +// TRANSLATION MISSING +*--no-dlclose*:: + Do not call the function dlclose after plugins are unloaded. + This is useful with tools like Valgrind to display stack for unloaded + plugins. + +// TRANSLATION MISSING +*--no-gnutls*:: + Do not call the init and deinit functions of GnuTLS library. + This is useful with tools like Valgrind and electric-fence, to prevent + GnuTLS memory errors. + +// TRANSLATION MISSING +*--no-gcrypt*:: + Do not call the init and deinit functions of Gcrypt library. + This is useful with tools like Valgrind, to prevent Gcrypt memory errors. +// end::debug[] diff --git a/doc/it/includes/man.it.adoc b/doc/it/includes/man.it.adoc new file mode 100644 index 000000000..44f8f1929 --- /dev/null +++ b/doc/it/includes/man.it.adoc @@ -0,0 +1,113 @@ +// tag::plugin_options[] +// TRANSLATION MISSING +For complete doc on plugin options, please look at plugins documentation in +https://weechat.org/doc[WeeChat user's guide]. + +With irc plugin, you can connect to temporary server with an URL like: + + irc[6][s]://[[nickname][:password]@]server[:port][/#channel1[,#channel2...]] + +To join WeeChat IRC channel support with nick "mynick": + + irc://mynick@chat.freenode.net/#weechat + +IPv6 address can be enclosed in brackets to add a port after address, for +example: + + irc://mynick@[2001:db8:0:85a3::ac1f:8001]:6668/#test +// end::plugin_options[] + +// tag::files[] +// TRANSLATION MISSING +$HOME/.weechat/weechat.conf:: + main WeeChat configuration file + +$HOME/.weechat/plugins.conf:: + plugins configuration file + +$HOME/.weechat/sec.conf:: + configuration file with secured data + +$HOME/.weechat/alias.conf:: + configuration file for _alias_ plugin + +$HOME/.weechat/buflist.conf:: + configuration file for _buflist_ plugin + +$HOME/.weechat/charset.conf:: + configuration file for _charset_ plugin + +$HOME/.weechat/exec.conf:: + configuration file for _exec_ plugin + +$HOME/.weechat/fifo.conf:: + configuration file for _fifo_ plugin + +$HOME/.weechat/fset.conf:: + configuration file for _fset_ plugin + +$HOME/.weechat/guile.conf:: + configuration file for _guile_ plugin + +$HOME/.weechat/irc.conf:: + configuration file for _irc_ plugin + +$HOME/.weechat/javascript.conf:: + configuration file for _javascript_ plugin + +$HOME/.weechat/logger.conf:: + configuration file for _logger_ plugin + +$HOME/.weechat/lua.conf:: + configuration file for _lua_ plugin + +$HOME/.weechat/perl.conf:: + configuration file for _perl_ plugin + +$HOME/.weechat/php.conf:: + configuration file for _php_ plugin + +$HOME/.weechat/python.conf:: + configuration file for _python_ plugin + +$HOME/.weechat/relay.conf:: + configuration file for _relay_ plugin + +$HOME/.weechat/ruby.conf:: + configuration file for _ruby_ plugin + +$HOME/.weechat/script.conf:: + configuration file for _script_ plugin + +$HOME/.weechat/spell.conf:: + configuration file for _spell_ plugin + +$HOME/.weechat/tcl.conf:: + configuration file for _tcl_ plugin + +$HOME/.weechat/trigger.conf:: + configuration file for _trigger_ plugin + +$HOME/.weechat/xfer.conf:: + configuration file for _xfer_ plugin + +$HOME/.weechat/weechat.log:: + WeeChat log file +// end::files[] + +// tag::copyright[] +// TRANSLATION MISSING +WeeChat is written by Sébastien Helleu and contributors (complete list is in +the AUTHORS.adoc file). + +Copyright (C) 2003-2020 {author} + +WeeChat is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 3 of the License, or +(at your option) any later version. + +Please read the COPYING file for more information. + +Web: https://weechat.org/ +// end::copyright[] |