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.
 
  11 // | There are only two ways to violate the license:
 
  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).
 
  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).
 
  21 // | This license applies to this document only, not any other software
 
  22 // | that it may be combined with.
 
  24 // +----------------------------------------------------------------------+
 
  26 // | https://www.anuko.com/time_tracker/credits.htm
 
  27 // +----------------------------------------------------------------------+
 
  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.
 
  32 // Note to translators: Use proper capitalization rules for your language.
 
  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');
 
  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');
 
  41 $i18n_key_words = array(
 
  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',
 
  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.
 
  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}".',
 
  85 // TODO: refactoring ongoing down from here.
 
  86 'error.project' => 'seleziona il progetto',
 
  87 // TODO: translate the following.
 
  88 // 'error.task' => 'Select task.',
 
  89 // 'error.client' => 'Select client.',
 
  90 // 'error.report' => 'Select report.',
 
  91 // 'error.record' => 'Select record.',
 
  92 'error.auth' => 'login o password errati',
 
  93 // Note to translators: this string needs to be translated.
 
  94 // 'error.user_exists' => 'user with this login already exists',
 
  95 'error.project_exists' => 'esiste già un progetto con questo nome',
 
  96 // TODO: translate the following.
 
  97 // 'error.task_exists' => 'Task with this name already exists.',
 
  98 // 'error.client_exists' => 'Client with this name already exists.',
 
  99 // Note to translators: this string needs to be properly translated (e-mail replaced with login).
 
 100 // 'error.no_login' => 'nessun utente con questa e-mail',
 
 101 // Note to translators: the strings below need to be translated
 
 102 // 'error.upload' => 'file upload error',
 
 103 // 'error.range_locked' => 'Date range is locked.',
 
 104 // 'error.mail_send' => 'error sending mail',
 
 105 // 'error.no_email' => 'no email associated with this login',
 
 106 // 'error.uncompleted_exists' => 'uncompleted entry already exists. close or delete it.',
 
 107 // 'error.goto_uncompleted' => 'go to uncompleted entry.',
 
 109 // Labels for buttons.
 
 110 'button.login' => 'login',
 
 111 'button.now' => 'adesso',
 
 112 'button.save' => 'salva',
 
 113 'button.delete' => 'elimina',
 
 114 'button.cancel' => 'cancella',
 
 115 'button.submit' => 'invia',
 
 116 'button.add_user' => 'Aggiungi utente',
 
 117 'button.add_project' => 'Aggiungi progetto',
 
 118 // TODO: translate the following.
 
 119 // 'button.add_task' => 'Add task',
 
 120 'button.add_client' => 'Aggiungi cliente',
 
 121 // TODO: translate the following.
 
 122 // 'button.add_invoice' => 'Add invoice',
 
 123 // 'button.add_option' => 'Add option',
 
 124 // 'button.add' => 'Add',
 
 125 'button.generate' => 'Genera',
 
 126 // Note to translators: button.reset_password needs an improved translation.
 
 127 // 'button.reset_password' => 'reset password',
 
 128 'button.send' => 'invia',
 
 129 'button.send_by_email' => 'invia tramite e-mail',
 
 130 'button.save_as_new' => 'salva come nuovo',
 
 131 'button.create_team' => 'crea team',
 
 132 'button.export' => 'esporta team',
 
 133 'button.import' => 'importa team',
 
 134 'button.apply' => 'applica',
 
 136 // labels for controls on various forms
 
 137 // TODO: translate label.team_name
 
 138 // 'label.team_name' => 'team name',
 
 139 'label.currency' => 'moneta',
 
 140 // TODO: translate label.manager_name and label.manager_login.
 
 141 // 'label.manager_name' => 'manager name',
 
 142 // 'label.manager_login' => 'manager login',
 
 143 'label.password' => 'password',
 
 144 'label.confirm_password' => 'conferma password',
 
 145 'label.email' => 'e-mail',
 
 146 // TODO: translate the following.
 
 147 // 'label.email' => 'Email',
 
 149 // TODO: translate the following.
 
 150 // 'label.bcc' => 'Bcc',
 
 151 'label.subject' => 'oggetto',
 
 152 'label.total' => 'totale',
 
 153 // Translate the following.
 
 154 // 'label.page' => 'Page',
 
 155 // 'label.condition' => 'Condition',
 
 156 // TODO: translate the following.
 
 157 // 'label.yes' => 'yes',
 
 158 // 'label.no' => 'no',
 
 161 // TODO: the entire title section is missing here. See the English file.
 
 163 "form.filter.project" => 'progetto',
 
 164 "form.filter.filter" => 'report preferiti',
 
 165 "form.filter.filter_new" => 'salva nei preferiti',
 
 166 "form.filter.filter_confirm_delete" => 'sei sicuro di voler cancellare questo report dai preferiti?',
 
 168 // login form attributes
 
 169 "form.login.title" => 'login',
 
 170 "form.login.login" => 'login',
 
 172 // password reminder form attributes
 
 173 "form.fpass.title" => 'reset password',
 
 174 "form.fpass.login" => 'login',
 
 175 "form.fpass.send_pass_str" => 'richiesta di reset pasword inviata',
 
 176 "form.fpass.send_pass_subj" => 'richiesta di password reset', 
 
 177 // Note to translators: the strings below must be translated
 
 178 // "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",
 
 179 // "form.fpass.reset_comment" => "to reset your password please type it in and click on save",
 
 181 // administrator form
 
 182 "form.admin.title" => 'amministratore',
 
 183 // Note to translators: the string below must be translated
 
 184 // "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).',
 
 186 "form.admin.change_pass" => 'cambia la password dell\\\'amministratore',
 
 187 "form.admin.profile.title" => 'teams',
 
 188 "form.admin.profile.noprofiles" => 'il database è vuoto. loggati come amministratore e crea un nuovo team.',
 
 189 "form.admin.profile.comment" => 'elimina team',
 
 190 "form.admin.profile.th.id" => 'id',
 
 191 "form.admin.profile.th.name" => 'nome',
 
 192 "form.admin.profile.th.edit" => 'edit',
 
 193 "form.admin.profile.th.del" => 'elimina',
 
 194 "form.admin.profile.th.active" => 'attivo',
 
 195 "form.admin.options" => 'opzioni',
 
 196 // Note to translators: the strings below are missing and must be added and translated
 
 197 // "form.admin.custom_date_format" => "date format",
 
 198 // "form.admin.custom_time_format" => "time format",
 
 199 // "form.admin.start_week" => "first day of week",
 
 201 // my time form attributes
 
 202 "form.mytime.title" => 'giorno',
 
 203 "form.mytime.edit_title" => 'modifica time record',
 
 204 "form.mytime.del_str" => 'elimina time record',
 
 205 "form.mytime.time_form" => ' (hh:mm)',
 
 206 "form.mytime.date" => 'data',
 
 207 "form.mytime.project" => 'progetto',
 
 208 "form.mytime.activity" => 'attività',
 
 209 "form.mytime.start" => 'inizio',
 
 210 "form.mytime.finish" => 'fine',
 
 211 "form.mytime.duration" => 'durata',
 
 212 "form.mytime.note" => 'note',
 
 213 "form.mytime.behalf" => 'attività giornaliera per',
 
 214 "form.mytime.daily" => 'attività giornaliera',
 
 215 "form.mytime.total" => 'ore totali: ',
 
 216 "form.mytime.th.project" => 'progetto',
 
 217 "form.mytime.th.activity" => 'attività',
 
 218 "form.mytime.th.start" => 'inizio',
 
 219 "form.mytime.th.finish" => 'fine',
 
 220 "form.mytime.th.duration" => 'durata',
 
 221 "form.mytime.th.note" => 'note',
 
 222 "form.mytime.th.edit" => 'edit',
 
 223 "form.mytime.th.delete" => 'elimina',
 
 224 "form.mytime.del_yes" => 'time record cancellato',
 
 225 "form.mytime.no_finished_rec" => 'questo record è stato salvato con la sola ora di inzio attività. non è un errore. esegui il logout per altro....',
 
 226 "form.mytime.billable" => 'fatturabile',
 
 227 "form.mytime.warn_tozero_rec" => 'questo time record deve essere cancellato perchè il periodo di riferimento è stato bloccato',
 
 228 // Note to translators: the string below is missing and must be added and translated
 
 229 // "form.mytime.uncompleted" => 'uncompleted',
 
 231 // profile form attributes
 
 232 // Note to translators: we need a more accurate translation of form.profile.create_title
 
 233 "form.profile.create_title" => 'crea un nuovo account manager',
 
 234 "form.profile.edit_title" => 'modifca il profilo',
 
 235 "form.profile.name" => 'nome',
 
 236 "form.profile.login" => 'login',
 
 238 // Note to translators: the strings below are missing and must be added and translated
 
 239 // "form.profile.showchart" => 'show pie charts',
 
 240 // "form.profile.lang" => 'language',
 
 241 // "form.profile.custom_date_format" => "date format",
 
 242 // "form.profile.custom_time_format" => "time format",
 
 243 // "form.profile.default_format" => "(default)",
 
 244 // "form.profile.start_week" => "first day of week",
 
 246 // people form attributes
 
 247 "form.people.ppl_str" => 'persone',
 
 248 "form.people.createu_str" => 'crea un nuovo utente',
 
 249 "form.people.edit_str" => 'modifica utente',
 
 250 "form.people.del_str" => 'elimina utente',
 
 251 "form.people.th.name" => 'nome',
 
 252 "form.people.th.login" => 'login',
 
 253 "form.people.th.role" => 'funzione',
 
 254 "form.people.th.edit" => 'modifica',
 
 255 "form.people.th.del" => 'elimina',
 
 256 "form.people.th.status" => 'stato',
 
 257 "form.people.th.project" => 'progetto',
 
 258 "form.people.th.rate" => 'costo',
 
 259 "form.people.manager" => 'manager',
 
 260 "form.people.comanager" => 'comanager',
 
 261 "form.people.empl" => 'utente',
 
 262 "form.people.name" => 'nome',
 
 263 "form.people.login" => 'login',
 
 265 "form.people.rate" => 'costo per ora di default',
 
 266 "form.people.comanager" => 'co-manager',
 
 267 "form.people.projects" => 'progetti',
 
 269 // projects form attributes
 
 270 "form.project.proj_title" => 'progetti',
 
 271 "form.project.edit_str" => 'mofifca progetto',
 
 272 "form.project.add_str" => 'aggiungi nuovo progetto',
 
 273 "form.project.del_str" => 'elimina progetto',
 
 274 "form.project.th.name" => 'nome',
 
 275 "form.project.th.edit" => 'modifica',
 
 276 "form.project.th.del" => 'elimina',
 
 277 "form.project.name" => 'nome',
 
 279 // activities form attributes
 
 280 "form.activity.act_title" => 'attività',
 
 281 "form.activity.add_title" => 'aggiungi nuova attività',
 
 282 "form.activity.edit_str" => 'modifica attività',
 
 283 "form.activity.del_str" => 'elimina attività',
 
 284 "form.activity.name" => 'nome',
 
 285 "form.activity.project" => 'progetto',
 
 286 "form.activity.th.name" => 'nome',
 
 287 "form.activity.th.project" => 'progetto',
 
 288 "form.activity.th.edit" => 'modifica',
 
 289 "form.activity.th.del" => 'elimina',
 
 292 "form.report.title" => 'report',
 
 293 "form.report.from" => 'data inizio',
 
 294 "form.report.to" => 'data fine',
 
 295 "form.report.groupby_user" => 'utente',
 
 296 "form.report.groupby_project" => 'progetto',
 
 297 "form.report.groupby_activity" => 'attività',
 
 298 "form.report.duration" => 'durata',
 
 299 "form.report.start" => 'inizio',
 
 300 "form.report.activity" => 'attività',
 
 301 "form.report.show_idle" => 'mostra inattivi',
 
 302 "form.report.finish" => 'fine',
 
 303 "form.report.note" => 'nota',
 
 304 "form.report.project" => 'progetto',
 
 305 "form.report.totals_only" => 'solo i totali',
 
 306 "form.report.total" => 'ore totali',
 
 307 "form.report.th.empllist" => 'utente',
 
 308 "form.report.th.date" => 'data',
 
 309 "form.report.th.project" => 'progetto',
 
 310 "form.report.th.activity" => 'attività',
 
 311 "form.report.th.start" => 'inizio',
 
 312 "form.report.th.finish" => 'fine',
 
 313 "form.report.th.duration" => 'durata',
 
 314 "form.report.th.note" => 'note',
 
 316 // mail form attributes
 
 317 "form.mail.from" => 'da',
 
 318 "form.mail.to" => 'a',
 
 319 "form.mail.comment" => 'commento',
 
 320 "form.mail.above" => 'invia questo report tramite e-mail',
 
 321 // Note to translators: this string needs to be translated.
 
 322 // "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.',
 
 323 "form.mail.sending_str" => '<b>messaggio inviato</b>',
 
 325 // invoice attributes
 
 326 "form.invoice.title" => 'fattura',
 
 327 "form.invoice.caption" => 'fattura',
 
 328 "form.invoice.above" => 'informazioni aggiuntive per la fattura',
 
 329 "form.invoice.select_cust" => 'seleziona il cliente',
 
 330 "form.invoice.fillform" => 'compila i campi',
 
 331 "form.invoice.date" => 'data',
 
 332 "form.invoice.number" => 'numero fattura',
 
 333 "form.invoice.tax" => 'tassa',
 
 334 "form.invoice.comment" => 'commento ',
 
 335 "form.invoice.th.username" => 'persona',
 
 336 "form.invoice.th.time" => 'ore',
 
 337 "form.invoice.th.rate" => 'costo',
 
 338 "form.invoice.th.summ" => 'ammontare',
 
 339 "form.invoice.subtotal" => 'subtotale',
 
 340 "form.invoice.customer" => 'cliente',
 
 341 "form.invoice.mailinv_above" => 'invia la fattura tramite e-mail',
 
 342 "form.invoice.sending_str" => '<b>fattura inviata</b>',
 
 344 "form.migration.zip" => 'compressione',
 
 345 "form.migration.file" => 'seleziona il file',
 
 346 "form.migration.import.title" => 'importa i dati',
 
 347 "form.migration.import.success" => 'importazione eseguita con successo',
 
 348 "form.migration.import.text" => 'importa i dati del team da un file xml',
 
 349 "form.migration.export.title" => 'esporta i dati',
 
 350 "form.migration.export.success" => 'esportazione eseguita con successo',
 
 351 "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.',
 
 352 // Note to translators: the strings below are missing and must be added and translated
 
 353 // "form.migration.compression.none" => 'none',
 
 354 // "form.migration.compression.gzip" => 'gzip',
 
 355 // "form.migration.compression.bzip" => 'bzip',
 
 357 "form.client.title" => 'clienti',
 
 358 "form.client.add_title" => 'aggiungi cliente',
 
 359 "form.client.edit_title" => 'modifica cliente',
 
 360 "form.client.del_title" => 'elimina cliente',
 
 361 "form.client.th.name" => 'nome',
 
 362 "form.client.th.edit" => 'modifica',
 
 363 "form.client.th.del" => 'elimina',
 
 364 "form.client.name" => 'nome',
 
 365 "form.client.tax" => 'tassa',
 
 366 "form.client.comment" => 'commento ',
 
 368 // miscellaneous strings
 
 369 "forward.forgot_password" => 'password dimenticata?',
 
 370 "forward.edit" => 'modifica',
 
 371 "forward.delete" => 'elimina',
 
 372 "forward.tocsvfile" => 'esporta i dati in un file .csv',
 
 373 "forward.toxmlfile" => 'esporta i dati in un file .xml',
 
 374 "forward.geninvoice" => 'genera la fattura',
 
 375 "forward.change" => 'configura i clienti',
 
 377 // strings inside contols on forms
 
 378 "controls.select.project" => '--- seleziona il progetto ---',
 
 379 "controls.select.activity" => '--- seleziona la attività ---',
 
 380 "controls.select.client" => '--- seleziona il cliente ---',
 
 381 "controls.project_bind" => '--- tutti ---',
 
 382 "controls.all" => '--- tutti ---',
 
 383 "controls.notbind" => '--- no ---',
 
 384 "controls.per_tm" => 'questo mese',
 
 385 "controls.per_lm" => 'mese scorso',
 
 386 "controls.per_tw" => 'questa settimana',
 
 387 "controls.per_lw" => 'settimana scorsa',
 
 388 "controls.per_td" => 'questo giorno',
 
 389 "controls.per_at" => 'tutto il tempo',
 
 390 "controls.per_ty" => 'quest\\\'anno',
 
 391 "controls.sel_period" => '--- seleziona il periodo di tempo ---',
 
 392 "controls.sel_groupby" => '--- non raggruppare ---',
 
 393 "controls.inc_billable" => 'fatturabile',
 
 394 "controls.inc_nbillable" => 'non fatturabile',
 
 395 // Note to translators: the string below must be translated
 
 396 // "controls.default" => '--- default ---',
 
 399 "label.chart.title1" => 'attività per utente',
 
 400 // Note to translators: the string below is missing and must be added and translated
 
 401 // "label.chart.title2" => 'projects for user',
 
 402 "label.chart.period" => 'grafico per il periodo',
 
 404 "label.pinfo" => '%s, %s',
 
 405 "label.pinfo2" => '%s',
 
 406 "label.pbehalf_info" => '%s %s <b>a favore di %s</b>',
 
 407 "label.pminfo" => ' (manager)',
 
 408 "label.pcminfo" => ' (co-manager)',
 
 409 "label.painfo" => ' (amministratore)',
 
 410 "label.time_noentry" => 'nessun inserimento',
 
 411 "label.today" => 'oggi',
 
 412 "label.req_fields" => '* campi obbligatori',
 
 413 "label.sel_project" => 'seleziona il progetto',
 
 414 "label.sel_activity" => 'seleziona la attività',
 
 415 "label.sel_tp" => 'seleziona il periodo di tempo',
 
 416 "label.set_tp" => 'oppure setta le date',
 
 417 "label.fields" => 'mostra i campi',
 
 418 "label.group_title" => 'raggruppa per',
 
 419 "label.include_title" => 'includi records',
 
 420 "label.inv_str" => 'fattura',
 
 421 "label.set_empl" => 'seleziona utenti',
 
 422 "label.sel_all" => 'seleziona tutti',
 
 423 "label.sel_none" => 'deseleziona tutti',
 
 425 "label.disable" => 'disabilita',
 
 426 "label.enable" => 'abilita',
 
 427 "label.filter" => 'filtro',
 
 428 "label.timeweek" => 'totale settimanale',
 
 429 "label.hrs" => 'ore',
 
 430 // Note to translators: the strings below are missing and must be added and translated
 
 431 // "label.errors" => 'errors',
 
 432 // "label.ldap_hint" => 'Type your <b>Windows login</b> and <b>password</b> in the fields below.',
 
 433 // "label.calendar_today" => 'today',
 
 434 // "label.calendar_close" => 'close',
 
 437 // "login.hello.text" => "Anuko Time Tracker is a simple, easy to use, open source time tracking system.",