A bit more progress on timesheet coding.
[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 = 'Italian (Italiano)';
35 $i18n_months = array('Gennaio', 'Febbraio', 'Marzo', 'Aprile', 'Maggio', 'Giugno', 'Luglio', '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 'menu.login' => 'Login',
46 'menu.logout' => 'Logout',
47 'menu.forum' => 'Forum',
48 'menu.help' => 'Aiuto',
49 'menu.create_group' => 'Crea gruppo',
50 'menu.profile' => 'Profilo',
51 'menu.group' => 'Gruppo',
52 'menu.plugins' => 'Plugin',
53 'menu.time' => 'Tempo',
54 'menu.expenses' => 'Spese',
55 'menu.reports' => 'Rapporti',
56 // TODO: translate the following.
57 // 'menu.timesheets' => 'Timesheets',
58 'menu.charts' => 'Grafici',
59 'menu.projects' => 'Progetti',
60 'menu.tasks' => 'Compiti',
61 'menu.users' => 'Utenti',
62 'menu.groups' => 'Gruppi',
63 // TODO: translate the following.
64 // 'menu.subgroups' => 'Subgroups',
65 'menu.export' => 'Esportazione',
66 'menu.clients' => 'Clienti',
67 'menu.options' => 'Opzioni',
68
69 // Footer - strings on the bottom of most pages.
70 'footer.contribute_msg' => 'Puoi collaborare al progetto Time Tracker in diversi modi.',
71 'footer.credits' => 'Credits',
72 'footer.license' => 'Licenza',
73 'footer.improve' => 'Collabora',
74
75 // Error messages.
76 'error.access_denied' => 'Accesso negato.',
77 'error.sys' => 'Errore di sistema.',
78 'error.db' => 'Errore database.',
79 // TODO: translate the following.
80 // 'error.feature_disabled' => 'Feature is disabled.',
81 'error.field' => 'Dato "{0}" errato.',
82 'error.empty' => 'Il campo "{0}" è vuoto.',
83 'error.not_equal' => 'Il campo "{0}" non è uguale al campo "{1}".',
84 'error.interval' => 'Il campo "{0}" deve essere maggiore di "{1}".',
85 'error.project' => 'Seleziona il progetto.',
86 'error.task' => 'Seleziona compito.',
87 'error.client' => 'Seleziona il cliente.',
88 'error.report' => 'Seleziona rapporto.',
89 'error.record' => 'Seleziona record.',
90 'error.auth' => 'Login o password errati.',
91 'error.user_exists' => 'Esiste già un utente con questo username.',
92 // TODO: translate the following.
93 // 'error.object_exists' => 'Object with this name already exists.',
94 'error.invoice_exists' => 'Esiste già una fattura con questo numero.',
95 // TODO: translate the following.
96 // 'error.role_exists' => 'Role with this rank already exists.',
97 'error.no_invoiceable_items' => 'Non ci sono voci fatturabili.',
98 // TODO: translate the following.
99 // 'error.no_records' => 'There are no records.',
100 'error.no_login' => 'Non esiste un utente con questo username.',
101 'error.no_groups' => 'Il database è vuoto. Loggati come amministratore e crea un nuovo gruppo.',
102 'error.upload' => 'Errore di caricamento file.',
103 'error.range_locked' => 'Intervallo data bloccato.',
104 'error.mail_send' => 'Errore nella fase di invio mail.',
105 // TODO: improve the translation above by adding MAIL_SMTP_DEBUG part.
106 // 'error.mail_send' => 'Error sending mail. Use MAIL_SMTP_DEBUG for diagnostics.',
107 'error.no_email' => 'Non ci sono email associate a questo username.',
108 'error.uncompleted_exists' => 'Esiste una voce incompleta. Chiudila o cancellala.',
109 'error.goto_uncompleted' => 'Vai alle voce incompleta.',
110 'error.overlap' => 'Intervallo temporale sovrapposto a voci esistenti.',
111 'error.future_date' => 'La data è nel futuro.',
112 // TODO: translate the following.
113 // 'error.xml' => 'Error in XML file at line %d: %s.',
114 // 'error.cannot_import' => 'Cannot import: %s.',
115 // 'error.format' => 'Invalid file format.',
116 // 'error.user_count' => 'Limit on user count.',
117 // 'error.expired' => 'Expiration date reached.',
118
119 // Warning messages.
120 // TODO: translate the following.
121 // 'warn.sure' => 'Are you sure?',
122 // 'warn.confirm_save' => 'Date has changed. Confirm saving, not copying this item.',
123
124 // Success messages.
125 // TODO: translate the following.
126 // 'msg.success' => 'Operation completed successfully.',
127
128 // Labels for buttons.
129 'button.login' => 'Login',
130 'button.now' => 'Adesso',
131 'button.save' => 'Salva',
132 'button.copy' => 'Copia',
133 'button.cancel' => 'Cancella',
134 'button.submit' => 'Invia',
135 'button.add' => 'Aggiungi',
136 'button.delete' => 'Elimina',
137 'button.generate' => 'Genera',
138 'button.reset_password' => 'Reset password',
139 'button.send' => 'Invia',
140 'button.send_by_email' => 'Invia tramite e-mail',
141 'button.create_group' => 'Crea gruppo',
142 // TODO: translate the following.
143 // 'button.create_timesheet' => 'Create timesheet',
144 'button.export' => 'Esporta gruppo',
145 'button.import' => 'Importa gruppo',
146 'button.close' => 'Chiudi',
147 'button.stop' => 'Stop',
148 // TODO: translate the following.
149 // 'button.approve' => 'Approve',
150 // 'button.disapprove' => 'Disapprove',
151
152 // Labels for controls on forms. Labels in this section are used on multiple forms.
153 'label.group_name' => 'Nome del gruppo',
154 'label.address' => 'Indirizzo',
155 'label.currency' => 'Moneta',
156 'label.manager_name' => 'Nome manager',
157 'label.manager_login' => 'Username manager',
158 'label.person_name' => 'Nome',
159 'label.thing_name' => 'Nome',
160 'label.login' => 'Login',
161 'label.password' => 'Password',
162 'label.confirm_password' => 'Conferma password',
163 'label.email' => 'E-mail',
164 'label.cc' => 'Cc',
165 'label.bcc' => 'Ccn',
166 'label.subject' => 'Oggetto',
167 'label.date' => 'Data',
168 'label.start_date' => 'Data inizio',
169 'label.end_date' => 'Data fine',
170 'label.user' => 'Utente',
171 'label.users' => 'Utenti',
172 // TODO: translate the following.
173 // 'label.group' => 'Group',
174 // 'label.subgroups' => 'Subgroups',
175 // 'label.roles' => 'Roles',
176 'label.client' => 'Cliente',
177 'label.clients' => 'Clienti',
178 'label.option' => 'Opzion',
179 'label.invoice' => 'Fattura',
180 'label.project' => 'Progetto',
181 'label.projects' => 'Progetti',
182 'label.task' => 'Compito',
183 'label.tasks' => 'Compiti',
184 'label.description' => 'Descrizione',
185 'label.start' => 'Inizio',
186 'label.finish' => 'Fine',
187 'label.duration' => 'Durata',
188 'label.note' => 'Nota',
189 'label.notes' => 'Note',
190 'label.item' => 'Voce',
191 'label.cost' => 'Costo',
192 // TODO: translate the following.
193 // 'label.ip' => 'IP',
194 'label.day_total' => 'Totale giornaliero',
195 'label.week_total' => 'Totale settimanale',
196 'label.month_total' => 'Totale mensile',
197 'label.today' => 'Oggi',
198 'label.view' => 'Visualizza',
199 'label.edit' => 'Modifica',
200 'label.delete' => 'Elimina',
201 'label.configure' => 'Configura',
202 'label.select_all' => 'Seleziona tutti',
203 'label.select_none' => 'Deseleziona tutti',
204 'label.day_view' => 'Vista giornaliera',
205 'label.week_view' => 'Vista settimanale',
206 'label.id' => 'ID',
207 'label.language' => 'Lingua',
208 'label.decimal_mark' => 'Separatore decimale',
209 'label.date_format' => 'Formato data',
210 'label.time_format' => 'Formato ora',
211 'label.week_start' => 'Primo giorno della settimana',
212 'label.comment' => 'Commento',
213 'label.status' => 'Stato',
214 'label.tax' => 'Imposta',
215 'label.subtotal' => 'Subtotale',
216 'label.total' => 'Totale',
217 'label.client_name' => 'Nome cliente',
218 'label.client_address' => 'Indirizzo cliente',
219 'label.or' => 'o',
220 'label.error' => 'Errore',
221 'label.ldap_hint' => 'Digita il tuo <b>Login Windows</b> e la tua <b>password</b> nei campi qui sotto.',
222 'label.required_fields' => '* campi obbligatori',
223 'label.on_behalf' => 'a favore di',
224 'label.role_manager' => '(manager)',
225 'label.role_comanager' => '(co-manager)',
226 'label.role_admin' => '(amministratore)',
227 'label.page' => 'Pagina',
228 'label.condition' => 'Condizione',
229 'label.yes' => 'si',
230 'label.no' => 'no',
231 // Labels for plugins (extensions to Time Tracker that provide additional features).
232 'label.custom_fields' => 'Campi personalizzati',
233 'label.monthly_quotas' => 'Quote mensili',
234 'label.type' => 'Tipo',
235 'label.type_dropdown' => 'menu a tendina',
236 'label.type_text' => 'testo',
237 'label.required' => 'Obbligatorio',
238 'label.fav_report' => 'Rapporto preferito',
239 'label.schedule' => 'Programma',
240 'label.what_is_it' => 'Cosa è?',
241 'label.expense' => 'Spesa',
242 'label.quantity' => 'Quantità',
243 'label.paid_status' => 'Stato pagamento',
244 'label.paid' => 'Pagato',
245 'label.mark_paid' => 'Segna come pagato',
246 'label.week_note' => 'Nota settimanale',
247 'label.week_list' => 'Lista settimanale',
248 // TODO: translate the following.
249 // 'label.work_units' => 'Work units',
250 // 'label.work_units_short' => 'Units',
251 'label.totals_only' => 'Solo i totali',
252 'label.quota' => 'Quota',
253 // TODO: translate the following.
254 // 'label.timesheet' => 'Timesheet',
255 // 'label.submitted' => 'Submitted',
256 // 'label.approved' => 'Approved',
257 // 'label.approval' => 'Report approval',
258 // 'label.mark_approved' => 'Mark approved',
259
260 // Form titles.
261 // TODO: Improve titles for consistency, so that each title explains correctly what each
262 // page is about and is "consistent" from page to page, meaning that correct grammar is used everywhere.
263 // Compare with English file to see how it is done there and do Italian titles similarly.
264 // Specifically: Eliminazione vs Elimina - we probably want nouns in titles.
265 'title.error' => 'Errore',
266 // TODO: Translate the following.
267 // 'title.success' => 'Success',
268 'title.login' => 'Login',
269 'title.groups' => 'Gruppi',
270 // TODO: translate the following.
271 // 'title.subgroups' => 'Subgroups',
272 // 'title.add_group' => 'Adding Group',
273 'title.edit_group' => 'Modifica gruppo',
274 'title.delete_group' => 'Elimina gruppo',
275 'title.reset_password' => 'Reset password',
276 'title.change_password' => 'Cambio password',
277 'title.time' => 'Tempo',
278 'title.edit_time_record' => 'Modifica record temporale',
279 'title.delete_time_record' => 'Eliminazione record temporale',
280 'title.expenses' => 'Spese',
281 'title.edit_expense' => 'Modifica voce di spesa',
282 'title.delete_expense' => 'Eliminezione voce di spesa',
283 'title.predefined_expenses' => 'Spese predefinite',
284 'title.add_predefined_expense' => 'Aggiunta spese predefinite',
285 'title.edit_predefined_expense' => 'Modifica spese predefinite',
286 'title.delete_predefined_expense' => 'Eliminazione spese predefinite',
287 'title.reports' => 'Rapporti',
288 'title.report' => 'Rapporto',
289 'title.send_report' => 'Invio Rapporto',
290 // TODO: Translate the following.
291 // 'title.timesheets' => 'Timesheets',
292 // 'title.timesheet' => 'Timesheet',
293 'title.invoice' => 'Fattura',
294 'title.send_invoice' => 'Invia fattura',
295 'title.charts' => 'Grafici',
296 'title.projects' => 'Progetti',
297 'title.add_project' => 'Aggiungi progetto',
298 'title.edit_project' => 'Modifica progetto',
299 'title.delete_project' => 'Elimina progetto',
300 'title.tasks' => 'Compiti',
301 'title.add_task' => 'Aggiungi compito',
302 'title.edit_task' => 'Modifica compito',
303 'title.delete_task' => 'Eliminazione compito',
304 'title.users' => 'Utenti',
305 'title.add_user' => 'Crea utente',
306 'title.edit_user' => 'Modifica utente',
307 'title.delete_user' => 'Elimina utente',
308 // TODO: translate the following.
309 // 'title.roles' => 'Roles',
310 // 'title.add_role' => 'Adding Role',
311 // 'title.edit_role' => 'Editing Role',
312 // 'title.delete_role' => 'Deleting Role',
313 'title.clients' => 'Clienti',
314 'title.add_client' => 'Aggiungi cliente',
315 'title.edit_client' => 'Modifica cliente',
316 'title.delete_client' => 'Elimina cliente',
317 'title.invoices' => 'Fatture',
318 'title.add_invoice' => 'Aggiunta fattura',
319 'title.view_invoice' => 'Visualizzazione fattura',
320 'title.delete_invoice' => 'Eliminazione fattura',
321 'title.notifications' => 'Notifiche',
322 'title.add_notification' => 'Aggiunta notifica',
323 'title.edit_notification' => 'Modifica notifica',
324 'title.delete_notification' => 'Eliminazione notifica',
325 // TODO: translate the following.
326 // 'title.add_timesheet' => 'Adding Timesheet',
327 // 'title.edit_timesheet' => 'Editing Timesheet',
328 // 'title.delete_timesheet' => 'Deleting Timesheet',
329 'title.monthly_quotas' => 'Quote mensili',
330 'title.export' => 'Esporta i dati del gruppo',
331 'title.import' => 'Importa i dati del gruppo',
332 'title.options' => 'Opzioni',
333 'title.profile' => 'Profilo',
334 'title.plugins' => 'Plugin',
335 'title.cf_custom_fields' => 'Campi personalizzati',
336 'title.cf_add_custom_field' => 'Aggiunta campo personalizzato',
337 'title.cf_edit_custom_field' => 'Modifica campo personalizzato',
338 'title.cf_delete_custom_field' => 'Eliminazione campo personalizzato',
339 'title.cf_dropdown_options' => 'Opzioni menu di scelta',
340 'title.cf_add_dropdown_option' => 'Aggiunta opzione',
341 'title.cf_edit_dropdown_option' => 'Modifica opzione',
342 'title.cf_delete_dropdown_option' => 'Eliminazione opzione',
343 // NOTE TO TRANSLATORS: Locking is a feature to lock records from modifications (ex: weekly on Mondays we lock all previous weeks).
344 // It is also a name for the Locking plugin on the group settings page.
345 'title.locking' => 'Bloccaggio',
346 'title.week_view' => 'Vista settimanale',
347 // 'title.swap_roles' => 'Swapping Roles',
348 // 'title.work_units' => 'Work Units',
349
350 // Section for common strings inside combo boxes on forms. Strings shared between forms shall be placed here.
351 // Strings that are used in a single form must go to the specific form section.
352 'dropdown.all' => '--- tutti ---',
353 'dropdown.no' => '--- no ---',
354 'dropdown.current_day' => 'oggi',
355 'dropdown.previous_day' => 'ieri',
356 'dropdown.selected_day' => 'giorno',
357 'dropdown.current_week' => 'questa settimana',
358 'dropdown.previous_week' => 'settimana scorsa',
359 'dropdown.selected_week' => 'settimana',
360 'dropdown.current_month' => 'questo mese',
361 'dropdown.previous_month' => 'mese scorso',
362 'dropdown.selected_month' => 'mese',
363 'dropdown.current_year' => 'quest\\\'anno',
364 'dropdown.previous_year' => 'anno precedente',
365 'dropdown.selected_year' => 'anno',
366 'dropdown.all_time' => 'tutto il tempo',
367 'dropdown.projects' => 'progetti',
368 'dropdown.tasks' => 'compiti',
369 'dropdown.clients' => 'clienti',
370 'dropdown.select' => '--- seleziona ---',
371 'dropdown.select_invoice' => '--- seleziona la fattura ---',
372 'dropdown.status_active' => 'attivo',
373 'dropdown.status_inactive' => 'inattivo',
374 'dropdown.delete' => 'elimina',
375 'dropdown.do_not_delete' => 'non eliminare',
376 // TODO: translate the following.
377 // 'dropdown.approved' => 'approved',
378 // 'dropdown.not_approved' => 'not approved',
379 'dropdown.paid' => 'pagato',
380 'dropdown.not_paid' => 'non pagato',
381
382 // Below is a section for strings that are used on individual forms. When a string is used only on one form it should be placed here.
383 // One exception is for closely related forms such as "Time" and "Editing Time Record" with similar controls. In such cases
384 // a string can be defined on the main form and used on related forms. The reasoning for this is to make translation effort easier.
385 // Strings that are used on multiple unrelated forms should be placed in shared sections such as label.<stringname>, etc.
386
387 // Login form. See example at https://timetracker.anuko.com/login.php.
388 'form.login.forgot_password' => 'Password dimenticata?',
389 'form.login.about' => 'Anuko <a href="https://www.anuko.com/lp/tt_2.htm" target="_blank">Time Tracker</a> è un sistema semplice e open source per registrare i tempi di lavoro.',
390
391 // Resetting Password form. See example at https://timetracker.anuko.com/password_reset.php.
392 'form.reset_password.message' => 'Richiesta di reset password inviata via mail.',
393 'form.reset_password.email_subject' => 'Richiesta reset password per Anuko Time Tracker',
394 // TODO: English string has changed. "from IP added. Re-translate the beginning.
395 // 'form.reset_password.email_body' => "Dear User,\n\nSomeone from IP %s 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",
396 // "IP %s" probably sounds awkward.
397 'form.reset_password.email_body' => "Caro utente,\n\n qualcuno, IP %s, ha richiesto di reimpostare la tua password per Anuko Time Tracker. Per favore visita questo link per reimpostare la tua password.\n\n%s\n\nAnuko Time Tracker è un sistema semplice e open source per registrare i tempi di lavoro. Visita https://www.anuko.com per maggiori informazioni.\n\n",
398
399 // Changing Password form. See example at https://timetracker.anuko.com/password_change.php?ref=1.
400 'form.change_password.tip' => 'Digita una nuova password e clicca su Salva.',
401
402 // Time form. See example at https://timetracker.anuko.com/time.php.
403 'form.time.duration_format' => '(oo:mm o 0.0h)',
404 'form.time.billable' => 'Fatturabile',
405 'form.time.uncompleted' => 'Incompleti',
406 'form.time.remaining_quota' => 'Quota rimanente',
407 'form.time.over_quota' => 'Sopra quota',
408 // TODO: translate the following.
409 // 'form.time.remaining_balance' => 'Remaining balance',
410 // 'form.time.over_balance' => 'Over balance',
411
412 // Editing Time Record form. See example at https://timetracker.anuko.com/time_edit.php (get there by editing an uncompleted time record).
413 'form.time_edit.uncompleted' => 'Questo record è stato salvato con la sola ora di inzio attività. Non è un errore.',
414
415 // Week view form. See example at https://timetracker.anuko.com/week.php.
416 'form.week.new_entry' => 'Nuova voce',
417
418 // Reports form. See example at https://timetracker.anuko.com/reports.php
419 'form.reports.save_as_favorite' => 'Salva nei preferiti',
420 'form.reports.confirm_delete' => 'Sei sicuro di voler cancellare questo report dai preferiti?',
421 'form.reports.include_billable' => 'fatturabile',
422 'form.reports.include_not_billable' => 'non fatturabile',
423 'form.reports.include_invoiced' => 'fatturato',
424 'form.reports.include_not_invoiced' => 'non fatturato',
425 // TODO: translate the following.
426 // 'form.reports.include_assigned' => 'assigned',
427 // 'form.reports.include_not_assigned' => 'not assigned',
428 // 'form.reports.include_pending' => 'pending',
429 'form.reports.select_period' => 'Seleziona il periodo di tempo',
430 'form.reports.set_period' => 'oppure setta le date',
431 'form.reports.show_fields' => 'Mostra i campi',
432 'form.reports.group_by' => 'Raggruppa per',
433 'form.reports.group_by_no' => '--- non raggruppare ---',
434 'form.reports.group_by_date' => 'data',
435 'form.reports.group_by_user' => 'utente',
436 'form.reports.group_by_client' => 'cliente',
437 'form.reports.group_by_project' => 'progetto',
438 'form.reports.group_by_task' => 'compito',
439
440 // Report form. See example at https://timetracker.anuko.com/report.php
441 // (after generating a report at https://timetracker.anuko.com/reports.php).
442 'form.report.export' => 'Esporta',
443 'form.report.assign_to_invoice' => 'Assegna alla fattura',
444
445 // Timesheets form. See example at https://timetracker.anuko.com/timesheets.php
446 // TODO: translate the following.
447 // 'form.timesheets.active_timesheets' => 'Active Timesheets',
448 // 'form.timesheets.inactive_timesheets' => 'Inactive Timesheets',
449
450 // Invoice form. See example at https://timetracker.anuko.com/invoice.php
451 // (you can get to this form after generating a report).
452 'form.invoice.number' => 'Numero fattura',
453 'form.invoice.person' => 'Persona',
454
455 // Deleting Invoice form. See example at https://timetracker.anuko.com/invoice_delete.php
456 'form.invoice.invoice_to_delete' => 'Fattura da eliminare',
457 'form.invoice.invoice_entries' => 'Voci fattura',
458 'form.invoice.confirm_deleting_entries' => 'Per favore conferma di voler eliminare le voci fattura da Time Tracker.',
459
460 // Charts form. See example at https://timetracker.anuko.com/charts.php
461 'form.charts.interval' => 'Intervallo',
462 'form.charts.chart' => 'Grafico',
463
464 // Projects form. See example at https://timetracker.anuko.com/projects.php
465 'form.projects.active_projects' => 'Progetti attivi',
466 'form.projects.inactive_projects' => 'Progetti inattivi',
467
468 // Tasks form. See example at https://timetracker.anuko.com/tasks.php
469 'form.tasks.active_tasks' => 'Compiti attivi',
470 'form.tasks.inactive_tasks' => 'Compiti inattivi',
471
472 // Users form. See example at https://timetracker.anuko.com/users.php
473 'form.users.active_users' => 'Utenti attivi',
474 'form.users.inactive_users' => 'Utenti inattivi',
475 'form.users.uncompleted_entry' => 'Questo utente ha un record temporale incompleto',
476 'form.users.role' => 'Ruolo',
477 'form.users.manager' => 'Manager',
478 'form.users.comanager' => 'Co-manager',
479 'form.users.rate' => 'Costo',
480 'form.users.default_rate' => 'Costo per ora di default',
481
482 // Editing User form. See example at https://timetracker.anuko.com/user_edit.php
483 // TODO: translate the following.
484 // 'form.user_edit.swap_roles' => 'Swap roles',
485
486 // Roles form. See example at https://timetracker.anuko.com/roles.php
487 // TODO: translate the following.
488 // 'form.roles.active_roles' => 'Active Roles',
489 // 'form.roles.inactive_roles' => 'Inactive Roles',
490 // 'form.roles.rank' => 'Rank',
491 // 'form.roles.rights' => 'Rights',
492 // 'form.roles.assigned' => 'Assigned',
493 // 'form.roles.not_assigned' => 'Not assigned',
494
495 // Clients form. See example at https://timetracker.anuko.com/clients.php
496 'form.clients.active_clients' => 'Clienti attivi',
497 'form.clients.inactive_clients' => 'Clienti inattivi',
498
499 // Deleting Client form. See example at https://timetracker.anuko.com/client_delete.php
500 'form.client.client_to_delete' => 'Client da eliminare',
501 'form.client.client_entries' => 'Voci client',
502
503 // Exporting Group Data form. See example at https://timetracker.anuko.com/export.php
504 'form.export.hint' => 'Puoi esporate tutti i dati dei gruppo in un file xml. Questo può essere utile se devi trasferire i dati da un server ad un altro.',
505 'form.export.compression' => 'Compressione',
506 'form.export.compression_none' => 'niente',
507 'form.export.compression_bzip' => 'bzip',
508
509 // Importing Group Data form. See example at https://timetracker.anuko.com/import.php (login as admin first).
510 'form.import.hint' => 'Importa i dati del gruppo da un file xml.',
511 'form.import.file' => 'Seleziona il file',
512 'form.import.success' => 'Importazione eseguita con successo.',
513
514 // Groups form. See example at https://timetracker.anuko.com/admin_groups.php (login as admin first).
515 'form.groups.hint' => 'Crea un nuovo gruppo creando un account gruppo manager.<br>Puoi anche importare i dati di un gruppo da un file xml esportato da un altro server Anuko Time Tracker (non sono ammessi login duplicati).',
516
517 // Group Settings form. See example at https://timetracker.anuko.com/group_edit.php.
518 'form.group_edit.12_hours' => '12 ore',
519 'form.group_edit.24_hours' => '24 ore',
520 'form.group_edit.show_holidays' => 'Mostra vacanze',
521 'form.group_edit.tracking_mode' => 'Modalità di registrazione',
522 'form.group_edit.mode_time' => 'tempo',
523 'form.group_edit.mode_projects' => 'progetti',
524 'form.group_edit.mode_projects_and_tasks' => 'progetti e compiti',
525 'form.group_edit.record_type' => 'Tipo di record',
526 'form.group_edit.type_all' => 'tutto',
527 'form.group_edit.type_start_finish' => 'inizio e fine',
528 'form.group_edit.type_duration' => 'durata',
529 // TODO: translate the following.
530 // 'form.group_edit.punch_mode' => 'Punch mode',
531 // 'form.group_edit.allow_overlap' => 'Allow overlap',
532 // 'form.group_edit.future_entries' => 'Future entries',
533 'form.group_edit.uncompleted_indicators' => 'Indicatori incompleti',
534 // TODO: translate the following.
535 // 'form.group_edit.confirm_save' => 'Confirm saving',
536 // 'form.group_edit.allow_ip' => 'Allow IP',
537
538 // Deleting Group form. See example at https://timetracker.anuko.com/delete_group.php
539 // TODO: translate the following.
540 // 'form.group_delete.hint' => 'Are you sure you want to delete the entire group?',
541
542 // Mail form. See example at https://timetracker.anuko.com/report_send.php when emailing a report.
543 'form.mail.from' => 'Da',
544 'form.mail.to' => 'A',
545 'form.mail.report_subject' => 'Rapporto Time Tracker',
546 'form.mail.footer' => 'Anuko Time Tracker è un sistema semplice e open source <br>per registrare i tempi di lavoro. Visita <a href="https://www.anuko.com">www.anuko.com</a> per maggiori informazioni.',
547 'form.mail.report_sent' => 'Rapporto inviato.',
548 'form.mail.invoice_sent' => 'Fattura inviata.',
549
550 // Quotas configuration form. See example at https://timetracker.anuko.com/quotas.php after enabling Monthly quotas plugin.
551 'form.quota.year' => 'Anno',
552 'form.quota.month' => 'Mese',
553 'form.quota.workday_hours' => 'Ore lavorative in un giorno',
554 'form.quota.hint' => 'Se i valori sono vuoti, le quote vengono calcolate automaticamente basandosi su ore giornaliere e vacanze.',
555
556 // Swap roles form. See example at https://timetracker.anuko.com/swap_roles.php.
557 // TODO: translate the following.
558 // 'form.swap.hint' => 'Demote yourself to a lower role by swapping roles with someone else. This cannot be undone.',
559 // 'form.swap.swap_with' => 'Swap roles with',
560
561 // Work Units configuration form. See example at https://timetracker.anuko.com/work_units.php after enabling Work units plugin.
562 // TODO: translate the following.
563 // 'form.work_units.minutes_in_unit' => 'Minutes in unit',
564 // 'form.work_units.1st_unit_threshold' => '1st unit threshold',
565
566 // Roles and rights. These strings are used in multiple places. Grouped here to provide consistent translations.
567 // TODO: translate the following.
568 // 'role.user.label' => 'User',
569 // 'role.user.low_case_label' => 'user',
570 // 'role.user.description' => 'A regular member without management rights.',
571 // 'role.client.label' => 'Client',
572 // 'role.client.low_case_label' => 'client',
573 // 'role.client.description' => 'A client can view its own data.',
574 // 'role.supervisor.label' => 'Supervisor',
575 // 'role.supervisor.low_case_label' => 'supervisor',
576 // 'role.supervisor.description' => 'A person with a small set of management rights.',
577 // 'role.comanager.label' => 'Co-manager',
578 // 'role.comanager.low_case_label' => 'co-manager',
579 // 'role.comanager.description' => 'A person with a big set of management functions.',
580 // 'role.manager.label' => 'Manager',
581 // 'role.manager.low_case_label' => 'manager',
582 // 'role.manager.description' => 'Group manager. Can do most of things for a group.',
583 // 'role.top_manager.label' => 'Top manager',
584 // 'role.top_manager.low_case_label' => 'top manager',
585 // 'role.top_manager.description' => 'Top group manager. Can do everything in a tree of groups.',
586 // 'role.admin.label' => 'Administrator',
587 // 'role.admin.low_case_label' => 'administrator',
588 // 'role.admin.description' => 'Site adminsitrator.',
589 );