Work in progress on button labels.
[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
140
141 // TODO: refactoring ongoing down from here.
142
143 // labels for controls on various forms
144 // TODO: translate label.team_name
145 // 'label.team_name' => 'team name',
146 'label.currency' => 'moneta',
147 // TODO: translate label.manager_name and label.manager_login.
148 // 'label.manager_name' => 'manager name',
149 // 'label.manager_login' => 'manager login',
150 'label.password' => 'password',
151 'label.confirm_password' => 'conferma password',
152 'label.email' => 'e-mail',
153 // TODO: translate the following.
154 // 'label.email' => 'Email',
155 'label.cc' => 'Cc',
156 // TODO: translate the following.
157 // 'label.bcc' => 'Bcc',
158 'label.subject' => 'oggetto',
159 'label.total' => 'totale',
160 // Translate the following.
161 // 'label.page' => 'Page',
162 // 'label.condition' => 'Condition',
163 // TODO: translate the following.
164 // 'label.yes' => 'yes',
165 // 'label.no' => 'no',
166 'label.delete' => 'Elimina',
167
168 // Form titles.
169 // TODO: the entire title section is missing here. See the English file.
170
171 "form.filter.project" => 'progetto',
172 "form.filter.filter" => 'report preferiti',
173 "form.filter.filter_new" => 'salva nei preferiti',
174 "form.filter.filter_confirm_delete" => 'sei sicuro di voler cancellare questo report dai preferiti?',
175
176 // login form attributes
177 "form.login.title" => 'login',
178 "form.login.login" => 'login',
179
180 // password reminder form attributes
181 "form.fpass.title" => 'reset password',
182 "form.fpass.login" => 'login',
183 "form.fpass.send_pass_str" => 'richiesta di reset pasword inviata',
184 "form.fpass.send_pass_subj" => 'richiesta di password reset', 
185 // Note to translators: the strings below must be translated
186 // "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",
187 // "form.fpass.reset_comment" => "to reset your password please type it in and click on save",
188
189 // administrator form
190 "form.admin.title" => 'amministratore',
191 // Note to translators: the string below must be translated
192 // "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).',
193
194 "form.admin.change_pass" => 'cambia la password dell\\\'amministratore',
195 "form.admin.profile.title" => 'teams',
196 "form.admin.profile.noprofiles" => 'il database è vuoto. loggati come amministratore e crea un nuovo team.',
197 "form.admin.profile.comment" => 'elimina team',
198 "form.admin.profile.th.id" => 'id',
199 "form.admin.profile.th.name" => 'nome',
200 "form.admin.profile.th.edit" => 'edit',
201 "form.admin.profile.th.del" => 'elimina',
202 "form.admin.profile.th.active" => 'attivo',
203 "form.admin.options" => 'opzioni',
204 // Note to translators: the strings below are missing and must be added and translated
205 // "form.admin.custom_date_format" => "date format",
206 // "form.admin.custom_time_format" => "time format",
207 // "form.admin.start_week" => "first day of week",
208
209 // my time form attributes
210 "form.mytime.title" => 'giorno',
211 "form.mytime.edit_title" => 'modifica time record',
212 "form.mytime.del_str" => 'elimina time record',
213 "form.mytime.time_form" => ' (hh:mm)',
214 "form.mytime.date" => 'data',
215 "form.mytime.project" => 'progetto',
216 "form.mytime.activity" => 'attività',
217 "form.mytime.start" => 'inizio',
218 "form.mytime.finish" => 'fine',
219 "form.mytime.duration" => 'durata',
220 "form.mytime.note" => 'note',
221 "form.mytime.behalf" => 'attività giornaliera per',
222 "form.mytime.daily" => 'attività giornaliera',
223 "form.mytime.total" => 'ore totali: ',
224 "form.mytime.th.project" => 'progetto',
225 "form.mytime.th.activity" => 'attività',
226 "form.mytime.th.start" => 'inizio',
227 "form.mytime.th.finish" => 'fine',
228 "form.mytime.th.duration" => 'durata',
229 "form.mytime.th.note" => 'note',
230 "form.mytime.th.edit" => 'edit',
231 "form.mytime.th.delete" => 'elimina',
232 "form.mytime.del_yes" => 'time record cancellato',
233 "form.mytime.no_finished_rec" => 'questo record è stato salvato con la sola ora di inzio attività. non è un errore. esegui il logout per altro....',
234 "form.mytime.billable" => 'fatturabile',
235 "form.mytime.warn_tozero_rec" => 'questo time record deve essere cancellato perchè il periodo di riferimento è stato bloccato',
236 // Note to translators: the string below is missing and must be added and translated
237 // "form.mytime.uncompleted" => 'uncompleted',
238
239 // profile form attributes
240 // Note to translators: we need a more accurate translation of form.profile.create_title
241 "form.profile.create_title" => 'crea un nuovo account manager',
242 "form.profile.edit_title" => 'modifca il profilo',
243 "form.profile.name" => 'nome',
244 "form.profile.login" => 'login',
245
246 // Note to translators: the strings below are missing and must be added and translated
247 // "form.profile.showchart" => 'show pie charts',
248 // "form.profile.lang" => 'language',
249 // "form.profile.custom_date_format" => "date format",
250 // "form.profile.custom_time_format" => "time format",
251 // "form.profile.default_format" => "(default)",
252 // "form.profile.start_week" => "first day of week",
253
254 // people form attributes
255 "form.people.ppl_str" => 'persone',
256 "form.people.createu_str" => 'crea un nuovo utente',
257 "form.people.edit_str" => 'modifica utente',
258 "form.people.del_str" => 'elimina utente',
259 "form.people.th.name" => 'nome',
260 "form.people.th.login" => 'login',
261 "form.people.th.role" => 'funzione',
262 "form.people.th.edit" => 'modifica',
263 "form.people.th.del" => 'elimina',
264 "form.people.th.status" => 'stato',
265 "form.people.th.project" => 'progetto',
266 "form.people.th.rate" => 'costo',
267 "form.people.manager" => 'manager',
268 "form.people.comanager" => 'comanager',
269 "form.people.empl" => 'utente',
270 "form.people.name" => 'nome',
271 "form.people.login" => 'login',
272
273 "form.people.rate" => 'costo per ora di default',
274 "form.people.comanager" => 'co-manager',
275 "form.people.projects" => 'progetti',
276
277 // projects form attributes
278 "form.project.proj_title" => 'progetti',
279 "form.project.edit_str" => 'mofifca progetto',
280 "form.project.add_str" => 'aggiungi nuovo progetto',
281 "form.project.del_str" => 'elimina progetto',
282 "form.project.th.name" => 'nome',
283 "form.project.th.edit" => 'modifica',
284 "form.project.th.del" => 'elimina',
285 "form.project.name" => 'nome',
286
287 // activities form attributes
288 "form.activity.act_title" => 'attività',
289 "form.activity.add_title" => 'aggiungi nuova attività',
290 "form.activity.edit_str" => 'modifica attività',
291 "form.activity.del_str" => 'elimina attività',
292 "form.activity.name" => 'nome',
293 "form.activity.project" => 'progetto',
294 "form.activity.th.name" => 'nome',
295 "form.activity.th.project" => 'progetto',
296 "form.activity.th.edit" => 'modifica',
297 "form.activity.th.del" => 'elimina',
298
299 // report attributes
300 "form.report.title" => 'report',
301 "form.report.from" => 'data inizio',
302 "form.report.to" => 'data fine',
303 "form.report.groupby_user" => 'utente',
304 "form.report.groupby_project" => 'progetto',
305 "form.report.groupby_activity" => 'attività',
306 "form.report.duration" => 'durata',
307 "form.report.start" => 'inizio',
308 "form.report.activity" => 'attività',
309 "form.report.show_idle" => 'mostra inattivi',
310 "form.report.finish" => 'fine',
311 "form.report.note" => 'nota',
312 "form.report.project" => 'progetto',
313 "form.report.totals_only" => 'solo i totali',
314 "form.report.total" => 'ore totali',
315 "form.report.th.empllist" => 'utente',
316 "form.report.th.date" => 'data',
317 "form.report.th.project" => 'progetto',
318 "form.report.th.activity" => 'attività',
319 "form.report.th.start" => 'inizio',
320 "form.report.th.finish" => 'fine',
321 "form.report.th.duration" => 'durata',
322 "form.report.th.note" => 'note',
323
324 // mail form attributes
325 "form.mail.from" => 'da',
326 "form.mail.to" => 'a',
327 "form.mail.comment" => 'commento',
328 "form.mail.above" => 'invia questo report tramite e-mail',
329 // Note to translators: this string needs to be translated.
330 // "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.',
331 "form.mail.sending_str" => '<b>messaggio inviato</b>',
332
333 // invoice attributes
334 "form.invoice.title" => 'fattura',
335 "form.invoice.caption" => 'fattura',
336 "form.invoice.above" => 'informazioni aggiuntive per la fattura',
337 "form.invoice.select_cust" => 'seleziona il cliente',
338 "form.invoice.fillform" => 'compila i campi',
339 "form.invoice.date" => 'data',
340 "form.invoice.number" => 'numero fattura',
341 "form.invoice.tax" => 'tassa',
342 "form.invoice.comment" => 'commento ',
343 "form.invoice.th.username" => 'persona',
344 "form.invoice.th.time" => 'ore',
345 "form.invoice.th.rate" => 'costo',
346 "form.invoice.th.summ" => 'ammontare',
347 "form.invoice.subtotal" => 'subtotale',
348 "form.invoice.customer" => 'cliente',
349 "form.invoice.mailinv_above" => 'invia la fattura tramite e-mail',
350 "form.invoice.sending_str" => '<b>fattura inviata</b>',
351
352 "form.migration.zip" => 'compressione',
353 "form.migration.file" => 'seleziona il file',
354 "form.migration.import.title" => 'importa i dati',
355 "form.migration.import.success" => 'importazione eseguita con successo',
356 "form.migration.import.text" => 'importa i dati del team da un file xml',
357 "form.migration.export.title" => 'esporta i dati',
358 "form.migration.export.success" => 'esportazione eseguita con successo',
359 "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.',
360 // Note to translators: the strings below are missing and must be added and translated
361 // "form.migration.compression.none" => 'none',
362 // "form.migration.compression.gzip" => 'gzip',
363 // "form.migration.compression.bzip" => 'bzip',
364
365 "form.client.title" => 'clienti',
366 "form.client.add_title" => 'aggiungi cliente',
367 "form.client.edit_title" => 'modifica cliente',
368 "form.client.del_title" => 'elimina cliente',
369 "form.client.th.name" => 'nome',
370 "form.client.th.edit" => 'modifica',
371 "form.client.th.del" => 'elimina',
372 "form.client.name" => 'nome',
373 "form.client.tax" => 'tassa',
374 "form.client.comment" => 'commento ',
375
376 // miscellaneous strings
377 "forward.forgot_password" => 'password dimenticata?',
378 "forward.edit" => 'modifica',
379 "forward.delete" => 'elimina',
380 "forward.tocsvfile" => 'esporta i dati in un file .csv',
381 "forward.toxmlfile" => 'esporta i dati in un file .xml',
382 "forward.geninvoice" => 'genera la fattura',
383 "forward.change" => 'configura i clienti',
384
385 // strings inside contols on forms
386 "controls.select.project" => '--- seleziona il progetto ---',
387 "controls.select.activity" => '--- seleziona la attività ---',
388 "controls.select.client" => '--- seleziona il cliente ---',
389 "controls.project_bind" => '--- tutti ---',
390 "controls.all" => '--- tutti ---',
391 "controls.notbind" => '--- no ---',
392 "controls.per_tm" => 'questo mese',
393 "controls.per_lm" => 'mese scorso',
394 "controls.per_tw" => 'questa settimana',
395 "controls.per_lw" => 'settimana scorsa',
396 "controls.per_td" => 'questo giorno',
397 "controls.per_at" => 'tutto il tempo',
398 "controls.per_ty" => 'quest\\\'anno',
399 "controls.sel_period" => '--- seleziona il periodo di tempo ---',
400 "controls.sel_groupby" => '--- non raggruppare ---',
401 "controls.inc_billable" => 'fatturabile',
402 "controls.inc_nbillable" => 'non fatturabile',
403 // Note to translators: the string below must be translated
404 // "controls.default" => '--- default ---',
405
406 // labels
407 "label.chart.title1" => 'attività per utente',
408 // Note to translators: the string below is missing and must be added and translated
409 // "label.chart.title2" => 'projects for user',
410 "label.chart.period" => 'grafico per il periodo',
411
412 "label.pinfo" => '%s, %s',
413 "label.pinfo2" => '%s',
414 "label.pbehalf_info" => '%s %s <b>a favore di %s</b>',
415 "label.pminfo" => ' (manager)',
416 "label.pcminfo" => ' (co-manager)',
417 "label.painfo" => ' (amministratore)',
418 "label.time_noentry" => 'nessun inserimento',
419 "label.today" => 'oggi',
420 "label.req_fields" => '* campi obbligatori',
421 "label.sel_project" => 'seleziona il progetto',
422 "label.sel_activity" => 'seleziona la attività',
423 "label.sel_tp" => 'seleziona il periodo di tempo',
424 "label.set_tp" => 'oppure setta le date',
425 "label.fields" => 'mostra i campi',
426 "label.group_title" => 'raggruppa per',
427 "label.include_title" => 'includi records',
428 "label.inv_str" => 'fattura',
429 "label.set_empl" => 'seleziona utenti',
430 "label.sel_all" => 'seleziona tutti',
431 "label.sel_none" => 'deseleziona tutti',
432 "label.or" => 'o',
433 "label.disable" => 'disabilita',
434 "label.enable" => 'abilita',
435 "label.filter" => 'filtro',
436 "label.timeweek" => 'totale settimanale',
437 "label.hrs" => 'ore',
438 // Note to translators: the strings below are missing and must be added and translated
439 // "label.errors" => 'errors',
440 // "label.ldap_hint" => 'Type your <b>Windows login</b> and <b>password</b> in the fields below.',
441 // "label.calendar_today" => 'today',
442 // "label.calendar_close" => 'close',
443
444 // login hello text
445 // "login.hello.text" => "Anuko Time Tracker is a simple, easy to use, open source time tracking system.",
446 );