More refactoring of form titles.
[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 // Labels for plugins (extensions to Time Tracker that provide additional features).
221 // TODO: translate the following.
222 // 'label.custom_fields' => 'Custom fields',
223 // 'label.monthly_quotas' => 'Monthly quotas',
224 // 'label.type' => 'Type',
225 // 'label.type_dropdown' => 'dropdown',
226 // 'label.type_text' => 'text',
227 // 'label.required' => 'Required',
228 // 'label.fav_report' => 'Favorite report',
229 // 'label.cron_schedule' => 'Cron schedule',
230 // 'label.what_is_it' => 'What is it?',
231 // 'label.expense' => 'Expense',
232 // 'label.quantity' => 'Quantity',
233 // 'label.paid_status' => 'Paid status',
234 // 'label.paid' => 'Paid',
235 // 'label.mark_paid' => 'Mark paid',
236
237 // Form titles.
238 'title.login' => 'Login',
239 // TODO: translate the following.
240 // 'title.teams' => 'Teams',
241 // 'title.create_team' => 'Creating Team',
242 // 'title.edit_team' => 'Editing Team',
243 // 'title.delete_team' => 'Deleting Team',
244 // 'title.reset_password' => 'Resetting Password',
245 // 'title.change_password' => 'Changing Password',
246 // 'title.time' => 'Time',
247 // 'title.edit_time_record' => 'Editing Time Record',
248 // 'title.delete_time_record' => 'Deleting Time Record',
249 // 'title.expenses' => 'Expenses',
250 // 'title.edit_expense' => 'Editing Expense Item',
251 // 'title.delete_expense' => 'Deleting Expense Item',
252
253
254 // TODO: refactoring ongoing down from here.
255
256 "form.filter.project" => 'progetto',
257 "form.filter.filter" => 'report preferiti',
258 "form.filter.filter_new" => 'salva nei preferiti',
259 "form.filter.filter_confirm_delete" => 'sei sicuro di voler cancellare questo report dai preferiti?',
260
261 // password reminder form attributes
262 "form.fpass.send_pass_str" => 'richiesta di reset pasword inviata',
263 "form.fpass.send_pass_subj" => 'richiesta di password reset', 
264 // Note to translators: the strings below must be translated
265 // "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",
266 // "form.fpass.reset_comment" => "to reset your password please type it in and click on save",
267
268 // administrator form
269 "form.admin.title" => 'amministratore',
270 // Note to translators: the string below must be translated
271 // "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).',
272
273 "form.admin.change_pass" => 'cambia la password dell\\\'amministratore',
274 "form.admin.profile.title" => 'teams',
275 "form.admin.profile.noprofiles" => 'il database è vuoto. loggati come amministratore e crea un nuovo team.',
276 "form.admin.profile.comment" => 'elimina team',
277 "form.admin.profile.th.id" => 'id',
278 "form.admin.profile.th.name" => 'nome',
279 "form.admin.profile.th.edit" => 'edit',
280 "form.admin.profile.th.del" => 'elimina',
281 "form.admin.profile.th.active" => 'attivo',
282 "form.admin.options" => 'opzioni',
283 // Note to translators: the strings below are missing and must be added and translated
284 // "form.admin.custom_date_format" => "date format",
285 // "form.admin.custom_time_format" => "time format",
286 // "form.admin.start_week" => "first day of week",
287
288 // my time form attributes
289 "form.mytime.title" => 'giorno',
290 "form.mytime.edit_title" => 'modifica time record',
291 "form.mytime.del_str" => 'elimina time record',
292 "form.mytime.time_form" => ' (hh:mm)',
293 "form.mytime.date" => 'data',
294 "form.mytime.project" => 'progetto',
295 "form.mytime.activity" => 'attività',
296 "form.mytime.start" => 'inizio',
297 "form.mytime.finish" => 'fine',
298 "form.mytime.duration" => 'durata',
299 "form.mytime.note" => 'note',
300 "form.mytime.behalf" => 'attività giornaliera per',
301 "form.mytime.daily" => 'attività giornaliera',
302 "form.mytime.total" => 'ore totali: ',
303 "form.mytime.th.project" => 'progetto',
304 "form.mytime.th.activity" => 'attività',
305 "form.mytime.th.start" => 'inizio',
306 "form.mytime.th.finish" => 'fine',
307 "form.mytime.th.duration" => 'durata',
308 "form.mytime.th.note" => 'note',
309 "form.mytime.th.edit" => 'edit',
310 "form.mytime.th.delete" => 'elimina',
311 "form.mytime.del_yes" => 'time record cancellato',
312 "form.mytime.no_finished_rec" => 'questo record è stato salvato con la sola ora di inzio attività. non è un errore. esegui il logout per altro....',
313 "form.mytime.billable" => 'fatturabile',
314 "form.mytime.warn_tozero_rec" => 'questo time record deve essere cancellato perchè il periodo di riferimento è stato bloccato',
315 // Note to translators: the string below is missing and must be added and translated
316 // "form.mytime.uncompleted" => 'uncompleted',
317
318 // profile form attributes
319 // Note to translators: we need a more accurate translation of form.profile.create_title
320 "form.profile.create_title" => 'crea un nuovo account manager',
321 "form.profile.edit_title" => 'modifca il profilo',
322 "form.profile.name" => 'nome',
323 "form.profile.login" => 'login',
324
325 // Note to translators: the strings below are missing and must be added and translated
326 // "form.profile.showchart" => 'show pie charts',
327 // "form.profile.lang" => 'language',
328 // "form.profile.custom_date_format" => "date format",
329 // "form.profile.custom_time_format" => "time format",
330 // "form.profile.default_format" => "(default)",
331 // "form.profile.start_week" => "first day of week",
332
333 // people form attributes
334 "form.people.ppl_str" => 'persone',
335 "form.people.createu_str" => 'crea un nuovo utente',
336 "form.people.edit_str" => 'modifica utente',
337 "form.people.del_str" => 'elimina utente',
338 "form.people.th.name" => 'nome',
339 "form.people.th.login" => 'login',
340 "form.people.th.role" => 'funzione',
341 "form.people.th.edit" => 'modifica',
342 "form.people.th.del" => 'elimina',
343 "form.people.th.status" => 'stato',
344 "form.people.th.project" => 'progetto',
345 "form.people.th.rate" => 'costo',
346 "form.people.manager" => 'manager',
347 "form.people.comanager" => 'comanager',
348 "form.people.empl" => 'utente',
349 "form.people.name" => 'nome',
350 "form.people.login" => 'login',
351
352 "form.people.rate" => 'costo per ora di default',
353 "form.people.comanager" => 'co-manager',
354 "form.people.projects" => 'progetti',
355
356 // projects form attributes
357 "form.project.proj_title" => 'progetti',
358 "form.project.edit_str" => 'mofifca progetto',
359 "form.project.add_str" => 'aggiungi nuovo progetto',
360 "form.project.del_str" => 'elimina progetto',
361 "form.project.th.name" => 'nome',
362 "form.project.th.edit" => 'modifica',
363 "form.project.th.del" => 'elimina',
364 "form.project.name" => 'nome',
365
366 // activities form attributes
367 "form.activity.act_title" => 'attività',
368 "form.activity.add_title" => 'aggiungi nuova attività',
369 "form.activity.edit_str" => 'modifica attività',
370 "form.activity.del_str" => 'elimina attività',
371 "form.activity.name" => 'nome',
372 "form.activity.project" => 'progetto',
373 "form.activity.th.name" => 'nome',
374 "form.activity.th.project" => 'progetto',
375 "form.activity.th.edit" => 'modifica',
376 "form.activity.th.del" => 'elimina',
377
378 // report attributes
379 "form.report.title" => 'report',
380 "form.report.from" => 'data inizio',
381 "form.report.to" => 'data fine',
382 "form.report.groupby_user" => 'utente',
383 "form.report.groupby_project" => 'progetto',
384 "form.report.groupby_activity" => 'attività',
385 "form.report.duration" => 'durata',
386 "form.report.start" => 'inizio',
387 "form.report.activity" => 'attività',
388 "form.report.show_idle" => 'mostra inattivi',
389 "form.report.finish" => 'fine',
390 "form.report.note" => 'nota',
391 "form.report.project" => 'progetto',
392 "form.report.totals_only" => 'solo i totali',
393 "form.report.total" => 'ore totali',
394 "form.report.th.empllist" => 'utente',
395 "form.report.th.date" => 'data',
396 "form.report.th.project" => 'progetto',
397 "form.report.th.activity" => 'attività',
398 "form.report.th.start" => 'inizio',
399 "form.report.th.finish" => 'fine',
400 "form.report.th.duration" => 'durata',
401 "form.report.th.note" => 'note',
402
403 // mail form attributes
404 "form.mail.from" => 'da',
405 "form.mail.to" => 'a',
406 "form.mail.comment" => 'commento',
407 "form.mail.above" => 'invia questo report tramite e-mail',
408 // Note to translators: this string needs to be translated.
409 // "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.',
410 "form.mail.sending_str" => '<b>messaggio inviato</b>',
411
412 // invoice attributes
413 "form.invoice.title" => 'fattura',
414 "form.invoice.caption" => 'fattura',
415 "form.invoice.above" => 'informazioni aggiuntive per la fattura',
416 "form.invoice.select_cust" => 'seleziona il cliente',
417 "form.invoice.fillform" => 'compila i campi',
418 "form.invoice.date" => 'data',
419 "form.invoice.number" => 'numero fattura',
420 "form.invoice.tax" => 'tassa',
421 "form.invoice.comment" => 'commento ',
422 "form.invoice.th.username" => 'persona',
423 "form.invoice.th.time" => 'ore',
424 "form.invoice.th.rate" => 'costo',
425 "form.invoice.th.summ" => 'ammontare',
426 "form.invoice.subtotal" => 'subtotale',
427 "form.invoice.customer" => 'cliente',
428 "form.invoice.mailinv_above" => 'invia la fattura tramite e-mail',
429 "form.invoice.sending_str" => '<b>fattura inviata</b>',
430
431 "form.migration.zip" => 'compressione',
432 "form.migration.file" => 'seleziona il file',
433 "form.migration.import.title" => 'importa i dati',
434 "form.migration.import.success" => 'importazione eseguita con successo',
435 "form.migration.import.text" => 'importa i dati del team da un file xml',
436 "form.migration.export.title" => 'esporta i dati',
437 "form.migration.export.success" => 'esportazione eseguita con successo',
438 "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.',
439 // Note to translators: the strings below are missing and must be added and translated
440 // "form.migration.compression.none" => 'none',
441 // "form.migration.compression.gzip" => 'gzip',
442 // "form.migration.compression.bzip" => 'bzip',
443
444 "form.client.title" => 'clienti',
445 "form.client.add_title" => 'aggiungi cliente',
446 "form.client.edit_title" => 'modifica cliente',
447 "form.client.del_title" => 'elimina cliente',
448 "form.client.th.name" => 'nome',
449 "form.client.th.edit" => 'modifica',
450 "form.client.th.del" => 'elimina',
451 "form.client.name" => 'nome',
452 "form.client.tax" => 'tassa',
453 "form.client.comment" => 'commento ',
454
455 // miscellaneous strings
456 "forward.forgot_password" => 'password dimenticata?',
457 "forward.edit" => 'modifica',
458 "forward.delete" => 'elimina',
459 "forward.tocsvfile" => 'esporta i dati in un file .csv',
460 "forward.toxmlfile" => 'esporta i dati in un file .xml',
461 "forward.geninvoice" => 'genera la fattura',
462 "forward.change" => 'configura i clienti',
463
464 // strings inside contols on forms
465 "controls.select.project" => '--- seleziona il progetto ---',
466 "controls.select.activity" => '--- seleziona la attività ---',
467 "controls.select.client" => '--- seleziona il cliente ---',
468 "controls.project_bind" => '--- tutti ---',
469 "controls.all" => '--- tutti ---',
470 "controls.notbind" => '--- no ---',
471 "controls.per_tm" => 'questo mese',
472 "controls.per_lm" => 'mese scorso',
473 "controls.per_tw" => 'questa settimana',
474 "controls.per_lw" => 'settimana scorsa',
475 "controls.per_td" => 'questo giorno',
476 "controls.per_at" => 'tutto il tempo',
477 "controls.per_ty" => 'quest\\\'anno',
478 "controls.sel_period" => '--- seleziona il periodo di tempo ---',
479 "controls.sel_groupby" => '--- non raggruppare ---',
480 "controls.inc_billable" => 'fatturabile',
481 "controls.inc_nbillable" => 'non fatturabile',
482 // Note to translators: the string below must be translated
483 // "controls.default" => '--- default ---',
484
485 // labels
486 "label.chart.title1" => 'attività per utente',
487 // Note to translators: the string below is missing and must be added and translated
488 // "label.chart.title2" => 'projects for user',
489 "label.chart.period" => 'grafico per il periodo',
490
491 "label.pinfo" => '%s, %s',
492 "label.pinfo2" => '%s',
493 "label.pbehalf_info" => '%s %s <b>a favore di %s</b>',
494 "label.pminfo" => ' (manager)',
495 "label.pcminfo" => ' (co-manager)',
496 "label.painfo" => ' (amministratore)',
497 "label.time_noentry" => 'nessun inserimento',
498 "label.today" => 'oggi',
499 "label.req_fields" => '* campi obbligatori',
500 "label.sel_project" => 'seleziona il progetto',
501 "label.sel_activity" => 'seleziona la attività',
502 "label.sel_tp" => 'seleziona il periodo di tempo',
503 "label.set_tp" => 'oppure setta le date',
504 "label.fields" => 'mostra i campi',
505 "label.group_title" => 'raggruppa per',
506 "label.include_title" => 'includi records',
507 "label.inv_str" => 'fattura',
508 "label.set_empl" => 'seleziona utenti',
509 "label.sel_all" => 'seleziona tutti',
510 "label.sel_none" => 'deseleziona tutti',
511 "label.or" => 'o',
512 "label.disable" => 'disabilita',
513 "label.enable" => 'abilita',
514 "label.filter" => 'filtro',
515 "label.timeweek" => 'totale settimanale',
516 "label.hrs" => 'ore',
517 // Note to translators: the strings below are missing and must be added and translated
518 // "label.errors" => 'errors',
519 // "label.ldap_hint" => 'Type your <b>Windows login</b> and <b>password</b> in the fields below.',
520 // "label.calendar_today" => 'today',
521 // "label.calendar_close" => 'close',
522
523 // login hello text
524 // "login.hello.text" => "Anuko Time Tracker is a simple, easy to use, open source time tracking system.",
525 );