3 * Italian (it) translation file.
4 * Based on phpScheduleIt translation file.
5 * This also serves as the base translation file from which to derive
6 * all other translations.
8 * @author Paolo Cravero <pcravero@as2594.net>
12 * Copyright (C) 2005 - MailZu
13 * License: GPL, see LICENSE
15 ///////////////////////////////////////////////////////////
17 ///////////////////////////////////////////////////////////
18 // This file contains all of the strings that are used throughout phpScheduleit.
19 // Please save the translated file as '2 letter language code'.lang.php. For example, en.lang.php.
21 // To make phpScheduleIt available in another language, simply translate each
22 // of the following strings into the appropriate one for the language. If there
23 // is no direct translation, please provide the closest translation. Please be sure
24 // to make the proper additions the /config/langs.php file (instructions are in the file).
25 // Also, please add a help translation for your language using en.help.php as a base.
27 // You will probably keep all sprintf (%s) tags in their current place. These tags
28 // are there as a substitution placeholder. Please check the output after translating
29 // to be sure that the sentences make sense.
31 // + Please use single quotes ' around all $strings. If you need to use the ' character, please enter it as \'
32 // + Please use double quotes " around all $email. If you need to use the " character, please enter it as \"
34 // + For all $dates please use the PHP strftime() syntax
35 // http://us2.php.net/manual/en/function.strftime.php
37 // + Non-intuitive parts of this file will be explained with comments. If you
38 // have any questions, please email lqqkout13@users.sourceforge.net
39 // or post questions in the Developers forum on SourceForge
40 // http://sourceforge.net/forum/forum.php?forum_id=331297
41 ///////////////////////////////////////////////////////////
43 ////////////////////////////////
44 /* Do not modify this section */
45 ////////////////////////////////
54 global $days_letter; //
55 global $months_full; //
56 global $months_abbr; //
57 global $days_letter; //
58 /******************************/
60 // Charset for this language
61 // 'iso-8859-1' will work for most languages
62 $charset = 'iso-8859-1';
66 All of these arrays MUST start with Sunday as the first element
67 and go through the seven day week, ending on Saturday
70 $days_full = array('Domenica', 'Lunedi', 'Martedi', 'Mercoledi', 'Giovedi', 'Venerdi', 'Sabato');
71 // The three letter abbreviation
72 $days_abbr = array('Dom', 'Lun', 'Mar', 'Mer', 'Gio', 'Ven', 'Sab');
73 // The two letter abbreviation
74 $days_two = array('Do', 'Lu', 'Ma', 'Me', 'Gi', 'Ve', 'Sa');
75 // The one letter abbreviation
76 $days_letter = array('D', 'L', 'm', 'M', 'G', 'V', 'S');
80 All of these arrays MUST start with January as the first element
81 and go through the twelve months of the year, ending on December
83 // The full month name
84 $months_full = array('Gennaio', 'Febbraio', 'Marzo', 'Aprile', 'Maggio', 'Giugno', 'Luglio', 'Agosto', 'Settembre', 'Ottobre', 'Novembre', 'Dicembre');
85 // The three letter month name
86 $months_abbr = array('Gen', 'Feb', 'Mar', 'Apr', 'MaG', 'Giu', 'Lug', 'Ago', 'Set', 'Ott', 'Nov', 'Dic');
88 // All letters of the alphabet starting with A and ending with Z
89 $letters = array ('A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z');
93 All of the date formatting must use the PHP strftime() syntax
94 You can include any text/HTML formatting in the translation
96 // General date formatting used for all date display unless otherwise noted
97 $dates['general_date'] = '%d/%m/%Y';
98 // General datetime formatting used for all datetime display unless otherwise noted
99 // The hour:minute:second will always follow this format
100 $dates['general_datetime'] = '%d/%m/%Y @';
101 // Date on top-right of each page
102 $dates['header'] = '%A, %d %B %Y';
106 All of these strings should be translated from the English value (right side of the equals sign) to the new language.
107 - Please keep the keys (between the [] brackets) as they are. The keys will not always be the same as the value.
108 - Please keep the sprintf formatting (%s) placeholders where they are unless you are sure it needs to be moved.
109 - Please keep the HTML and punctuation as-is unless you know that you want to change it.
111 $strings['hours'] = 'ore';
112 $strings['minutes'] = 'minuti';
113 // The common abbreviation to hint that a user should enter the month as 2 digits
114 $strings['mm'] = 'mm';
115 // The common abbreviation to hint that a user should enter the day as 2 digits
116 $strings['dd'] = 'gg';
117 // The common abbreviation to hint that a user should enter the year as 4 digits
118 $strings['yyyy'] = 'aaaa';
119 $strings['am'] = 'am';
120 $strings['pm'] = 'pm';
122 $strings['Administrator'] = 'Amministratore';
123 $strings['Welcome Back'] = 'Benvenuto, %s';
124 $strings['Log Out'] = 'Esci';
125 $strings['Help'] = 'Aiuto';
127 $strings['Admin Email'] = 'Admin Email';
129 $strings['Default'] = 'Default';
130 $strings['Reset'] = 'Reset';
131 $strings['Edit'] = 'Modifica';
132 $strings['Delete'] = 'Cancella';
133 $strings['Cancel'] = 'Annulla';
134 $strings['View'] = 'Visualizza';
135 $strings['Modify'] = 'Modifica';
136 $strings['Save'] = 'Salva';
137 $strings['Back'] = 'Indietro';
138 $strings['BackMessageIndex'] = 'Elenco Messaggi';
139 $strings['ToggleHeaders'] = 'Intestazioni Si/No';
140 $strings['ViewOriginal'] = 'Messaggio Originale';
141 $strings['Next'] = 'succ.';
142 $strings['Close Window'] = 'Close Window';
143 $strings['Search'] = 'Cerca';
144 $strings['Clear'] = 'Pulisci';
146 $strings['Days to Show'] = 'Days to Show';
147 $strings['Reservation Offset'] = 'Reservation Offset';
148 $strings['Hidden'] = 'Hidden';
149 $strings['Show Summary'] = 'Show Summary';
150 $strings['Add Schedule'] = 'Add Schedule';
151 $strings['Edit Schedule'] = 'Edit Schedule';
152 $strings['No'] = 'No';
153 $strings['Yes'] = 'Yes';
154 $strings['Name'] = 'Name';
155 $strings['First Name'] = 'First Name';
156 $strings['Last Name'] = 'Last Name';
157 $strings['Resource Name'] = 'Resource Name';
158 $strings['Email'] = 'Email';
159 $strings['Institution'] = 'Institution';
160 $strings['Phone'] = 'Phone';
161 $strings['Password'] = 'Password';
162 $strings['Permissions'] = 'Permissions';
163 $strings['View information about'] = 'View information about %s %s';
164 $strings['Send email to'] = 'Send email to %s %s';
165 $strings['Reset password for'] = 'Reset password for %s %s';
166 $strings['Edit permissions for'] = 'Edit permissions for %s %s';
167 $strings['Position'] = 'Position';
168 $strings['Password (6 char min)'] = 'Password (%s char min)'; // @since 1.1.0
169 $strings['Re-Enter Password'] = 'Re-Enter Password';
171 $strings['Date'] = 'Date';
172 $strings['Email Users'] = 'Email Users';
173 $strings['Subject'] = 'Oggetto';
174 $strings['Message'] = 'Messaggio';
175 $strings['Send Email'] = 'Send Email';
176 $strings['problem sending email'] = 'Sorry, there was a problem sending your email. Please try again later.';
177 $strings['The email sent successfully.'] = 'The email sent successfully.';
178 $strings['Email address'] = 'Email address';
179 $strings['Please Log In'] = 'Inserire le proprie credenziali';
180 $strings['Keep me logged in'] = 'Ricorda le credenziali <br/>(richiede i cookies)';
181 $strings['Password'] = 'Password';
182 $strings['Log In'] = 'Entra';
183 $strings['Get online help'] = 'Get online help';
184 $strings['Language'] = 'Lingua';
185 $strings['(Default)'] = '(Default)';
187 $strings['Email Administrator'] = 'Scrivi all\'amministratore';
189 $strings['N/A'] = 'N/A';
190 $strings['Summary'] = 'Summary';
192 $strings['View stats for schedule'] = 'View stats for schedule:';
193 $strings['At A Glance'] = 'At A Glance';
194 $strings['Total Users'] = 'Total Users:';
195 $strings['Total Resources'] = 'Total Resources:';
196 $strings['Total Reservations'] = 'Total Reservations:';
197 $strings['Max Reservation'] = 'Max Reservation:';
198 $strings['Min Reservation'] = 'Min Reservation:';
199 $strings['Avg Reservation'] = 'Avg Reservation:';
200 $strings['Most Active Resource'] = 'Most Active Resource:';
201 $strings['Most Active User'] = 'Most Active User:';
202 $strings['System Stats'] = 'System Stats';
203 $strings['phpScheduleIt version'] = 'phpScheduleIt version:';
204 $strings['Database backend'] = 'Database backend:';
205 $strings['Database name'] = 'Database name:';
206 $strings['PHP version'] = 'PHP version:';
207 $strings['Server OS'] = 'Server OS:';
208 $strings['Server name'] = 'Server name:';
209 $strings['phpScheduleIt root directory'] = 'phpScheduleIt root directory:';
210 $strings['Using permissions'] = 'Using permissions:';
211 $strings['Using logging'] = 'Using logging:';
212 $strings['Log file'] = 'Log file:';
213 $strings['Admin email address'] = 'Admin email address:';
214 $strings['Tech email address'] = 'Tech email address:';
215 $strings['CC email addresses'] = 'CC email addresses:';
216 $strings['Reservation start time'] = 'Reservation start time:';
217 $strings['Reservation end time'] = 'Reservation end time:';
218 $strings['Days shown at a time'] = 'Days shown at a time:';
219 $strings['Reservations'] = 'Reservations';
220 $strings['Return to top'] = 'Return to top';
221 $strings['for'] = 'for';
223 $strings['Per page'] = 'Per page:';
224 $strings['Page'] = 'Page:';
226 $strings['You are not logged in!'] = 'You are not logged in!';
228 $strings['Setup'] = 'Setup';
229 $strings['Invalid User Name/Password.'] = 'Login e/o Password errati.';
231 $strings['Valid username is required'] = 'Valid username is required';
233 $strings['Close'] = 'Close';
235 $strings['Admin'] = 'Admin';
237 $strings['My Quick Links'] = 'Menu';
239 $strings['Go to first page'] = 'Vai alla prima pagina';
240 $strings['Go to last page'] = 'Vai all\'ultima pagina';
241 $strings['Sort by descending order'] = 'Sort by descending order';
242 $strings['Sort by ascending order'] = 'Sort by ascending order';
243 $strings['Spam Quarantine'] = 'Quarantena Spam';
244 $strings['Message View'] = 'Visualizzazione Messaggio';
245 $strings['Attachment Quarantine'] = 'Quarantena Allegati';
246 $strings['No such content type'] = 'No such content type';
247 $strings['No message was selected'] = 'Nessun messaggio selezionato ...';
248 $strings['Unknown action type'] = 'Tipo di richiesta sconosciuta ...';
249 $strings['A problem occured when trying to release the following messages'] = 'Si è verificato un problema cercando di sbloccare i seguenti messaggi';
250 $strings['A problem occured when trying to delete the following messages'] = 'Si è verificato un problema cercando di cancellare i seguenti messaggi';
251 $strings['Please release the following messages'] = 'Per cortesia vogliate sbloccare i seguenti messaggi';
252 $strings['To'] = 'A';
253 $strings['From'] = 'Da';
254 $strings['Subject'] = 'Oggetto';
255 $strings['Date'] = 'Data';
256 $strings['Score'] = 'Punteggio';
257 $strings['Mail ID'] = 'ID Messaggio';
258 $strings['Status'] = 'Stato';
259 $strings['Print'] = 'Stampa';
260 $strings['CloseWindow'] = 'Chiudi';
261 $strings['Unknown server type'] = 'Tipo di server sconosciuto ...';
262 $strings['Showing messages'] = "Messaggi dal %s al %s (%s in totale)\r\n";
263 $strings['View this message'] = 'Apri questo messaggio';
264 $strings['Message Unavailable'] = 'Messaggio non disponibile';
265 $strings['My Quarantine'] = 'Quarantena';
266 $strings['Site Quarantine'] = 'Quarantena globale';
267 $strings['Message Processing'] = 'Elaborazione Messaggio';
268 $strings['Quarantine Summary'] = 'Statistiche Quarantena';
269 $strings['Site Quarantine Summary'] = 'Statistiche Quarantena globale';
270 $strings['Login'] = 'Login';
271 $strings['spam(s)'] = 'spam';
272 $strings['attachment(s)'] = 'allegati';
273 $strings['pending release request(s)'] = 'richiesta/e di sblocco accodate';
274 $strings['virus(es)'] = 'virus(es)';
275 $strings['bad header(s)'] = 'intestazione/i difettosa/e';
276 $strings['You have to type some text'] = 'E\' obbligatorio inserire del testo';
277 $strings['Release'] = 'Sblocca';
278 $strings['Release/Request release'] = 'Sblocca/Richiedi sblocco';
279 $strings['Request release'] = 'Richiedi slocco';
280 $strings['Delete'] = 'Cancella';
281 $strings['Delete All'] = 'Cancella Tutti';
282 $strings['Send report and go back'] = 'Invia il rapporto e torna alla pagina precedente';
283 $strings['Go back'] = "Indietro";
284 $strings['Select All'] = "Seleziona Tutti";
285 $strings['Clear All'] = "Deseleziona Tutti";
286 $strings['Access Denied'] = "Accesso Negato ";
287 $strings['My Pending Requests'] = "Richieste in sospeso";
288 $strings['Site Pending Requests'] = "Richieste in sospeso (globali)";
289 $strings['Cancel Request'] = "Cancella la Richiesta";
290 $strings['User is not allowed to login'] = "Utente non autorizzato al servizio";
291 $strings['Authentication successful'] = "Autenticazione riuscita";
292 $strings['Authentication failed'] = "Autenticazione fallita";
293 $strings['LDAP connection failed'] = "Connessione al server LDAP/AD fallita";
294 $strings['Logout successful'] = "Logout riuscito";
295 $strings['IMAP Authentication: no match'] = "Autenticazione IMAP: non trovato";
296 $strings['Search for messages whose:'] = "Cerca i messaggi che:";
297 $strings['Content Type'] = "Content Type";
298 $strings['Clear search results'] = "Azzera il risultato della ricerca";
299 $strings['contains'] = "contiene";
300 $strings['doesn\'t contain'] = "non contiene";
301 $strings['equals'] = "uguale a";
302 $strings['doesn\'t equal'] = "diverso da";
303 $strings['All'] = "Tutti";
304 $strings['Spam'] = "Spam";
305 $strings['Banned'] = "Non permesso";
306 $strings['Bad Header'] = "Intestazione Difettosa";
307 $strings['Bad Headers'] = "Intestazioni Difettose";
308 $strings['Pending Requests'] = 'Richieste in sospeso';
309 $strings['Virus'] = "Virus";
310 $strings['Viruses'] = "Viruses";
311 $strings['last'] = "ultima";
312 $strings['first'] = "prima";
313 $strings['previous'] = "prec.";
314 $strings['There was an error executing your query'] = 'E\' stato riscontrato un errore durante la ricerca sul database:';
315 $strings['There are no matching records.'] = 'Nessun record trovato.';
316 $strings['Domain'] = 'Dominio';
317 $strings['Total'] = 'Totali';
318 $strings['X-Amavis-Alert'] = 'X-Amavis-Alert';
319 $strings['Loading Summary...'] = 'Caricamento in corso...';
320 $strings['Retrieving Messages...'] = 'Download dei messaggi...';