Some more refactoring of localization files.
[timetracker.git] / WEB-INF / resources / it.lang.php
1 <?php
2 // +----------------------------------------------------------------------+
3 // | Anuko Time Tracker
4 // +----------------------------------------------------------------------+
5 // | Copyright (c) Anuko International Ltd. (https://www.anuko.com)
6 // +----------------------------------------------------------------------+
7 // | LIBERAL FREEWARE LICENSE: This source code document may be used
8 // | by anyone for any purpose, and freely redistributed alone or in
9 // | combination with other software, provided that the license is obeyed.
10 // |
11 // | There are only two ways to violate the license:
12 // |
13 // | 1. To redistribute this code in source form, with the copyright
14 // |    notice or license removed or altered. (Distributing in compiled
15 // |    forms without embedded copyright notices is permitted).
16 // |
17 // | 2. To redistribute modified versions of this code in *any* form
18 // |    that bears insufficient indications that the modifications are
19 // |    not the work of the original author(s).
20 // |
21 // | This license applies to this document only, not any other software
22 // | that it may be combined with.
23 // |
24 // +----------------------------------------------------------------------+
25 // | Contributors:
26 // | https://www.anuko.com/time_tracker/credits.htm
27 // +----------------------------------------------------------------------+
28
29 // Note: escape apostrophes with THREE backslashes, like here:  choisir l\\\'option.
30 // Other characters (such as double-quotes in http links, etc.) do not have to be escaped.
31
32 // Note to translators: Use proper capitalization rules for your language.
33
34 $i18n_language = 'Italiano';
35 $i18n_months = array('Gennaio', 'Febbraio', 'Marzo', 'Aprile', 'Maggio', 'Giugno', 'Luiglio', 'Agosto', 'Settembre', 'Ottobre', 'Novembre', 'Dicembre');
36 $i18n_weekdays = array('Domenica', 'Lunedì', 'Martedì', 'Mercoledì', 'Giovedì', 'Venerdì', 'Sabato');
37 $i18n_weekdays_short = array('Do', 'Lu', 'Ma', 'Me', 'Gi', 'Ve', 'Sa');
38 // format mm/dd
39 $i18n_holidays = array('01/01', '01/06', '04/12', '04/13', '04/25', '05/01', '06/02', '08/15', '11/01', '12/08', '12/25', '12/26');
40
41 $i18n_key_words = array(
42
43 // Menus - short selection strings that are displayed on top of application web pages.
44 // Example: https://timetracker.anuko.com (black menu on top).
45 // TODO: translate the following.
46 // 'menu.login' => 'Login',
47 // 'menu.logout' => 'Logout',
48 // 'menu.forum' => 'Forum',
49 // 'menu.help' => 'Help',
50 // 'menu.create_team' => 'Create Team',
51 'menu.profile' => 'Profilo',
52 'menu.time' => 'Tempo',
53 // TODO: translate the following.
54 // 'menu.expenses' => 'Expenses',
55 // 'menu.reports' => 'Reports',
56 // 'menu.charts' => 'Charts',
57 'menu.projects' => 'Progetti',
58 // TODO: translate the following.
59 // 'menu.tasks' => 'Tasks',
60 // 'menu.users' => 'Users',
61 // 'menu.teams' => 'Teams',
62 // 'menu.export' => 'Export',
63 'menu.clients' => 'Clienti',
64 'menu.options' => 'Opzioni',
65
66 // Footer - strings on the bottom of most pages.
67 // TODO: translate the following.
68 // 'footer.contribute_msg' => 'You can contribute to Time Tracker in different ways.',
69 // 'footer.credits' => 'Credits',
70 // 'footer.license' => 'License',
71 // 'footer.improve' => 'Contribute', // Translators: this could mean "Improve", if it makes better sense in your language.
72                                      // This is a link to a webpage that describes how to contribute to the project.
73
74 // Error messages.
75 // TODO: translate the following.
76 // 'error.access_denied' => 'Access denied.',
77 // 'error.sys' => 'System error.',
78 // 'error.db' => 'Database error.',
79 'error.field' => 'Dato "{0}" errato.',
80 'error.empty' => 'Il campo "{0}" è vuoto.',
81 'error.not_equal' => 'Il campo "{0}" non è uguale al campo "{1}".',
82 // TODO: translate the following.
83 // error.interval' => 'Field "{0}" must be greater than "{1}".',
84 'error.project' => 'Seleziona il progetto.',
85 // TODO: translate the following.
86 // 'error.task' => 'Select task.',
87 // 'error.client' => 'Select client.',
88 // 'error.report' => 'Select report.',
89 // 'error.record' => 'Select record.',
90 'error.auth' => 'Login o password errati.',
91 // TODO: translate the following.
92 // 'error.user_exists' => 'User with this login already exists.',
93 'error.project_exists' => 'Esiste già un progetto con questo nome.',
94 // TODO: translate the following.
95 // 'error.task_exists' => 'Task with this name already exists.',
96 // 'error.client_exists' => 'Client with this name already exists.',
97 // 'error.invoice_exists' => 'Invoice with this number already exists.',
98 // 'error.no_invoiceable_items' => 'There are no invoiceable items.',
99 // 'error.no_login' => 'No user with this login.',
100 // 'error.no_teams' => 'Your database is empty. Login as admin and create a new team.',
101 // 'error.upload' => 'File upload error.',
102 // 'error.range_locked' => 'Date range is locked.',
103 // 'error.mail_send' => 'Error sending mail.',
104 // 'error.no_email' => 'No email associated with this login.',
105 // 'error.uncompleted_exists' => 'Uncompleted entry already exists. Close or delete it.',
106 // 'error.goto_uncompleted' => 'Go to uncompleted entry.',
107 // 'error.overlap' => 'Time interval overlaps with existing records.',
108 // 'error.future_date' => 'Date is in future.',
109
110 // Labels for buttons.
111 'button.login' => 'Login',
112 'button.now' => 'Adesso',
113 'button.save' => 'Salva',
114 // TODO: translate the following.
115 // 'button.copy' => 'Copy',
116 'button.cancel' => 'Cancella',
117 'button.submit' => 'Invia',
118 'button.add_user' => 'Aggiungi utente',
119 'button.add_project' => 'Aggiungi progetto',
120 // TODO: translate the following.
121 // 'button.add_task' => 'Add task',
122 'button.add_client' => 'Aggiungi cliente',
123 // TODO: translate the following.
124 // 'button.add_invoice' => 'Add invoice',
125 // 'button.add_option' => 'Add option',
126 // 'button.add' => 'Add',
127 'button.generate' => 'Genera',
128 // TODO: translate the following.
129 // 'button.reset_password' => 'Reset password',
130 'button.send' => 'Invia',
131 'button.send_by_email' => 'Invia tramite e-mail',
132 'button.create_team' => 'Crea team',
133 'button.export' => 'Esporta team',
134 'button.import' => 'Importa team',
135 // TODO: translate the following.
136 // 'button.close' => 'Close',
137 // 'button.stop' => 'Stop',
138
139 // Labels for controls on forms. Labels in this section are used on multiple forms.
140 // TODO: translate the following.
141 // 'label.team_name' => 'Team name',
142 // 'label.address' => 'Address',
143 'label.currency' => 'Moneta',
144 // TODO: translate the following.
145 // 'label.manager_name' => 'Manager name',
146 // 'label.manager_login' => 'Manager login',
147 // 'label.person_name' => 'Name',
148 // 'label.thing_name' => 'Name',
149 // 'label.login' => 'Login',
150 'label.password' => 'Password',
151 'label.confirm_password' => 'Conferma password',
152 'label.email' => 'E-mail',
153 'label.cc' => 'Cc',
154 // TODO: translate the following.
155 // 'label.bcc' => 'Bcc',
156 'label.subject' => 'Oggetto',
157 // TODO: translate the following.
158 // 'label.date' => 'Date',
159 // 'label.start_date' => 'Start date',
160 // 'label.end_date' => 'End date',
161 // 'label.user' => 'User',
162 // 'label.users' => 'Users',
163 // 'label.client' => 'Client',
164 // 'label.clients' => 'Clients',
165 // 'label.option' => 'Option',
166 // 'label.invoice' => 'Invoice',
167 // 'label.project' => 'Project',
168 // 'label.projects' => 'Projects',
169 // 'label.task' => 'Task',
170 // 'label.tasks' => 'Tasks',
171 // 'label.description' => 'Description',
172 // 'label.start' => 'Start',
173 // 'label.finish' => 'Finish',
174 // 'label.duration' => 'Duration',
175 // 'label.note' => 'Note',
176 // 'label.notes' => 'Notes',
177 // 'label.item' => 'Item',
178 // 'label.cost' => 'Cost',
179 // 'label.day_total' => 'Day total',
180 // 'label.week_total' => 'Week total',
181 // 'label.month_total' => 'Month total',
182 // 'label.today' => 'Today',
183 // 'label.total_hours' => 'Total hours',
184 // 'label.total_cost' => 'Total cost',
185 // 'label.view' => 'View',
186 // 'label.edit' => 'Edit',
187 'label.delete' => 'Elimina',
188 // TODO: translate the following.
189 // 'label.configure' => 'Configure',
190 // 'label.select_all' => 'Select all',
191 // 'label.select_none' => 'Deselect all',
192 // 'label.day_view' => 'Day view',
193 // 'label.week_view' => 'Week view',
194 // 'label.id' => 'ID',
195 // 'label.language' => 'Language',
196 // 'label.decimal_mark' => 'Decimal mark',
197 // 'label.date_format' => 'Date format',
198 // 'label.time_format' => 'Time format',
199 // 'label.week_start' => 'First day of week',
200 // 'label.comment' => 'Comment',
201 // 'label.status' => 'Status',
202 // 'label.tax' => 'Tax',
203 // 'label.subtotal' => 'Subtotal',
204 'label.total' => 'Totale',
205 // TODO: translate the following.
206 // 'label.client_name' => 'Client name',
207 // 'label.client_address' => 'Client address',
208 // 'label.or' => 'or',
209 // 'label.error' => 'Error',
210 // 'label.ldap_hint' => 'Type your <b>Windows login</b> and <b>password</b> in the fields below.',
211 // 'label.required_fields' => '* - required fields',
212 // 'label.on_behalf' => 'on behalf of',
213 // 'label.role_manager' => '(manager)',
214 // 'label.role_comanager' => '(co-manager)',
215 // 'label.role_admin' => '(administrator)',
216 // 'label.page' => 'Page',
217 // 'label.condition' => 'Condition',
218 // 'label.yes' => 'yes',
219 // 'label.no' => 'no',
220
221
222
223 // TODO: refactoring ongoing down from here.
224
225 // Form titles.
226 // TODO: the entire title section is missing here. See the English file.
227
228 "form.filter.project" => 'progetto',
229 "form.filter.filter" => 'report preferiti',
230 "form.filter.filter_new" => 'salva nei preferiti',
231 "form.filter.filter_confirm_delete" => 'sei sicuro di voler cancellare questo report dai preferiti?',
232
233 // login form attributes
234 "form.login.title" => 'login',
235 "form.login.login" => 'login',
236
237 // password reminder form attributes
238 "form.fpass.title" => 'reset password',
239 "form.fpass.login" => 'login',
240 "form.fpass.send_pass_str" => 'richiesta di reset pasword inviata',
241 "form.fpass.send_pass_subj" => 'richiesta di password reset', 
242 // Note to translators: the strings below must be translated
243 // "form.fpass.send_pass_body" => "Dear User,\n\nSomeone, possibly you, requested your Anuko Time Tracker password reset. Please visit this link if you want to reset your password.\n\n%s\n\nAnuko Time Tracker is a simple, easy to use, open source time tracking system. Visit https://www.anuko.com for more information.\n\n",
244 // "form.fpass.reset_comment" => "to reset your password please type it in and click on save",
245
246 // administrator form
247 "form.admin.title" => 'amministratore',
248 // Note to translators: the string below must be translated
249 // "form.admin.duty_text" => 'create a new team by creating a new team manager account.<br>you can also import team data from an xml file from another Anuko Time Tracker server (no e-mail collisions are allowed).',
250
251 "form.admin.change_pass" => 'cambia la password dell\\\'amministratore',
252 "form.admin.profile.title" => 'teams',
253 "form.admin.profile.noprofiles" => 'il database è vuoto. loggati come amministratore e crea un nuovo team.',
254 "form.admin.profile.comment" => 'elimina team',
255 "form.admin.profile.th.id" => 'id',
256 "form.admin.profile.th.name" => 'nome',
257 "form.admin.profile.th.edit" => 'edit',
258 "form.admin.profile.th.del" => 'elimina',
259 "form.admin.profile.th.active" => 'attivo',
260 "form.admin.options" => 'opzioni',
261 // Note to translators: the strings below are missing and must be added and translated
262 // "form.admin.custom_date_format" => "date format",
263 // "form.admin.custom_time_format" => "time format",
264 // "form.admin.start_week" => "first day of week",
265
266 // my time form attributes
267 "form.mytime.title" => 'giorno',
268 "form.mytime.edit_title" => 'modifica time record',
269 "form.mytime.del_str" => 'elimina time record',
270 "form.mytime.time_form" => ' (hh:mm)',
271 "form.mytime.date" => 'data',
272 "form.mytime.project" => 'progetto',
273 "form.mytime.activity" => 'attività',
274 "form.mytime.start" => 'inizio',
275 "form.mytime.finish" => 'fine',
276 "form.mytime.duration" => 'durata',
277 "form.mytime.note" => 'note',
278 "form.mytime.behalf" => 'attività giornaliera per',
279 "form.mytime.daily" => 'attività giornaliera',
280 "form.mytime.total" => 'ore totali: ',
281 "form.mytime.th.project" => 'progetto',
282 "form.mytime.th.activity" => 'attività',
283 "form.mytime.th.start" => 'inizio',
284 "form.mytime.th.finish" => 'fine',
285 "form.mytime.th.duration" => 'durata',
286 "form.mytime.th.note" => 'note',
287 "form.mytime.th.edit" => 'edit',
288 "form.mytime.th.delete" => 'elimina',
289 "form.mytime.del_yes" => 'time record cancellato',
290 "form.mytime.no_finished_rec" => 'questo record è stato salvato con la sola ora di inzio attività. non è un errore. esegui il logout per altro....',
291 "form.mytime.billable" => 'fatturabile',
292 "form.mytime.warn_tozero_rec" => 'questo time record deve essere cancellato perchè il periodo di riferimento è stato bloccato',
293 // Note to translators: the string below is missing and must be added and translated
294 // "form.mytime.uncompleted" => 'uncompleted',
295
296 // profile form attributes
297 // Note to translators: we need a more accurate translation of form.profile.create_title
298 "form.profile.create_title" => 'crea un nuovo account manager',
299 "form.profile.edit_title" => 'modifca il profilo',
300 "form.profile.name" => 'nome',
301 "form.profile.login" => 'login',
302
303 // Note to translators: the strings below are missing and must be added and translated
304 // "form.profile.showchart" => 'show pie charts',
305 // "form.profile.lang" => 'language',
306 // "form.profile.custom_date_format" => "date format",
307 // "form.profile.custom_time_format" => "time format",
308 // "form.profile.default_format" => "(default)",
309 // "form.profile.start_week" => "first day of week",
310
311 // people form attributes
312 "form.people.ppl_str" => 'persone',
313 "form.people.createu_str" => 'crea un nuovo utente',
314 "form.people.edit_str" => 'modifica utente',
315 "form.people.del_str" => 'elimina utente',
316 "form.people.th.name" => 'nome',
317 "form.people.th.login" => 'login',
318 "form.people.th.role" => 'funzione',
319 "form.people.th.edit" => 'modifica',
320 "form.people.th.del" => 'elimina',
321 "form.people.th.status" => 'stato',
322 "form.people.th.project" => 'progetto',
323 "form.people.th.rate" => 'costo',
324 "form.people.manager" => 'manager',
325 "form.people.comanager" => 'comanager',
326 "form.people.empl" => 'utente',
327 "form.people.name" => 'nome',
328 "form.people.login" => 'login',
329
330 "form.people.rate" => 'costo per ora di default',
331 "form.people.comanager" => 'co-manager',
332 "form.people.projects" => 'progetti',
333
334 // projects form attributes
335 "form.project.proj_title" => 'progetti',
336 "form.project.edit_str" => 'mofifca progetto',
337 "form.project.add_str" => 'aggiungi nuovo progetto',
338 "form.project.del_str" => 'elimina progetto',
339 "form.project.th.name" => 'nome',
340 "form.project.th.edit" => 'modifica',
341 "form.project.th.del" => 'elimina',
342 "form.project.name" => 'nome',
343
344 // activities form attributes
345 "form.activity.act_title" => 'attività',
346 "form.activity.add_title" => 'aggiungi nuova attività',
347 "form.activity.edit_str" => 'modifica attività',
348 "form.activity.del_str" => 'elimina attività',
349 "form.activity.name" => 'nome',
350 "form.activity.project" => 'progetto',
351 "form.activity.th.name" => 'nome',
352 "form.activity.th.project" => 'progetto',
353 "form.activity.th.edit" => 'modifica',
354 "form.activity.th.del" => 'elimina',
355
356 // report attributes
357 "form.report.title" => 'report',
358 "form.report.from" => 'data inizio',
359 "form.report.to" => 'data fine',
360 "form.report.groupby_user" => 'utente',
361 "form.report.groupby_project" => 'progetto',
362 "form.report.groupby_activity" => 'attività',
363 "form.report.duration" => 'durata',
364 "form.report.start" => 'inizio',
365 "form.report.activity" => 'attività',
366 "form.report.show_idle" => 'mostra inattivi',
367 "form.report.finish" => 'fine',
368 "form.report.note" => 'nota',
369 "form.report.project" => 'progetto',
370 "form.report.totals_only" => 'solo i totali',
371 "form.report.total" => 'ore totali',
372 "form.report.th.empllist" => 'utente',
373 "form.report.th.date" => 'data',
374 "form.report.th.project" => 'progetto',
375 "form.report.th.activity" => 'attività',
376 "form.report.th.start" => 'inizio',
377 "form.report.th.finish" => 'fine',
378 "form.report.th.duration" => 'durata',
379 "form.report.th.note" => 'note',
380
381 // mail form attributes
382 "form.mail.from" => 'da',
383 "form.mail.to" => 'a',
384 "form.mail.comment" => 'commento',
385 "form.mail.above" => 'invia questo report tramite e-mail',
386 // Note to translators: this string needs to be translated.
387 // "form.mail.footer_str" => 'Anuko Time Tracker is a simple, easy to use, open source<br>time tracking system. Visit <a href="https://www.anuko.com">www.anuko.com</a> for more information.',
388 "form.mail.sending_str" => '<b>messaggio inviato</b>',
389
390 // invoice attributes
391 "form.invoice.title" => 'fattura',
392 "form.invoice.caption" => 'fattura',
393 "form.invoice.above" => 'informazioni aggiuntive per la fattura',
394 "form.invoice.select_cust" => 'seleziona il cliente',
395 "form.invoice.fillform" => 'compila i campi',
396 "form.invoice.date" => 'data',
397 "form.invoice.number" => 'numero fattura',
398 "form.invoice.tax" => 'tassa',
399 "form.invoice.comment" => 'commento ',
400 "form.invoice.th.username" => 'persona',
401 "form.invoice.th.time" => 'ore',
402 "form.invoice.th.rate" => 'costo',
403 "form.invoice.th.summ" => 'ammontare',
404 "form.invoice.subtotal" => 'subtotale',
405 "form.invoice.customer" => 'cliente',
406 "form.invoice.mailinv_above" => 'invia la fattura tramite e-mail',
407 "form.invoice.sending_str" => '<b>fattura inviata</b>',
408
409 "form.migration.zip" => 'compressione',
410 "form.migration.file" => 'seleziona il file',
411 "form.migration.import.title" => 'importa i dati',
412 "form.migration.import.success" => 'importazione eseguita con successo',
413 "form.migration.import.text" => 'importa i dati del team da un file xml',
414 "form.migration.export.title" => 'esporta i dati',
415 "form.migration.export.success" => 'esportazione eseguita con successo',
416 "form.migration.export.text" => 'puoi esporate tutti i dati dei team in un file xml. questo può essere utile se devi trasferire i dati da un server ad un altro.',
417 // Note to translators: the strings below are missing and must be added and translated
418 // "form.migration.compression.none" => 'none',
419 // "form.migration.compression.gzip" => 'gzip',
420 // "form.migration.compression.bzip" => 'bzip',
421
422 "form.client.title" => 'clienti',
423 "form.client.add_title" => 'aggiungi cliente',
424 "form.client.edit_title" => 'modifica cliente',
425 "form.client.del_title" => 'elimina cliente',
426 "form.client.th.name" => 'nome',
427 "form.client.th.edit" => 'modifica',
428 "form.client.th.del" => 'elimina',
429 "form.client.name" => 'nome',
430 "form.client.tax" => 'tassa',
431 "form.client.comment" => 'commento ',
432
433 // miscellaneous strings
434 "forward.forgot_password" => 'password dimenticata?',
435 "forward.edit" => 'modifica',
436 "forward.delete" => 'elimina',
437 "forward.tocsvfile" => 'esporta i dati in un file .csv',
438 "forward.toxmlfile" => 'esporta i dati in un file .xml',
439 "forward.geninvoice" => 'genera la fattura',
440 "forward.change" => 'configura i clienti',
441
442 // strings inside contols on forms
443 "controls.select.project" => '--- seleziona il progetto ---',
444 "controls.select.activity" => '--- seleziona la attività ---',
445 "controls.select.client" => '--- seleziona il cliente ---',
446 "controls.project_bind" => '--- tutti ---',
447 "controls.all" => '--- tutti ---',
448 "controls.notbind" => '--- no ---',
449 "controls.per_tm" => 'questo mese',
450 "controls.per_lm" => 'mese scorso',
451 "controls.per_tw" => 'questa settimana',
452 "controls.per_lw" => 'settimana scorsa',
453 "controls.per_td" => 'questo giorno',
454 "controls.per_at" => 'tutto il tempo',
455 "controls.per_ty" => 'quest\\\'anno',
456 "controls.sel_period" => '--- seleziona il periodo di tempo ---',
457 "controls.sel_groupby" => '--- non raggruppare ---',
458 "controls.inc_billable" => 'fatturabile',
459 "controls.inc_nbillable" => 'non fatturabile',
460 // Note to translators: the string below must be translated
461 // "controls.default" => '--- default ---',
462
463 // labels
464 "label.chart.title1" => 'attività per utente',
465 // Note to translators: the string below is missing and must be added and translated
466 // "label.chart.title2" => 'projects for user',
467 "label.chart.period" => 'grafico per il periodo',
468
469 "label.pinfo" => '%s, %s',
470 "label.pinfo2" => '%s',
471 "label.pbehalf_info" => '%s %s <b>a favore di %s</b>',
472 "label.pminfo" => ' (manager)',
473 "label.pcminfo" => ' (co-manager)',
474 "label.painfo" => ' (amministratore)',
475 "label.time_noentry" => 'nessun inserimento',
476 "label.today" => 'oggi',
477 "label.req_fields" => '* campi obbligatori',
478 "label.sel_project" => 'seleziona il progetto',
479 "label.sel_activity" => 'seleziona la attività',
480 "label.sel_tp" => 'seleziona il periodo di tempo',
481 "label.set_tp" => 'oppure setta le date',
482 "label.fields" => 'mostra i campi',
483 "label.group_title" => 'raggruppa per',
484 "label.include_title" => 'includi records',
485 "label.inv_str" => 'fattura',
486 "label.set_empl" => 'seleziona utenti',
487 "label.sel_all" => 'seleziona tutti',
488 "label.sel_none" => 'deseleziona tutti',
489 "label.or" => 'o',
490 "label.disable" => 'disabilita',
491 "label.enable" => 'abilita',
492 "label.filter" => 'filtro',
493 "label.timeweek" => 'totale settimanale',
494 "label.hrs" => 'ore',
495 // Note to translators: the strings below are missing and must be added and translated
496 // "label.errors" => 'errors',
497 // "label.ldap_hint" => 'Type your <b>Windows login</b> and <b>password</b> in the fields below.',
498 // "label.calendar_today" => 'today',
499 // "label.calendar_close" => 'close',
500
501 // login hello text
502 // "login.hello.text" => "Anuko Time Tracker is a simple, easy to use, open source time tracking system.",
503 );