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: Please use proper capitalization rules for your language.
 
  34 $i18n_language = 'Română';
 
  35 $i18n_months = array('Ianuarie', 'Februarie', 'Martie', 'Aprilie', 'Mai', 'Iunie', 'Iulie', 'August', 'Septembrie', 'Octombrie', 'Noiembrie', 'Decembrie');
 
  36 $i18n_weekdays = array('Duminica', 'Luni', 'Marti', 'Miercuri', 'Joi', 'Vineri', 'Sambata');
 
  37 $i18n_weekdays_short = array('Du', 'Lu', 'Ma', 'Mi', 'Jo', 'Vi', 'Sa');
 
  39 $i18n_holidays = array('01/01', '01/02', '04/19', '04/20', '05/01', '06/07', '06/08', '08/15', '12/01', '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 'menu.login' => 'Autentificare',
 
  46 'menu.logout' => 'Iesire',
 
  47 // TODO: translate the following.
 
  48 // 'menu.forum' => 'Forum',
 
  49 'menu.help' => 'Ajutor',
 
  50 // TODO: translate the following.
 
  51 // 'menu.create_team' => 'Create Team',
 
  52 'menu.profile' => 'Profil',
 
  53 'menu.time' => 'Timpul',
 
  54 // TODO: translate the following.
 
  55 // 'menu.expenses' => 'Expenses',
 
  56 'menu.reports' => 'Rapoarte',
 
  57 // TODO: translate the following.
 
  58 // 'menu.charts' => 'Charts',
 
  59 'menu.projects' => 'Proiecte',
 
  60 // TODO: translate the following.
 
  61 // 'menu.tasks' => 'Tasks',
 
  62 // 'menu.users' => 'Users',
 
  63 'menu.teams' => 'Echipe',
 
  64 // TODO: translate the following.
 
  65 // 'menu.export' => 'Export',
 
  66 'menu.clients' => 'Clienti',
 
  67 // TODO: translate the following.
 
  68 // 'menu.options' => 'Options',
 
  70 // Footer - strings on the bottom of most pages.
 
  71 // TODO: translate the following.
 
  72 // 'footer.contribute_msg' => 'You can contribute to Time Tracker in different ways.',
 
  73 // 'footer.credits' => 'Credits',
 
  74 // 'footer.license' => 'License',
 
  75 // 'footer.improve' => 'Contribute', // Translators: this could mean "Improve", if it makes better sense in your language.
 
  76                                      // This is a link to a webpage that describes how to contribute to the project.
 
  79 // TODO: translate the following.
 
  80 // 'error.access_denied' => 'Access denied.',
 
  81 // 'error.sys' => 'System error.',
 
  82 'error.db' => 'Eroare baza de date.',
 
  83 // TODO: translate the following.
 
  84 // 'error.field' => 'Incorrect "{0}" data.',
 
  85 'error.empty' => 'Campul "{0}" este gol.',
 
  86 'error.not_equal' => 'Campul "{0}" nu este egal cu campul "{1}".',
 
  87 // TODO: translate the following.
 
  88 // 'error.interval' => 'Field "{0}" must be greater than "{1}".',
 
  89 'error.project' => 'Selecteaza proiect.',
 
  90 // TODO: translate the following.
 
  91 // 'error.task' => 'Select task.',
 
  92 // 'error.client' => 'Select client.',
 
  93 // 'error.report' => 'Select report.',
 
  94 // 'error.record' => 'Select record.',
 
  95 'error.auth' => 'Nume de utilizator sau parola incorecta.',
 
  96 // TODO: translate the following.
 
  97 // 'error.user_exists' => 'User with this login already exists.',
 
  98 'error.project_exists' => 'Proiectul cu acest nume exista deja.',
 
  99 // TODO: translate the following.
 
 100 // 'error.task_exists' => 'Task with this name already exists.',
 
 101 // 'error.client_exists' => 'Client with this name already exists.',
 
 102 // 'error.invoice_exists' => 'Invoice with this number already exists.',
 
 103 // 'error.no_invoiceable_items' => 'There are no invoiceable items.',
 
 104 // 'error.no_login' => 'No user with this login.',
 
 105 // 'error.no_teams' => 'Your database is empty. Login as admin and create a new team.',
 
 106 'error.upload' => 'Eroare la upload-ul fisierului.',
 
 107 // TODO: translate the following.
 
 108 // 'error.range_locked' => 'Date range is locked.',
 
 109 // 'error.mail_send' => 'Error sending mail.',
 
 110 // 'error.no_email' => 'No email associated with this login.',
 
 111 // 'error.uncompleted_exists' => 'Uncompleted entry already exists. Close or delete it.',
 
 112 // 'error.goto_uncompleted' => 'Go to uncompleted entry.',
 
 113 // 'error.overlap' => 'Time interval overlaps with existing records.',
 
 114 // 'error.future_date' => 'Date is in future.',
 
 116 // Labels for buttons.
 
 117 'button.login' => 'Autentifica',
 
 118 'button.now' => 'Acum',
 
 119 'button.save' => 'Salveaza',
 
 120 // TODO: translate the following.
 
 121 // 'button.copy' => 'Copy',
 
 122 'button.cancel' => 'Renunta',
 
 123 'button.submit' => 'Trimite',
 
 124 'button.add_user' => 'Adauga utilizator',
 
 125 'button.add_project' => 'Adauga proiect',
 
 126 // TODO: translate the following.
 
 127 // 'button.add_task' => 'Add task',
 
 128 'button.add_client' => 'Adauga client',
 
 129 // TODO: translate the following.
 
 130 // 'button.add_invoice' => 'Add invoice',
 
 131 // 'button.add_option' => 'Add option',
 
 132 'button.add' => 'Adauga',
 
 133 'button.generate' => 'Genereaza',
 
 134 // TODO: translate the following.
 
 135 // 'button.reset_password' => 'Reset password',
 
 136 'button.send' => 'Trimite',
 
 137 'button.send_by_email' => 'Trimite pe e-mail',
 
 138 'button.create_team' => 'Adauga echipa',
 
 139 'button.export' => 'Exporta echipa',
 
 140 'button.import' => 'Importa echipa',
 
 141 // TODO: translate the following.
 
 142 // 'button.close' => 'Close',
 
 143 // 'button.stop' => 'Stop',
 
 145 // Labels for controls on forms. Labels in this section are used on multiple forms.
 
 146 // TODO: translate the following.
 
 147 // 'label.team_name' => 'Team name',
 
 148 // 'label.address' => 'Address',
 
 149 'label.currency' => 'Moneda',
 
 150 // TODO: translate the following.
 
 151 // 'label.manager_name' => 'Manager name',
 
 152 // 'label.manager_login' => 'Manager login',
 
 153 // 'label.person_name' => 'Name',
 
 154 // 'label.thing_name' => 'Name',
 
 155 // 'label.login' => 'Login',
 
 156 'label.password' => 'Parola',
 
 157 'label.confirm_password' => 'Confirma parola',
 
 158 'label.email' => 'E-mail',
 
 159 'label.cc' => 'Copie',
 
 160 // TODO: translate the following.
 
 161 // 'label.bcc' => 'Bcc',
 
 162 'label.subject' => 'Subiect',
 
 163 // TODO: translate the following.
 
 164 // 'label.date' => 'Date',
 
 165 // 'label.start_date' => 'Start date',
 
 166 // 'label.end_date' => 'End date',
 
 167 // 'label.user' => 'User',
 
 168 // 'label.users' => 'Users',
 
 169 // 'label.client' => 'Client',
 
 170 // 'label.clients' => 'Clients',
 
 171 // 'label.option' => 'Option',
 
 172 // 'label.invoice' => 'Invoice',
 
 173 // 'label.project' => 'Project',
 
 174 // 'label.projects' => 'Projects',
 
 175 // 'label.task' => 'Task',
 
 176 // 'label.tasks' => 'Tasks',
 
 177 // 'label.description' => 'Description',
 
 178 // 'label.start' => 'Start',
 
 179 // 'label.finish' => 'Finish',
 
 180 // 'label.duration' => 'Duration',
 
 181 // 'label.note' => 'Note',
 
 182 // 'label.notes' => 'Notes',
 
 183 // 'label.item' => 'Item',
 
 184 // 'label.cost' => 'Cost',
 
 185 // 'label.day_total' => 'Day total',
 
 186 // 'label.week_total' => 'Week total',
 
 187 // 'label.month_total' => 'Month total',
 
 188 // 'label.today' => 'Today',
 
 189 // 'label.total_hours' => 'Total hours',
 
 190 // 'label.total_cost' => 'Total cost',
 
 191 // 'label.view' => 'View',
 
 192 // 'label.edit' => 'Edit',
 
 193 'label.delete' => 'Sterge',
 
 194 // TODO: translate the following.
 
 195 // 'label.configure' => 'Configure',
 
 196 // 'label.select_all' => 'Select all',
 
 197 // 'label.select_none' => 'Deselect all',
 
 198 // 'label.day_view' => 'Day view',
 
 199 // 'label.week_view' => 'Week view',
 
 200 // 'label.id' => 'ID',
 
 201 // 'label.language' => 'Language',
 
 202 // 'label.decimal_mark' => 'Decimal mark',
 
 203 // 'label.date_format' => 'Date format',
 
 204 // 'label.time_format' => 'Time format',
 
 205 // 'label.week_start' => 'First day of week',
 
 206 // 'label.comment' => 'Comment',
 
 207 // 'label.status' => 'Status',
 
 208 // 'label.tax' => 'Tax',
 
 209 // 'label.subtotal' => 'Subtotal',
 
 210 'label.total' => 'Total',
 
 211 // TODO: translate the following.
 
 212 // 'label.client_name' => 'Client name',
 
 213 // 'label.client_address' => 'Client address',
 
 214 // 'label.or' => 'or',
 
 215 // 'label.error' => 'Error',
 
 216 // 'label.ldap_hint' => 'Type your <b>Windows login</b> and <b>password</b> in the fields below.',
 
 217 // 'label.required_fields' => '* - required fields',
 
 218 // 'label.on_behalf' => 'on behalf of',
 
 219 // 'label.role_manager' => '(manager)',
 
 220 // 'label.role_comanager' => '(co-manager)',
 
 221 // 'label.role_admin' => '(administrator)',
 
 222 // 'label.page' => 'Page',
 
 223 // 'label.condition' => 'Condition',
 
 224 // 'label.yes' => 'yes',
 
 225 // 'label.no' => 'no',
 
 226 // Labels for plugins (extensions to Time Tracker that provide additional features).
 
 227 // TODO: translate the following.
 
 228 // 'label.custom_fields' => 'Custom fields',
 
 229 // 'label.monthly_quotas' => 'Monthly quotas',
 
 230 // 'label.type' => 'Type',
 
 231 // 'label.type_dropdown' => 'dropdown',
 
 232 // 'label.type_text' => 'text',
 
 233 // 'label.required' => 'Required',
 
 234 // 'label.fav_report' => 'Favorite report',
 
 235 // 'label.cron_schedule' => 'Cron schedule',
 
 236 // 'label.what_is_it' => 'What is it?',
 
 237 // 'label.expense' => 'Expense',
 
 238 // 'label.quantity' => 'Quantity',
 
 239 // 'label.paid_status' => 'Paid status',
 
 240 // 'label.paid' => 'Paid',
 
 241 // 'label.mark_paid' => 'Mark paid',
 
 244 'title.login' => 'Autentificare',
 
 245 // TODO: translate the following.
 
 246 // 'title.teams' => 'Teams',
 
 247 // 'title.create_team' => 'Creating Team',
 
 248 // 'title.edit_team' => 'Editing Team',
 
 249 // 'title.delete_team' => 'Deleting Team',
 
 250 'title.reset_password' => 'Reseteaza parola',
 
 251 // TODO: translate the following.
 
 252 // 'title.change_password' => 'Changing Password',
 
 253 // 'title.time' => 'Time',
 
 254 // 'title.edit_time_record' => 'Editing Time Record',
 
 255 // 'title.delete_time_record' => 'Deleting Time Record',
 
 256 // 'title.expenses' => 'Expenses',
 
 257 // 'title.edit_expense' => 'Editing Expense Item',
 
 258 // 'title.delete_expense' => 'Deleting Expense Item',
 
 262 // TODO: refactoring ongoing down from here.
 
 264 "form.filter.project" => 'proiect',
 
 265 "form.filter.filter" => 'rapoarte favorite',
 
 266 "form.filter.filter_new" => 'salveaza ca favorit',
 
 268 // password reminder form attributes
 
 269 "form.fpass.login" => 'autentifica', 
 
 270 "form.fpass.send_pass_str" => 'cererea de resetare a parolei a fost trimisa',
 
 271 "form.fpass.send_pass_subj" => 'Anuko Time Tracker - cerere de resetare a parolei',
 
 272 // Note to translators: the ending of this string below needs to be translated.
 
 273 "form.fpass.send_pass_body" => "Draga Utilizator,\n\nCineva, posibil tu, a cerut resetarea parolei pentru contul Anuko Time Tracker. Te rog, viziteaza acesta legatura daca doresti sa iti resetezi parola.\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",
 
 274 "form.fpass.reset_comment" => "pentru resetarea parolei introdu-o si da click pe salveaza",
 
 276 // administrator form
 
 277 "form.admin.title" => 'administrator',
 
 278 "form.admin.duty_text" => 'adauga o noua echipa prin adaugarea unui nou cont de tip manager.<br>deasemeni poti importa datele despre echipa dintr-un fisier xml generat de un alt server Anuko Time Tracker  (nu sunt permise duplicate pentru emailuri).',
 
 280 "form.admin.change_pass" => 'schimba parola contului de administrator',
 
 281 "form.admin.profile.title" => 'echipe',
 
 282 "form.admin.profile.noprofiles" => 'baza de date este goala. intra ca admin si adauga o noua echipa.',
 
 283 "form.admin.profile.comment" => 'sterge echipa',
 
 284 "form.admin.profile.th.id" => 'id',
 
 285 "form.admin.profile.th.name" => 'nunme',
 
 286 "form.admin.profile.th.edit" => 'editeaza',
 
 287 "form.admin.profile.th.del" => 'sterge',
 
 288 "form.admin.profile.th.active" => 'activ',
 
 289 // Note to translators: the strings below are missing and must be added and translated 
 
 290 // "form.admin.options" => 'options',
 
 291 // "form.admin.custom_date_format" => "date format",
 
 292 // "form.admin.custom_time_format" => "time format",
 
 293 // "form.admin.start_week" => "first day of week",
 
 295 // my time form attributes
 
 296 "form.mytime.title" => 'timpul meu',
 
 297 "form.mytime.edit_title" => 'editarea inregistrarii timpului',
 
 298 "form.mytime.del_str" => 'stergerea inregistrarii timpului',
 
 299 "form.mytime.time_form" => ' (hh:mm)',
 
 300 "form.mytime.date" => 'data',
 
 301 "form.mytime.project" => 'proiect',
 
 302 "form.mytime.activity" => 'activitate',
 
 303 "form.mytime.start" => 'inceput',
 
 304 "form.mytime.finish" => 'sfarsit',
 
 305 "form.mytime.duration" => 'durata',
 
 306 "form.mytime.note" => 'nota',
 
 307 "form.mytime.behalf" => 'activitatea zilnica pentru',
 
 308 "form.mytime.daily" => 'activitatea zilnica',
 
 309 "form.mytime.total" => 'ore total: ',
 
 310 "form.mytime.th.project" => 'proiect',
 
 311 "form.mytime.th.activity" => 'activitate',
 
 312 "form.mytime.th.start" => 'inceput',
 
 313 "form.mytime.th.finish" => 'sfarsit',
 
 314 "form.mytime.th.duration" => 'durata',
 
 315 "form.mytime.th.note" => 'nota',
 
 316 "form.mytime.th.edit" => 'editeaza',
 
 317 "form.mytime.th.delete" => 'sterge',
 
 318 "form.mytime.del_yes" => 'inregistrarea timului a fost stearsa cu succes',
 
 319 "form.mytime.no_finished_rec" => 'aceasta inregistrare a fost salvata numei cu timpul de inceput. nu este o eroare. poti parasi aplicatia daca este nevoie.',
 
 320 // Note to translators: the strings below are missing and must be added and translated 
 
 321 // "form.mytime.billable" => 'billable',
 
 322 // "form.mytime.warn_tozero_rec" => 'this time record must be deleted because this time period is locked',
 
 323 // "form.mytime.uncompleted" => 'uncompleted',
 
 325 // profile form attributes
 
 326 // Note to translators: we need a more accurate translation of form.profile.create_title
 
 327 "form.profile.create_title" => 'creazaun nou cont de tip manager',
 
 328 "form.profile.edit_title" => 'editeaza profilul',
 
 329 "form.profile.name" => 'nume',
 
 330 // Note to translators: the string below is missing and must be added and translated 
 
 331 // "form.profile.login" => 'login',
 
 333 // Note to translators: the strings below are missing and must be added and translated 
 
 334 // "form.profile.showchart" => 'show pie charts',
 
 335 // "form.profile.lang" => 'language',
 
 336 // "form.profile.custom_date_format" => "date format",
 
 337 // "form.profile.custom_time_format" => "time format",
 
 338 // "form.profile.default_format" => "(default)",
 
 339 // "form.profile.start_week" => "first day of week",
 
 341 // people form attributes
 
 342 "form.people.ppl_str" => 'persoane',
 
 343 "form.people.createu_str" => 'adaugare untilizator nou',
 
 344 "form.people.edit_str" => 'editare utilizator',
 
 345 "form.people.del_str" => 'stergee utilizator',
 
 346 "form.people.th.name" => 'nume',
 
 347 // Note to translators: the string below is missing and must be added and translated 
 
 348 // "form.people.th.login" => 'login',
 
 349 "form.people.th.role" => 'functie',
 
 350 "form.people.th.edit" => 'editeaza',
 
 351 "form.people.th.del" => 'sterge',
 
 352 "form.people.th.status" => 'stare',
 
 353 "form.people.th.project" => 'proiect',
 
 354 "form.people.th.rate" => 'rata',
 
 355 "form.people.manager" => 'manager',
 
 356 "form.people.comanager" => 'comanager',
 
 357 "form.people.empl" => 'utilizator',
 
 358 "form.people.name" => 'nume',
 
 359 // Note to translators: "form.people.login" => 'e-mail', // email has been changed to login
 
 361 "form.people.rate" => 'pret pe ora implicit',
 
 362 "form.people.comanager" => 'co-manager',
 
 363 "form.people.projects" => 'proiecte',
 
 365 // projects form attributes
 
 366 "form.project.proj_title" => 'proiecte',
 
 367 "form.project.edit_str" => 'editare proiect',
 
 368 "form.project.add_str" => 'adauagre proiect nou',
 
 369 "form.project.del_str" => 'stergere proiect',
 
 370 "form.project.th.name" => 'nume',
 
 371 "form.project.th.edit" => 'editeaza',
 
 372 "form.project.th.del" => 'sterge',
 
 373 "form.project.name" => 'nume',
 
 375 // activities form attributes
 
 376 "form.activity.act_title" => 'activitati',
 
 377 "form.activity.add_title" => 'adaugare activitate noua',
 
 378 "form.activity.edit_str" => 'editare activitate',
 
 379 "form.activity.del_str" => 'stergere activitate',
 
 380 "form.activity.name" => 'nume',
 
 381 "form.activity.project" => 'proiect',
 
 382 "form.activity.th.name" => 'nume',
 
 383 "form.activity.th.project" => 'proiect',
 
 384 "form.activity.th.edit" => 'editare',
 
 385 "form.activity.th.del" => 'stergere',
 
 388 "form.report.title" => 'rapoarte',
 
 389 "form.report.from" => 'data inceput',
 
 390 "form.report.to" => 'data sfarsit',
 
 391 "form.report.groupby_user" => 'utilizator',
 
 392 "form.report.groupby_project" => 'proiect',
 
 393 "form.report.groupby_activity" => 'activitate',
 
 394 "form.report.duration" => 'durata',
 
 395 "form.report.start" => 'inceput',
 
 396 "form.report.activity" => 'activitate',
 
 397 "form.report.show_idle" => 'arata liber',
 
 398 "form.report.finish" => 'sfarsit',
 
 399 "form.report.note" => 'nota',
 
 400 "form.report.project" => 'proiect',
 
 401 "form.report.totals_only" => 'numai totaluri',
 
 402 "form.report.total" => 'ore total',
 
 403 "form.report.th.empllist" => 'utilizator',
 
 404 "form.report.th.date" => 'data',
 
 405 "form.report.th.project" => 'proiect',
 
 406 "form.report.th.activity" => 'activitate',
 
 407 "form.report.th.start" => 'inceput',
 
 408 "form.report.th.finish" => 'sfarsit',
 
 409 "form.report.th.duration" => 'durata',
 
 410 "form.report.th.note" => 'nota',
 
 412 // mail form attributes
 
 413 "form.mail.from" => 'de la',
 
 414 "form.mail.to" => 'catre',
 
 415 "form.mail.comment" => 'comentariu',
 
 416 "form.mail.above" => 'trimite acest raport pe e-mail',
 
 417 // Note to translators: this string needs to be translated.
 
 418 // "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.',
 
 419 "form.mail.sending_str" => '<b>mesaj trimis</b>',
 
 421 // invoice attributes
 
 422 "form.invoice.title" => 'factura',
 
 423 "form.invoice.caption" => 'factura',
 
 424 "form.invoice.above" => 'informatii aditionale pentru factura',
 
 425 "form.invoice.select_cust" => 'alege client',
 
 426 "form.invoice.fillform" => 'comleteaza campurile',
 
 427 "form.invoice.date" => 'data',
 
 428 "form.invoice.number" => 'numar factura',
 
 429 "form.invoice.tax" => 'taxa',
 
 430 "form.invoice.comment" => 'comentariu ',
 
 431 "form.invoice.th.username" => 'persoana',
 
 432 "form.invoice.th.time" => 'ore',
 
 433 "form.invoice.th.rate" => 'rata',
 
 434 "form.invoice.th.summ" => 'valoare',
 
 435 "form.invoice.subtotal" => 'subtotal',
 
 436 "form.invoice.customer" => 'client',
 
 437 "form.invoice.mailinv_above" => 'trimite aceasta factura pe email',
 
 438 "form.invoice.sending_str" => '<b>factura trimisa</b>',
 
 440 "form.migration.zip" => 'compresie',
 
 441 "form.migration.file" => 'alege fisier',
 
 442 "form.migration.import.title" => 'importa date',
 
 443 "form.migration.import.success" => 'importul s-a incheiat cu succes',
 
 444 "form.migration.import.text" => 'importa date echipa dintr-un fisier xml',
 
 445 "form.migration.export.title" => 'exporta date',
 
 446 "form.migration.export.success" => 'exportul s-a inchieat cu succes',
 
 447 "form.migration.export.text" => 'poti exporta toate datele despre echipa intr-un fisier xml. acesta poate fi folositor daca transferi datele pe alt server',
 
 448 // Note to translators: the strings below are missing and must be added and translated 
 
 449 // "form.migration.compression.none" => 'none',
 
 450 // "form.migration.compression.gzip" => 'gzip',
 
 451 // "form.migration.compression.bzip" => 'bzip',
 
 453 "form.client.title" => 'clienti',
 
 454 "form.client.add_title" => 'adauga client',
 
 455 "form.client.edit_title" => 'editeaza client',
 
 456 "form.client.del_title" => 'sterge client',
 
 457 "form.client.th.name" => 'nume',
 
 458 "form.client.th.edit" => 'editeaza',
 
 459 "form.client.th.del" => 'sterge',
 
 460 "form.client.name" => 'nume',
 
 461 "form.client.tax" => 'taxa',
 
 462 "form.client.comment" => 'comentariu ',
 
 464 // miscellaneous strings
 
 465 "forward.forgot_password" => 'parola pierduta?',
 
 466 "forward.edit" => 'editeaza',
 
 467 "forward.delete" => 'sterge',
 
 468 "forward.tocsvfile" => 'exporta date in fisier .csv',
 
 469 // Note to translators: the string below is missing and must be added and translated 
 
 470 // "forward.toxmlfile" => 'export data to .xml file',
 
 471 "forward.geninvoice" => 'genereaza factura',
 
 472 "forward.change" => 'configureaza clienti',
 
 474 // strings inside contols on forms
 
 475 "controls.select.project" => '--- alege proiect    ---',
 
 476 "controls.select.activity" => '--- alege activitate ---',
 
 477 "controls.select.client" => '--- alege client     ---',
 
 478 "controls.project_bind" => '--- toate ---',
 
 479 "controls.all" => '--- toate ---',
 
 480 "controls.notbind" => '--- nu ---',
 
 481 "controls.per_tm" => 'luna curenta',
 
 482 "controls.per_lm" => 'luna trecuta',
 
 483 "controls.per_tw" => 'saptamana curenta',
 
 484 "controls.per_lw" => 'saptamana trecuta',
 
 485 // Note to translators: the strings below must be translated
 
 486 // "controls.per_td" => 'this day',
 
 487 // "controls.per_at" => 'all time',
 
 488 // "controls.per_ty" => 'this year'
 
 489 "controls.sel_period" => '--- alege perioada ---',
 
 490 "controls.sel_groupby" => '--- fara grupare   ---',
 
 493 "label.pbehalf_info" => '%s %s <b>in numele %s</b>',
 
 494 "label.time_noentry" => 'nu exista inregistrari',
 
 495 "label.today" => 'astazi',
 
 496 "label.req_fields" => '* date obligatorii',
 
 497 "label.sel_project" => 'alege proiect',
 
 498 "label.sel_activity" => 'alege activitate',
 
 499 "label.sel_tp" => 'alege perioada',
 
 500 "label.set_tp" => 'sau introdu intervalul de date',
 
 501 "label.fields" => 'arata campuri',
 
 502 "label.group_title" => 'grupat dupa',
 
 503 // Note to translators: the string below is missing and must be added and translated 
 
 504 // "label.include_title" => 'include records',
 
 505 "label.inv_str" => 'factura',
 
 506 "label.set_empl" => 'alege utilizatori',
 
 507 "label.sel_all" => 'selecteaza   tot',
 
 508 "label.sel_none" => 'deselecteaza tot',
 
 510 "label.disable" => 'inactiv',
 
 511 "label.enable" => 'activ',
 
 512 "label.filter" => 'filtru',
 
 513 // Note to translators: the strings below are missing and must be added and translated 
 
 514 // "label.timeweek" => 'weekly total',
 
 515 // "label.hrs" => 'hrs',
 
 516 // "label.errors" => 'errors',
 
 517 // "label.ldap_hint" => 'Type your <b>Windows login</b> and <b>password</b> in the fields below.',
 
 518 // "label.calendar_today" => 'today',
 
 519 // "label.calendar_close" => 'close',
 
 522 // "login.hello.text" => "Anuko Time Tracker is a simple, easy to use, open source time tracking system.",