annotate nsis/lang/italian.nsi @ 32669:448aef880252

normalize line endings
author Christian Brabandt <cb@256bit.org>
date Mon, 26 Jun 2023 09:54:34 +0200
parents 2a17771529af
children 695b50472e85
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
32669
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
1 # vi:set ts=8 sts=4 sw=4 et fdm=marker:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
2 #
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
3 # italian.nsi : Italian language strings for gvim NSIS installer.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
4 #
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
5 # Locale ID : 1040
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
6 # fileencoding : UTF-8
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
7 # Author : Antonio Colombo, bovirus - revision: 12.05.2023
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
8
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
9 !insertmacro MUI_LANGUAGE "Italian"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
10
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
11
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
12 # Overwrite the default translation.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
13 # These strings should be always English. Otherwise dosinst.c fails.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
14 LangString ^SetupCaption ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
15 "$(^Name) Setup"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
16 LangString ^UninstallCaption ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
17 "$(^Name) Uninstall"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
18
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
19 ##############################################################################
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
20 # MUI Configuration Strings {{{1
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
21 ##############################################################################
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
22
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
23 #LangString str_dest_folder ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
24 # "Cartella installazione (il percorso deve finire con $\"vim$\")"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
25
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
26 LangString str_show_readme ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
27 "Visualizza file README a fine installazione"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
28
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
29 # Install types:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
30 LangString str_type_typical ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
31 "Tipica"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
32
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
33 LangString str_type_minimal ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
34 "Minima"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
35
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
36 LangString str_type_full ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
37 "Completa"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
38
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
39
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
40 ##############################################################################
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
41 # Section Titles & Description {{{1
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
42 ##############################################################################
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
43
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
44 LangString str_section_old_ver ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
45 "Disinstalla versioni esistenti"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
46 LangString str_desc_old_ver ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
47 "Disinstalla versioni esistenti di Vim."
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
48
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
49 LangString str_section_exe ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
50 "GUI e file supporto Vim"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
51 LangString str_desc_exe ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
52 "GUI programmi e file di supporto Vim. Questa componente è indispensabile."
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
53
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
54 LangString str_section_console ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
55 "Console Vim (vim.exe per MS-DOS)"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
56 LangString str_desc_console ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
57 "Versione console di Vim (vim.exe)."
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
58
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
59 LangString str_section_batch ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
60 "Crea file .bat"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
61 LangString str_desc_batch ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
62 "Crea file .bat per varianti di Vim nella cartella \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
63 di Windows, per utilizzo da riga di comando."
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
64
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
65 LangString str_group_icons ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
66 "Crea icone Vim"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
67 LangString str_desc_icons ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
68 "Crea icone Vim per rendere facile l'accesso."
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
69
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
70 LangString str_section_desktop ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
71 "Icone sul Desktop"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
72 LangString str_desc_desktop ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
73 "Crea icone programma gVim sul desktop."
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
74
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
75 LangString str_section_start_menu ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
76 "Gruppo programmi menù START"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
77 LangString str_desc_start_menu ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
78 "Aggiunge gruppo programmi al menù START."
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
79
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
80 #LangString str_section_quick_launch ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
81 # "Barra avvio veloce"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
82 #LangString str_desc_quick_launch ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
83 # "Aggiunge un collegamento a Vim nella barra di avvio veloce."
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
84
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
85 LangString str_section_edit_with ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
86 "Aggiungi Vim al menù contestuale"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
87 LangString str_desc_edit_with ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
88 "Aggiunge Vim al menu contestuale $\"Apri con...$\"."
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
89
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
90 #LangString str_section_edit_with32 ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
91 # "Versione a 32 bit"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
92 #LangString str_desc_edit_with32 ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
93 # "Aggiungi Vim al menu contestuale $\"Apri con...$\" \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
94 # per applicazioni a 32 bit."
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
95
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
96 #LangString str_section_edit_with64 ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
97 # "Versione a 64 bit"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
98 #LangString str_desc_edit_with64 ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
99 # "Aggiunge Vim al menu contestuale $\"Apri con...$\" \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
100 # per applicazioni a 64 bit."
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
101
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
102 LangString str_section_vim_rc ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
103 "Crea configurazione predefinita"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
104 LangString str_desc_vim_rc ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
105 "Crea, se non ne esiste già uno, un file configurazione predefinito (_vimrc) ."
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
106
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
107 LangString str_group_plugin ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
108 "Crea cartella plugin"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
109 LangString str_desc_plugin ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
110 "Crea cartella plugin. I plugin consentono di aggiungere funzionalità \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
111 a Vim copiando i relativi file in una di queste cartelle."
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
112
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
113 LangString str_section_plugin_home ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
114 "Privata"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
115 LangString str_desc_plugin_home ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
116 "Crea cartella plugin nella cartella HOME."
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
117
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
118 LangString str_section_plugin_vim ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
119 "Condivisa"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
120 LangString str_desc_plugin_vim ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
121 "Crea cartella plugin nella cartella di installazione di Vim \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
122 per uso da parte di tutti gli utenti di questo sistema."
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
123
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
124 LangString str_section_nls ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
125 "Supporto nativo lingua (NLS)"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
126 LangString str_desc_nls ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
127 "Installa i file per il supporto nativo multilingua."
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
128
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
129 LangString str_unsection_register ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
130 "Rimuovi Vim dal registro"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
131 LangString str_desc_unregister ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
132 "Rimuove Vim dal registro di configurazione sistema."
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
133
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
134 LangString str_unsection_exe ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
135 "Elimina programmi/file di supporto Vim"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
136 LangString str_desc_rm_exe ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
137 "Elimina tutti i programmi/file di supporto di Vim."
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
138
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
139 LangString str_ungroup_plugin ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
140 "Elimina cartelle plugin"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
141 LangString str_desc_rm_plugin ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
142 "Elimina le cartelle plugin se sono vuote."
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
143
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
144 LangString str_unsection_plugin_home ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
145 "Private"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
146 LangString str_desc_rm_plugin_home ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
147 "Elimina cartelle plugin nella cartella HOME."
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
148
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
149 LangString str_unsection_plugin_vim ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
150 "Condivise"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
151 LangString str_desc_rm_plugin_vim ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
152 "Elimina cartelle plugin nella cartella di installazione di Vim."
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
153
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
154 LangString str_unsection_rootdir ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
155 "Elimina la cartella di installazione di Vim"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
156 LangString str_desc_rm_rootdir ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
157 "Elimina la cartella di installazione di Vim. Contiene i file di configurazione!"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
158
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
159
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
160 ##############################################################################
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
161 # Messages {{{1
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
162 ##############################################################################
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
163
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
164 #LangString str_msg_too_many_ver ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
165 # "Rilevate nel sistema $vim_old_ver_count versioni di Vim.$\r$\n\
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
166 # Questo programma di installazione può gestire solo \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
167 # ${VIM_MAX_OLD_VER} versioni.$\r$\n\
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
168 # Disinstalla qualche versione precedente e ricomincia."
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
169
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
170 #LangString str_msg_invalid_root ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
171 # "Nome cartella di installazione non valida: $vim_install_root!$\r$\n\
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
172 # Dovrebbe terminare con $\"vim$\"."
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
173
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
174 #LangString str_msg_bin_mismatch ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
175 # "Conflitto nella cartella di installazione!$\r$\n$\r$\n\
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
176 # La cartella di installazione dev'essere $\"$vim_bin_path$\",$\r$\n\
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
177 # ma il sistema indica che il percorso è $\"$INSTDIR$\"."
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
178
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
179 #LangString str_msg_vim_running ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
180 # "Vim è ancora in esecuzione nel sistema.$\r$\n\
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
181 # Per continuare chiudi tutte le sessioni attive di Vim."
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
182
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
183 #LangString str_msg_register_ole ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
184 # "Tentativo di registrazione di Vim con OLE. \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
185 # Non ci sono messaggi che indicano se l'operazione è riuscita."
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
186
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
187 #LangString str_msg_unreg_ole ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
188 # "Tentativo di rimozione di VIM dal registro via OLE. \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
189 # Non ci sono messaggi che indicano se l'operazione è riuscita."
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
190
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
191 #LangString str_msg_rm_start ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
192 # "Disinstallazione della versione:"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
193
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
194 #LangString str_msg_rm_fail ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
195 # "Disinstallazione non riuscita per la versione:"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
196
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
197 #LangString str_msg_no_rm_key ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
198 # "Impossibile trovare chiave disinstallazione nel registro."
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
199
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
200 #LangString str_msg_no_rm_reg ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
201 # "Impossibile trovare programma disinstallazione nel registro."
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
202
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
203 #LangString str_msg_no_rm_exe ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
204 # "Impossibile trovare programma disinstallazione."
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
205
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
206 #LangString str_msg_rm_copy_fail ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
207 # "Impossibile copiare il programma disinstallazione in una cartella temporanea."
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
208
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
209 #LangString str_msg_rm_run_fail ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
210 # "Impossibile eseguire programma disinstallazione."
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
211
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
212 #LangString str_msg_abort_install ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
213 # "Il programma di disinstallazione verrà chiuso senza aver eseguito nessuna modifica."
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
214
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
215 LangString str_msg_install_fail ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
216 "Installazione non riuscita."
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
217
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
218 LangString str_msg_rm_exe_fail ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
219 "Alcuni file in $0 non sono stati eliminati!$\r$\n\
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
220 I file vanno rimossi manualmente."
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
221
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
222 #LangString str_msg_rm_root_fail ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
223 # "AVVISO: impossibile eliminare $\"$vim_install_root$\", non è vuota!"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
224
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
225 LangString str_msg_uninstalling ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
226 "Disinstallazione vecchia versione Vim..."
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
227
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
228 LangString str_msg_registering ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
229 "Aggiunta di Vim al registro..."
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
230
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
231 LangString str_msg_unregistering ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
232 "Rimozione di Vim dal registro..."
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
233
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
234
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
235 ##############################################################################
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
236 # Dialog Box {{{1
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
237 ##############################################################################
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
238
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
239 LangString str_vimrc_page_title ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
240 "Scelta impostazioni _vimrc"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
241 LangString str_vimrc_page_subtitle ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
242 "Scelta impostazioni funzionalità aggiuntive, tastiera e mouse."
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
243
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
244 LangString str_msg_compat_title ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
245 " Comportamento come Vi / Vim "
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
246 LangString str_msg_compat_desc ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
247 "&Compatibilità e funzionalità"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
248 LangString str_msg_compat_vi ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
249 "Compatibile Vi"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
250 LangString str_msg_compat_vim ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
251 "Vim originale"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
252 LangString str_msg_compat_defaults ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
253 "Vim con alcune funzionalità aggiuntive (defaults.vim)"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
254 LangString str_msg_compat_all ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
255 "Vim con tutte le funzionalità aggiuntive (vimrc_example.vim) (predefinito)"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
256
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
257 LangString str_msg_keymap_title ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
258 " Mappature tastiera "
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
259 LangString str_msg_keymap_desc ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
260 "&Rimappa alcuni tasti Windows (Ctrl-V, Ctrl-C, Ctrl-A, Ctrl-S, Ctrl-F, etc.)"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
261 LangString str_msg_keymap_default ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
262 "Non rimappare i tasti (predefinito)"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
263 LangString str_msg_keymap_windows ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
264 "Rimappa solo alcuni tasti"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
265
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
266 LangString str_msg_mouse_title ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
267 " Mouse "
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
268 LangString str_msg_mouse_desc ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
269 "&Comportamento pulsanti destro/sinistro"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
270 LangString str_msg_mouse_default ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
271 "Destro: menu popup, Sinistro: modalità visuale (predefinito)"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
272 LangString str_msg_mouse_windows ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
273 "Destro: menu popup, Sinistro: selezione modalità (Windows)"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
274 LangString str_msg_mouse_unix ${LANG_ITALIAN} \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32449
diff changeset
275 "Destro: estensione selezione, Sinistro: modalità visuale (Unix)"