Initial repo created
[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 $i18n_language = 'Italiano';
33 $i18n_months = array('gennaio', 'febbraio', 'marzo', 'aprile', 'maggio', 'giugno', 'luiglio', 'agosto', 'settembre', 'ottobre', 'novembre', 'dicembre');
34 $i18n_weekdays = array('domenica', 'lunedì', 'martedì', 'mercoledì', 'giovedì', 'venerdì', 'sabato');
35 $i18n_weekdays_short = array('do', 'lu', 'ma', 'me', 'gi', 've', 'sa');
36 // format mm/dd
37 $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');
38
39 $i18n_key_words = array(
40
41 // menu entries
42 // Note to translators: these strings need to be translated.
43 // 'menu.login' => 'login',
44 // 'menu.logout' => 'logout',
45 // 'menu.feedback' => 'feedback',
46 // 'menu.help' => 'help',
47 // Note to translators: menu.create_team a more accurate translation.
48 'menu.create_team' => 'crea un nuovo account',
49 'menu.edit_profile' => 'modifica profilo',
50 'menu.my_time' => 'tempo di lavoro',
51 // Note to translators: menu.reports and menu.charts need to be translated.
52 // 'menu.reports' => 'reports',
53 // 'menu.charts' => 'charts',
54 'menu.projects' => 'progetti',
55 'menu.activities' => 'attività',
56 'menu.people' => 'persone',
57 // 'menu.teams' => 'teams',
58 // Note to translators: menu.export needs to be translated.
59 // 'menu.export' => 'export',
60 'menu.clients' => 'clienti',
61 'menu.options' => 'opzioni',
62 'menu.admin' => 'admin',
63
64 // error strings
65 'error.db' => 'database error',
66 'error.field' => 'dato "{0}" errato',
67 'error.empty' => 'il campo "{0}" è vuoto',
68 'error.not_equal' => 'il campo "{0}" non è uguale al campo "{1}"',
69 'error.interval' => 'intervallo errato',
70 'error.project' => 'seleziona il progetto',
71 'error.activity' => 'seleziona la attività',
72 'error.auth' => 'login o password errati',
73 // Note to translators: this string needs to be translated.
74 // 'error.user_exists' => 'user with this login already exists',
75 'error.project_exists' => 'esiste già un progetto con questo nome',
76 'error.activity_exists' => 'esiste già una attività con questo nome',
77 // TODO: translate error.client_exists.
78 // 'error.client_exists' => 'client with this name already exists',
79 // Note to translators: this string needs to be properly translated (e-mail replaced with login).
80 // 'error.no_login' => 'nessun utente con questa e-mail',
81 // Note to translators: the strings below need to be translated
82 // 'error.upload' => 'file upload error',
83 // 'error.period_locked' => 'can\\\'t complete the operation. records older than a certain number of days cannot be created or modified. team manager defines this in the "Lock interval in days" value on the "Profile" page. set it to 0 to remove locking. <br><br>uncompleted records (with 0 or empty duration) can be deleted.',
84 // 'error.mail_send' => 'error sending mail',
85 // 'error.no_email' => 'no email associated with this login',
86 // 'error.uncompleted_exists' => 'uncompleted entry already exists. close or delete it.',
87 // 'error.goto_uncompleted' => 'go to uncompleted entry.',
88
89 // labels for various buttons
90 'button.login' => 'login',
91 'button.now' => 'adesso',
92 // 'button.set' => 'set',
93 'button.save' => 'salva',
94 'button.delete' => 'elimina',
95 'button.cancel' => 'cancella',
96 'button.submit' => 'invia',
97 'button.add_user' => 'aggiungi utente',
98 'button.add_project' => 'aggiungi progetto',
99 'button.add_activity' => 'aggiungi attività',
100 'button.add_client' => 'aggiungi cliente',
101 'button.add' => 'add',
102 'button.generate' => 'genera',
103 // Note to translators: button.reset_password needs an improved translation.
104 // 'button.reset_password' => 'reset password',
105 'button.send' => 'invia',
106 'button.send_by_email' => 'invia tramite e-mail',
107 'button.save_as_new' => 'salva come nuovo',
108 'button.create_team' => 'crea team',
109 'button.export' => 'esporta team',
110 'button.import' => 'importa team',
111 'button.apply' => 'applica',
112
113 // labels for controls on various forms
114 // TODO: translate label.team_name
115 // 'label.team_name' => 'team name',
116 'label.currency' => 'moneta',
117 // TODO: translate label.manager_name and label.manager_login.
118 // 'label.manager_name' => 'manager name',
119 // 'label.manager_login' => 'manager login',
120 'label.password' => 'password',
121 'label.confirm_password' => 'conferma password',
122 'label.email' => 'e-mail',
123 'label.total' => 'totale',
124
125 "form.filter.project" => 'progetto',
126 "form.filter.filter" => 'report preferiti',
127 "form.filter.filter_new" => 'salva nei preferiti',
128 "form.filter.filter_confirm_delete" => 'sei sicuro di voler cancellare questo report dai preferiti?',
129
130 // login form attributes
131 "form.login.title" => 'login',
132 "form.login.login" => 'login',
133
134 // password reminder form attributes
135 "form.fpass.title" => 'reset password',
136 "form.fpass.login" => 'login',
137 "form.fpass.send_pass_str" => 'richiesta di reset pasword inviata',
138 "form.fpass.send_pass_subj" => 'richiesta di password reset', 
139 // Note to translators: the strings below must be translated
140 // "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",
141 // "form.fpass.reset_comment" => "to reset your password please type it in and click on save",
142
143 // administrator form
144 "form.admin.title" => 'amministratore',
145 // Note to translators: the string below must be translated
146 // "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).',
147
148 "form.admin.change_pass" => 'cambia la password dell\\\'amministratore',
149 "form.admin.profile.title" => 'teams',
150 "form.admin.profile.noprofiles" => 'il database è vuoto. loggati come amministratore e crea un nuovo team.',
151 "form.admin.profile.comment" => 'elimina team',
152 "form.admin.profile.th.id" => 'id',
153 "form.admin.profile.th.name" => 'nome',
154 "form.admin.profile.th.edit" => 'edit',
155 "form.admin.profile.th.del" => 'elimina',
156 "form.admin.profile.th.active" => 'attivo',
157 "form.admin.lock.period" => 'blocca l\\\'intervallo di tempo',
158 "form.admin.options" => 'opzioni',
159 // Note to translators: the strings below are missing and must be added and translated
160 // "form.admin.lang_default" => 'site default language',
161 // "form.admin.custom_date_format" => "date format",
162 // "form.admin.custom_time_format" => "time format",
163 // "form.admin.start_week" => "first day of week",
164
165 // my time form attributes
166 "form.mytime.title" => 'giorno',
167 "form.mytime.edit_title" => 'modifica time record',
168 "form.mytime.del_str" => 'elimina time record',
169 "form.mytime.time_form" => ' (hh:mm)',
170 "form.mytime.date" => 'data',
171 "form.mytime.project" => 'progetto',
172 "form.mytime.activity" => 'attività',
173 "form.mytime.start" => 'inizio',
174 "form.mytime.finish" => 'fine',
175 "form.mytime.duration" => 'durata',
176 "form.mytime.note" => 'note',
177 "form.mytime.behalf" => 'attività giornaliera per',
178 "form.mytime.daily" => 'attività giornaliera',
179 "form.mytime.total" => 'ore totali: ',
180 "form.mytime.th.project" => 'progetto',
181 "form.mytime.th.activity" => 'attività',
182 "form.mytime.th.start" => 'inizio',
183 "form.mytime.th.finish" => 'fine',
184 "form.mytime.th.duration" => 'durata',
185 "form.mytime.th.note" => 'note',
186 "form.mytime.th.edit" => 'edit',
187 "form.mytime.th.delete" => 'elimina',
188 "form.mytime.del_yes" => 'time record cancellato',
189 "form.mytime.no_finished_rec" => 'questo record è stato salvato con la sola ora di inzio attività. non è un errore. esegui il logout per altro....',
190 "form.mytime.billable" => 'fatturabile',
191 "form.mytime.warn_tozero_rec" => 'questo time record deve essere cancellato perchè il periodo di riferimento è stato bloccato',
192 // Note to translators: the string below is missing and must be added and translated
193 // "form.mytime.uncompleted" => 'uncompleted',
194
195 // profile form attributes
196 // Note to translators: we need a more accurate translation of form.profile.create_title
197 "form.profile.create_title" => 'crea un nuovo account manager',
198 "form.profile.edit_title" => 'modifca il profilo',
199 "form.profile.name" => 'nome',
200 "form.profile.login" => 'login',
201
202 // Note to translators: the strings below are missing and must be added and translated
203 // "form.profile.showchart" => 'show pie charts',
204 // "form.profile.lang" => 'language',
205 // "form.profile.custom_date_format" => "date format",
206 // "form.profile.custom_time_format" => "time format",
207 // "form.profile.default_format" => "(default)",
208 // "form.profile.start_week" => "first day of week",
209
210 // people form attributes
211 "form.people.ppl_str" => 'persone',
212 "form.people.createu_str" => 'crea un nuovo utente',
213 "form.people.edit_str" => 'modifica utente',
214 "form.people.del_str" => 'elimina utente',
215 "form.people.th.name" => 'nome',
216 "form.people.th.login" => 'login',
217 "form.people.th.role" => 'funzione',
218 "form.people.th.edit" => 'modifica',
219 "form.people.th.del" => 'elimina',
220 "form.people.th.status" => 'stato',
221 "form.people.th.project" => 'progetto',
222 "form.people.th.rate" => 'costo',
223 "form.people.manager" => 'manager',
224 "form.people.comanager" => 'comanager',
225 "form.people.empl" => 'utente',
226 "form.people.name" => 'nome',
227 "form.people.login" => 'login',
228
229 "form.people.rate" => 'costo per ora di default',
230 "form.people.comanager" => 'co-manager',
231 "form.people.projects" => 'progetti',
232
233 // projects form attributes
234 "form.project.proj_title" => 'progetti',
235 "form.project.edit_str" => 'mofifca progetto',
236 "form.project.add_str" => 'aggiungi nuovo progetto',
237 "form.project.del_str" => 'elimina progetto',
238 "form.project.th.name" => 'nome',
239 "form.project.th.edit" => 'modifica',
240 "form.project.th.del" => 'elimina',
241 "form.project.name" => 'nome',
242
243 // activities form attributes
244 "form.activity.act_title" => 'attività',
245 "form.activity.add_title" => 'aggiungi nuova attività',
246 "form.activity.edit_str" => 'modifica attività',
247 "form.activity.del_str" => 'elimina attività',
248 "form.activity.name" => 'nome',
249 "form.activity.project" => 'progetto',
250 "form.activity.th.name" => 'nome',
251 "form.activity.th.project" => 'progetto',
252 "form.activity.th.edit" => 'modifica',
253 "form.activity.th.del" => 'elimina',
254
255 // report attributes
256 "form.report.title" => 'report',
257 "form.report.from" => 'data inizio',
258 "form.report.to" => 'data fine',
259 "form.report.groupby_user" => 'utente',
260 "form.report.groupby_project" => 'progetto',
261 "form.report.groupby_activity" => 'attività',
262 "form.report.duration" => 'durata',
263 "form.report.start" => 'inizio',
264 "form.report.activity" => 'attività',
265 "form.report.show_idle" => 'mostra inattivi',
266 "form.report.finish" => 'fine',
267 "form.report.note" => 'nota',
268 "form.report.project" => 'progetto',
269 "form.report.totals_only" => 'solo i totali',
270 "form.report.total" => 'ore totali',
271 "form.report.th.empllist" => 'utente',
272 "form.report.th.date" => 'data',
273 "form.report.th.project" => 'progetto',
274 "form.report.th.activity" => 'attività',
275 "form.report.th.start" => 'inizio',
276 "form.report.th.finish" => 'fine',
277 "form.report.th.duration" => 'durata',
278 "form.report.th.note" => 'note',
279
280 // mail form attributes
281 "form.mail.from" => 'da',
282 "form.mail.to" => 'a',
283 "form.mail.cc" => 'cc',
284 "form.mail.subject" => 'oggetto',
285 "form.mail.comment" => 'commento',
286 "form.mail.above" => 'invia questo report tramite e-mail',
287 // Note to translators: this string needs to be translated.
288 // "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.',
289 "form.mail.sending_str" => '<b>messaggio inviato</b>',
290
291 // invoice attributes
292 "form.invoice.title" => 'fattura',
293 "form.invoice.caption" => 'fattura',
294 "form.invoice.above" => 'informazioni aggiuntive per la fattura',
295 "form.invoice.select_cust" => 'seleziona il cliente',
296 "form.invoice.fillform" => 'compila i campi',
297 "form.invoice.date" => 'data',
298 "form.invoice.number" => 'numero fattura',
299 "form.invoice.tax" => 'tassa',
300 "form.invoice.daily_subtotals" => 'subtotaole giornaliero',
301 "form.invoice.yourcoo" => 'tuo nome<br> e indirizzo',
302 "form.invoice.custcoo" => 'nome cliente<br> e indirizzo',
303 "form.invoice.comment" => 'commento ',
304 "form.invoice.th.username" => 'persona',
305 "form.invoice.th.time" => 'ore',
306 "form.invoice.th.rate" => 'costo',
307 "form.invoice.th.summ" => 'ammontare',
308 "form.invoice.subtotal" => 'subtotale',
309 "form.invoice.customer" => 'cliente',
310 "form.invoice.mailinv_above" => 'invia la fattura tramite e-mail',
311 "form.invoice.sending_str" => '<b>fattura inviata</b>',
312
313 "form.migration.zip" => 'compressione',
314 "form.migration.file" => 'seleziona il file',
315 "form.migration.import.title" => 'importa i dati',
316 "form.migration.import.success" => 'importazione eseguita con successo',
317 "form.migration.import.text" => 'importa i dati del team da un file xml',
318 "form.migration.export.title" => 'esporta i dati',
319 "form.migration.export.success" => 'esportazione eseguita con successo',
320 "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.',
321 // Note to translators: the strings below are missing and must be added and translated
322 // "form.migration.compression.none" => 'none',
323 // "form.migration.compression.gzip" => 'gzip',
324 // "form.migration.compression.bzip" => 'bzip',
325
326 "form.client.title" => 'clienti',
327 "form.client.add_title" => 'aggiungi cliente',
328 "form.client.edit_title" => 'modifica cliente',
329 "form.client.del_title" => 'elimina cliente',
330 "form.client.th.name" => 'nome',
331 "form.client.th.edit" => 'modifica',
332 "form.client.th.del" => 'elimina',
333 "form.client.name" => 'nome',
334 "form.client.tax" => 'tassa',
335 "form.client.daily_subtotals" => 'subtotale giornaliero',
336 "form.client.yourcoo" => 'il tuo nome<br> e indirizzo nella fattura',
337 "form.client.custcoo" => 'indirizzo',
338 "form.client.comment" => 'commento ',
339
340 // miscellaneous strings
341 "forward.forgot_password" => 'password dimenticata?',
342 "forward.edit" => 'modifica',
343 "forward.delete" => 'elimina',
344 "forward.tocsvfile" => 'esporta i dati in un file .csv',
345 "forward.toxmlfile" => 'esporta i dati in un file .xml',
346 "forward.geninvoice" => 'genera la fattura',
347 "forward.change" => 'configura i clienti',
348
349 // strings inside contols on forms
350 "controls.select.project" => '--- seleziona il progetto ---',
351 "controls.select.activity" => '--- seleziona la attività ---',
352 "controls.select.client" => '--- seleziona il cliente ---',
353 "controls.project_bind" => '--- tutti ---',
354 "controls.all" => '--- tutti ---',
355 "controls.notbind" => '--- no ---',
356 "controls.per_tm" => 'questo mese',
357 "controls.per_lm" => 'mese scorso',
358 "controls.per_tw" => 'questa settimana',
359 "controls.per_lw" => 'settimana scorsa',
360 "controls.per_td" => 'questo giorno',
361 "controls.per_at" => 'tutto il tempo',
362 "controls.per_ty" => 'quest\\\'anno',
363 "controls.sel_period" => '--- seleziona il periodo di tempo ---',
364 "controls.sel_groupby" => '--- non raggruppare ---',
365 "controls.inc_billable" => 'fatturabile',
366 "controls.inc_nbillable" => 'non fatturabile',
367 // Note to translators: the string below must be translated
368 // "controls.default" => '--- default ---',
369
370 // labels
371 "label.chart.title1" => 'attività per utente',
372 // Note to translators: the string below is missing and must be added and translated
373 // "label.chart.title2" => 'projects for user',
374 "label.chart.period" => 'grafico per il periodo',
375
376 "label.pinfo" => '%s, %s',
377 "label.pinfo2" => '%s',
378 "label.pbehalf_info" => '%s %s <b>a favore di %s</b>',
379 "label.pminfo" => ' (manager)',
380 "label.pcminfo" => ' (co-manager)',
381 "label.painfo" => ' (amministratore)',
382 "label.time_noentry" => 'nessun inserimento',
383 "label.today" => 'oggi',
384 "label.req_fields" => '* campi obbligatori',
385 "label.sel_project" => 'seleziona il progetto',
386 "label.sel_activity" => 'seleziona la attività',
387 "label.sel_tp" => 'seleziona il periodo di tempo',
388 "label.set_tp" => 'oppure setta le date',
389 "label.fields" => 'mostra i campi',
390 "label.group_title" => 'raggruppa per',
391 "label.include_title" => 'includi records',
392 "label.inv_str" => 'fattura',
393 "label.set_empl" => 'seleziona utenti',
394 "label.sel_all" => 'seleziona tutti',
395 "label.sel_none" => 'deseleziona tutti',
396 "label.or" => 'o',
397 "label.disable" => 'disabilita',
398 "label.enable" => 'abilita',
399 "label.filter" => 'filtro',
400 "label.timeweek" => 'totale settimanale',
401 "label.hrs" => 'ore',
402 // Note to translators: the strings below are missing and must be added and translated
403 // "label.errors" => 'errors',
404 // "label.ldap_hint" => 'Type your <b>Windows login</b> and <b>password</b> in the fields below.',
405 // "label.calendar_today" => 'today',
406 // "label.calendar_close" => 'close',
407
408 // login hello text
409 // "login.hello.text" => "Anuko Time Tracker is a simple, easy to use, open source time tracking system.",
410 );
411 ?>