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' => 'Utilizatori',
 
  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 // TODO: for "select" errors: Selecteaza or Alege? We need consistent usage.
 
  90 'error.project' => 'Selecteaza proiect.',
 
  91 // TODO: translate the following.
 
  92 // 'error.task' => 'Select task.',
 
  93 'error.client' => 'Alege client.',
 
  94 // TODO: translate the following.
 
  95 // 'error.report' => 'Select report.',
 
  96 // 'error.record' => 'Select record.',
 
  97 'error.auth' => 'Nume de utilizator sau parola incorecta.',
 
  98 // TODO: translate the following.
 
  99 // 'error.user_exists' => 'User with this login already exists.',
 
 100 'error.project_exists' => 'Proiectul cu acest nume exista deja.',
 
 101 // TODO: translate the following.
 
 102 // 'error.task_exists' => 'Task with this name already exists.',
 
 103 // 'error.client_exists' => 'Client with this name already exists.',
 
 104 // 'error.invoice_exists' => 'Invoice with this number already exists.',
 
 105 // 'error.no_invoiceable_items' => 'There are no invoiceable items.',
 
 106 // 'error.no_login' => 'No user with this login.',
 
 107 // 'error.no_teams' => 'Your database is empty. Login as admin and create a new team.',
 
 108 'error.upload' => 'Eroare la upload-ul fisierului.',
 
 109 // TODO: translate the following.
 
 110 // 'error.range_locked' => 'Date range is locked.',
 
 111 // 'error.mail_send' => 'Error sending mail.',
 
 112 // 'error.no_email' => 'No email associated with this login.',
 
 113 // 'error.uncompleted_exists' => 'Uncompleted entry already exists. Close or delete it.',
 
 114 // 'error.goto_uncompleted' => 'Go to uncompleted entry.',
 
 115 // 'error.overlap' => 'Time interval overlaps with existing records.',
 
 116 // 'error.future_date' => 'Date is in future.',
 
 118 // Labels for buttons.
 
 119 'button.login' => 'Autentifica',
 
 120 'button.now' => 'Acum',
 
 121 'button.save' => 'Salveaza',
 
 122 // TODO: translate the following.
 
 123 // 'button.copy' => 'Copy',
 
 124 'button.cancel' => 'Renunta',
 
 125 'button.submit' => 'Trimite',
 
 126 'button.add_user' => 'Adauga utilizator',
 
 127 'button.add_project' => 'Adauga proiect',
 
 128 // TODO: translate the following.
 
 129 // 'button.add_task' => 'Add task',
 
 130 'button.add_client' => 'Adauga client',
 
 131 // TODO: translate the following.
 
 132 // 'button.add_invoice' => 'Add invoice',
 
 133 // 'button.add_option' => 'Add option',
 
 134 'button.add' => 'Adauga',
 
 135 'button.generate' => 'Genereaza',
 
 136 // TODO: translate the following.
 
 137 // 'button.reset_password' => 'Reset password',
 
 138 'button.send' => 'Trimite',
 
 139 'button.send_by_email' => 'Trimite pe e-mail',
 
 140 'button.create_team' => 'Adauga echipa',
 
 141 'button.export' => 'Exporta echipa',
 
 142 'button.import' => 'Importa echipa',
 
 143 // TODO: translate the following.
 
 144 // 'button.close' => 'Close',
 
 145 // 'button.stop' => 'Stop',
 
 147 // Labels for controls on forms. Labels in this section are used on multiple forms.
 
 148 // TODO: translate the following.
 
 149 // 'label.team_name' => 'Team name',
 
 150 // 'label.address' => 'Address',
 
 151 'label.currency' => 'Moneda',
 
 152 // TODO: translate the following.
 
 153 // 'label.manager_name' => 'Manager name',
 
 154 // 'label.manager_login' => 'Manager login',
 
 155 'label.person_name' => 'Nume',
 
 156 'label.thing_name' => 'Nume',
 
 157 // TODO: translate the following.
 
 158 // 'label.login' => 'Login',
 
 159 'label.password' => 'Parola',
 
 160 'label.confirm_password' => 'Confirma parola',
 
 161 'label.email' => 'E-mail',
 
 162 'label.cc' => 'Copie',
 
 163 // TODO: translate the following.
 
 164 // 'label.bcc' => 'Bcc',
 
 165 'label.subject' => 'Subiect',
 
 166 'label.date' => 'Data',
 
 167 'label.start_date' => 'Data inceput',
 
 168 'label.end_date' => 'Data sfarsit',
 
 169 'label.user' => 'Utilizator',
 
 170 'label.users' => 'Utilizatori',
 
 171 // TODO: translate the following.
 
 172 // 'label.client' => 'Client',
 
 173 // 'label.clients' => 'Clients',
 
 174 // 'label.option' => 'Option',
 
 175 'label.invoice' => 'Factura',
 
 176 'label.project' => 'Proiect',
 
 177 'label.projects' => 'Proiecte',
 
 178 // TODO: translate the following.
 
 179 // 'label.task' => 'Task',
 
 180 // 'label.tasks' => 'Tasks',
 
 181 // 'label.description' => 'Description',
 
 182 'label.start' => 'Inceput',
 
 183 'label.finish' => 'Sfarsit',
 
 184 'label.duration' => 'Durata',
 
 185 'label.note' => 'Nota',
 
 186 // 'label.notes' => 'Notes',
 
 187 // 'label.item' => 'Item',
 
 188 // 'label.cost' => 'Cost',
 
 189 // 'label.day_total' => 'Day total',
 
 190 // 'label.week_total' => 'Week total',
 
 191 // 'label.month_total' => 'Month total',
 
 192 'label.today' => 'Astazi',
 
 193 // TODO: translate the following.
 
 194 // 'label.total_hours' => 'Total hours',
 
 195 // 'label.total_cost' => 'Total cost',
 
 196 // 'label.view' => 'View',
 
 197 // TODO: confirm that label.edit and label.delete are translated correctly.
 
 198 'label.edit' => 'Editează',
 
 199 'label.delete' => 'Șterge',
 
 200 'label.configure' => 'Configureaza',
 
 201 'label.select_all' => 'Selecteaza tot',
 
 202 'label.select_none' => 'Deselecteaza tot',
 
 203 // TODO: translate the following.
 
 204 // 'label.day_view' => 'Day view',
 
 205 // 'label.week_view' => 'Week view',
 
 206 // 'label.id' => 'ID',
 
 207 // 'label.language' => 'Language',
 
 208 // 'label.decimal_mark' => 'Decimal mark',
 
 209 // 'label.date_format' => 'Date format',
 
 210 // 'label.time_format' => 'Time format',
 
 211 // 'label.week_start' => 'First day of week',
 
 212 'label.comment' => 'Comentariu',
 
 213 'label.status' => 'Stare',
 
 214 'label.tax' => 'Taxa',
 
 215 // TODO: translate the following.
 
 216 // 'label.subtotal' => 'Subtotal',
 
 217 'label.total' => 'Total',
 
 218 // TODO: translate the following.
 
 219 // 'label.client_name' => 'Client name',
 
 220 // 'label.client_address' => 'Client address',
 
 222 // TODO: translate the following.
 
 223 // 'label.error' => 'Error',
 
 224 // 'label.ldap_hint' => 'Type your <b>Windows login</b> and <b>password</b> in the fields below.',
 
 225 'label.required_fields' => '* date obligatorii',
 
 226 'label.on_behalf' => 'in numele',
 
 227 'label.role_manager' => '(manager)',
 
 228 'label.role_comanager' => '(co-manager)',
 
 229 'label.role_admin' => '(administrator)',
 
 230 // TODO: translate the following.
 
 231 // 'label.page' => 'Page',
 
 232 // 'label.condition' => 'Condition',
 
 233 // 'label.yes' => 'yes',
 
 234 // 'label.no' => 'no',
 
 235 // Labels for plugins (extensions to Time Tracker that provide additional features).
 
 236 // TODO: translate the following.
 
 237 // 'label.custom_fields' => 'Custom fields',
 
 238 // 'label.monthly_quotas' => 'Monthly quotas',
 
 239 // 'label.type' => 'Type',
 
 240 // 'label.type_dropdown' => 'dropdown',
 
 241 // 'label.type_text' => 'text',
 
 242 // 'label.required' => 'Required',
 
 243 'label.fav_report' => 'Raport favorite',
 
 244 // TODO: translate the following.
 
 245 // 'label.cron_schedule' => 'Cron schedule',
 
 246 // 'label.what_is_it' => 'What is it?',
 
 247 // 'label.expense' => 'Expense',
 
 248 // 'label.quantity' => 'Quantity',
 
 249 // 'label.paid_status' => 'Paid status',
 
 250 // 'label.paid' => 'Paid',
 
 251 // 'label.mark_paid' => 'Mark paid',
 
 252 // 'label.week_note' => 'Week note',
 
 253 // 'label.week_list' => 'Week list',
 
 256 'title.login' => 'Autentificare',
 
 257 // TODO: translate the following.
 
 258 // 'title.teams' => 'Teams',
 
 259 // 'title.create_team' => 'Creating Team',
 
 260 // 'title.edit_team' => 'Editing Team',
 
 261 // 'title.delete_team' => 'Deleting Team',
 
 262 'title.reset_password' => 'Reseteaza parola',
 
 263 // TODO: translate the following.
 
 264 // 'title.change_password' => 'Changing Password',
 
 265 // 'title.time' => 'Time',
 
 266 // 'title.edit_time_record' => 'Editing Time Record',
 
 267 // 'title.delete_time_record' => 'Deleting Time Record',
 
 268 // 'title.expenses' => 'Expenses',
 
 269 // 'title.edit_expense' => 'Editing Expense Item',
 
 270 // 'title.delete_expense' => 'Deleting Expense Item',
 
 271 // 'title.predefined_expenses' => 'Predefined Expenses',
 
 272 // 'title.add_predefined_expense' => 'Adding Predefined Expense',
 
 273 // 'title.edit_predefined_expense' => 'Editing Predefined Expense',
 
 274 // 'title.delete_predefined_expense' => 'Deleting Predefined Expense',
 
 275 // 'title.reports' => 'Reports',
 
 276 // 'title.report' => 'Report',
 
 277 // 'title.send_report' => 'Sending Report',
 
 278 'title.invoice' => 'Factura',
 
 279 // TODO: translate the following.
 
 280 // 'title.send_invoice' => 'Sending Invoice',
 
 281 // 'title.charts' => 'Charts',
 
 282 'title.projects' => 'Proiecte',
 
 283 'title.add_project' => 'Adaugare proiect',
 
 284 'title.edit_project' => 'Editare proiect',
 
 285 'title.delete_project' => 'Stergere proiect',
 
 286 // TODO: translate the following.
 
 287 // 'title.tasks' => 'Tasks',
 
 288 // 'title.add_task' => 'Adding Task',
 
 289 // 'title.edit_task' => 'Editing Task',
 
 290 // 'title.delete_task' => 'Deleting Task',
 
 291 'title.users' => 'Utilizatori',
 
 292 'title.add_user' => 'Adaugare utilizator', // TODO: is this correct?
 
 293 'title.edit_user' => 'Editare utilizator', // TODO: is this correct?
 
 294 'title.delete_user' => 'Stergere utilizator', // TODO: is this correct?
 
 295 // 'title.clients' => 'Clients',
 
 296 // 'title.add_client' => 'Adding Client',
 
 297 // 'title.edit_client' => 'Editing Client',
 
 298 // 'title.delete_client' => 'Deleting Client',
 
 299 'title.invoices' => 'Facturi',
 
 300 // TODO: translate the following.
 
 301 // 'title.add_invoice' => 'Adding Invoice',
 
 302 // 'title.view_invoice' => 'Viewing Invoice',
 
 303 // 'title.delete_invoice' => 'Deleting Invoice',
 
 304 // 'title.notifications' => 'Notifications',
 
 305 // 'title.add_notification' => 'Adding Notification',
 
 306 // 'title.edit_notification' => 'Editing Notification',
 
 307 // 'title.delete_notification' => 'Deleting Notification',
 
 308 // 'title.monthly_quotas' => 'Monthly Quotas',
 
 309 // 'title.export' => 'Exporting Team Data',
 
 310 // 'title.import' => 'Importing Team Data',
 
 311 // 'title.options' => 'Options',
 
 312 'title.profile' => 'Profil',
 
 313 // TODO: translate the following.
 
 314 // 'title.cf_custom_fields' => 'Custom Fields',
 
 315 // 'title.cf_add_custom_field' => 'Adding Custom Field',
 
 316 // 'title.cf_edit_custom_field' => 'Editing Custom Field',
 
 317 // 'title.cf_delete_custom_field' => 'Deleting Custom Field',
 
 318 // 'title.cf_dropdown_options' => 'Dropdown Options',
 
 319 // 'title.cf_add_dropdown_option' => 'Adding Option',
 
 320 // 'title.cf_edit_dropdown_option' => 'Editing Option',
 
 321 // 'title.cf_delete_dropdown_option' => 'Deleting Option',
 
 322 // NOTE TO TRANSLATORS: Locking is a feature to lock records from modifications (ex: weekly on Mondays we lock all previous weeks).
 
 323 // It is also a name for the Locking plugin on the Team profile page.
 
 324 // 'title.locking' => 'Locking',
 
 325 // 'title.week_view' => 'Week View',
 
 327 // Section for common strings inside combo boxes on forms. Strings shared between forms shall be placed here.
 
 328 // Strings that are used in a single form must go to the specific form section.
 
 329 // TODO: translate the following.
 
 330 // 'dropdown.all' => '--- all ---',
 
 331 // 'dropdown.no' => '--- no ---',
 
 332 // 'dropdown.current_day' => 'today',
 
 333 // 'dropdown.previous_day' => 'yesterday',
 
 334 // 'dropdown.selected_day' => 'day',
 
 335 // 'dropdown.current_week' => 'this week',
 
 336 // 'dropdown.previous_week' => 'previous week',
 
 337 // 'dropdown.selected_week' => 'week',
 
 338 // 'dropdown.current_month' => 'this month',
 
 339 // 'dropdown.previous_month' => 'previous month',
 
 340 // 'dropdown.selected_month' => 'month',
 
 341 // 'dropdown.current_year' => 'this year',
 
 342 // 'dropdown.previous_year' => 'previous year',
 
 343 // 'dropdown.selected_year' => 'year',
 
 344 // 'dropdown.all_time' => 'all time',
 
 345 'dropdown.projects' => 'proiecte',
 
 346 // TODO: translate the following.    
 
 347 // 'dropdown.tasks' => 'tasks',
 
 348 // 'dropdown.clients' => 'clients',
 
 349 // 'dropdown.select' => '--- select ---',
 
 350 // 'dropdown.select_invoice' => '--- select invoice ---',
 
 351 'dropdown.status_active' => 'activ',
 
 352 'dropdown.status_inactive' => 'inactiv',
 
 353 // TODO: translate the following.
 
 354 // 'dropdown.delete'=>'delete',
 
 355 // 'dropdown.do_not_delete'=>'do not delete',
 
 356 // 'dropdown.paid' => 'paid',
 
 357 // 'dropdown.not_paid' => 'not paid',
 
 359 // Login form. See example at https://timetracker.anuko.com/login.php.
 
 360 'form.login.forgot_password' => 'Parola pierduta?',
 
 361 // TODO: translate the following.
 
 362 // 'form.login.about' =>'Anuko <a href="https://www.anuko.com/lp/tt_2.htm" target="_blank">Time Tracker</a> is a simple, easy to use, open source time tracking system.',
 
 364 // Resetting Password form. See example at https://timetracker.anuko.com/password_reset.php.
 
 365 'form.reset_password.message' => 'Cererea de resetare a parolei a fost trimisa.', // TODO: add "by email" to match the English string.
 
 366 'form.reset_password.email_subject' => 'Anuko Time Tracker - cerere de resetare a parolei',
 
 367 // TODO: translate the ending of following.
 
 368 'form.reset_password.email_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",
 
 370 // Changing Password form. See example at https://timetracker.anuko.com/password_change.php?ref=1.
 
 371 // TODO: translate the following.
 
 372 // 'form.change_password.tip' => 'Type new password and click on Save.',
 
 374 // Time form. See example at https://timetracker.anuko.com/time.php.
 
 375 // TODO: translate the following.
 
 376 // 'form.time.duration_format' => '(hh:mm or 0.0h)',
 
 377 // 'form.time.billable' => 'Billable',
 
 378 // 'form.time.uncompleted' => 'Uncompleted',
 
 379 // 'form.time.remaining_quota' => 'Remaining quota',
 
 380 // 'form.time.over_quota' => 'Over quota',
 
 382 // Editing Time Record form. See example at https://timetracker.anuko.com/time_edit.php (get there by editing an uncompleted time record).
 
 383 // TODO: translate the following.
 
 384 // 'form.time_edit.uncompleted' => 'This record was saved with only start time. It is not an error.',
 
 386 // Week view form. See example at https://timetracker.anuko.com/week.php.
 
 387 // TODO: translate the following.
 
 388 // 'form.week.new_entry' => 'New entry',
 
 390 // Reports form. See example at https://timetracker.anuko.com/reports.php
 
 391 'form.reports.save_as_favorite' => 'Salveaza ca favorit',
 
 392 // TODO: translate the following.
 
 393 // 'form.reports.confirm_delete' => 'Are you sure you want to delete this favorite report?',
 
 394 // 'form.reports.include_billable' => 'billable',
 
 395 // 'form.reports.include_not_billable' => 'not billable',
 
 396 // 'form.reports.include_invoiced' => 'invoiced',
 
 397 // 'form.reports.include_not_invoiced' => 'not invoiced',
 
 398 'form.reports.select_period' => 'Alege perioada',
 
 399 'form.reports.set_period' => 'sau introdu intervalul de date',
 
 400 'form.reports.show_fields' => 'Arata campuri',
 
 401 'form.reports.group_by' => 'Grupat dupa',
 
 402 'form.reports.group_by_no' => '--- fara grupare ---',
 
 403 'form.reports.group_by_date' => 'data',
 
 404 'form.reports.group_by_user' => 'utilizator',
 
 405 // TODO: translate the following.
 
 406 // 'form.reports.group_by_client' => 'client',
 
 407 'form.reports.group_by_project' => 'proiect',
 
 408 // TODO: translate the following.
 
 409 // 'form.reports.group_by_task' => 'task',
 
 410 'form.reports.totals_only' => 'Numai totaluri',
 
 412 // Report form. See example at https://timetracker.anuko.com/report.php
 
 413 // (after generating a report at https://timetracker.anuko.com/reports.php).
 
 414 // TODO: translate the following.
 
 415 // 'form.report.export' => 'Export',
 
 416 // 'form.report.assign_to_invoice' => 'Assign to invoice',
 
 418 // Invoice form. See example at https://timetracker.anuko.com/invoice.php
 
 419 // (you can get to this form after generating a report).
 
 420 // TODO: translate the following.
 
 421 // 'form.invoice.number' => 'Invoice number',
 
 422 // 'form.invoice.person' => 'Person',
 
 423 // 'form.invoice.invoice_to_delete' => 'Invoice to delete',
 
 424 // 'form.invoice.invoice_entries' => 'Invoice entries',
 
 425 // 'form.invoice.confirm_deleting_entries' => 'Please confirm deleting invoice entries from Time Tracker.',
 
 427 // Charts form. See example at https://timetracker.anuko.com/charts.php
 
 428 // TODO: translate the following.
 
 429 // 'form.charts.interval' => 'Interval',
 
 430 // 'form.charts.chart' => 'Chart',
 
 432 // Projects form. See example at https://timetracker.anuko.com/projects.php
 
 433 // TODO: translate the following.
 
 434 // 'form.projects.active_projects' => 'Active Projects',
 
 435 // 'form.projects.inactive_projects' => 'Inactive Projects',
 
 437 // Tasks form. See example at https://timetracker.anuko.com/tasks.php
 
 438 // TODO: translate the following.
 
 439 // 'form.tasks.active_tasks' => 'Active Tasks',
 
 440 // 'form.tasks.inactive_tasks' => 'Inactive Tasks',
 
 444 // TODO: refactoring ongoing down from here.
 
 446 // administrator form
 
 447 "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).',
 
 449 "form.admin.profile.title" => 'echipe',
 
 450 "form.admin.profile.noprofiles" => 'baza de date este goala. intra ca admin si adauga o noua echipa.',
 
 451 "form.admin.profile.comment" => 'sterge echipa',
 
 452 "form.admin.profile.th.id" => 'id',
 
 453 "form.admin.profile.th.active" => 'activ',
 
 455 // my time form attributes
 
 456 "form.mytime.title" => 'timpul meu',
 
 457 "form.mytime.edit_title" => 'editarea inregistrarii timpului',
 
 458 "form.mytime.del_str" => 'stergerea inregistrarii timpului',
 
 459 "form.mytime.time_form" => ' (hh:mm)',
 
 460 "form.mytime.total" => 'ore total: ',
 
 461 "form.mytime.del_yes" => 'inregistrarea timului a fost stearsa cu succes',
 
 462 "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.',
 
 464 // profile form attributes
 
 465 // Note to translators: we need a more accurate translation of form.profile.create_title
 
 466 "form.profile.create_title" => 'creazaun nou cont de tip manager',
 
 467 "form.profile.edit_title" => 'editeaza profilul',
 
 469 // people form attributes
 
 470 "form.people.ppl_str" => 'persoane',
 
 471 "form.people.createu_str" => 'adaugare untilizator nou',
 
 472 "form.people.edit_str" => 'editare utilizator',
 
 473 "form.people.del_str" => 'stergee utilizator',
 
 474 "form.people.th.role" => 'functie',
 
 475 "form.people.th.rate" => 'rata',
 
 476 "form.people.manager" => 'manager',
 
 477 "form.people.comanager" => 'comanager',
 
 479 "form.people.rate" => 'pret pe ora implicit',
 
 480 "form.people.comanager" => 'co-manager',
 
 483 "form.report.title" => 'rapoarte',
 
 484 "form.report.total" => 'ore total',
 
 486 // mail form attributes
 
 487 "form.mail.from" => 'de la',
 
 488 "form.mail.to" => 'catre',
 
 489 "form.mail.above" => 'trimite acest raport pe e-mail',
 
 490 // Note to translators: this string needs to be translated.
 
 491 // "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.',
 
 492 "form.mail.sending_str" => '<b>mesaj trimis</b>',
 
 494 // invoice attributes
 
 495 "form.invoice.title" => 'factura',
 
 496 "form.invoice.caption" => 'factura',
 
 497 "form.invoice.above" => 'informatii aditionale pentru factura',
 
 498 "form.invoice.select_cust" => 'alege client',
 
 499 "form.invoice.fillform" => 'comleteaza campurile',
 
 500 "form.invoice.number" => 'numar factura',
 
 501 "form.invoice.th.username" => 'persoana',
 
 502 "form.invoice.th.time" => 'ore',
 
 503 "form.invoice.th.rate" => 'rata',
 
 504 "form.invoice.th.summ" => 'valoare',
 
 505 "form.invoice.subtotal" => 'subtotal',
 
 506 "form.invoice.customer" => 'client',
 
 507 "form.invoice.mailinv_above" => 'trimite aceasta factura pe email',
 
 508 "form.invoice.sending_str" => '<b>factura trimisa</b>',
 
 510 "form.migration.zip" => 'compresie',
 
 511 "form.migration.file" => 'alege fisier',
 
 512 "form.migration.import.title" => 'importa date',
 
 513 "form.migration.import.success" => 'importul s-a incheiat cu succes',
 
 514 "form.migration.import.text" => 'importa date echipa dintr-un fisier xml',
 
 515 "form.migration.export.title" => 'exporta date',
 
 516 "form.migration.export.success" => 'exportul s-a inchieat cu succes',
 
 517 "form.migration.export.text" => 'poti exporta toate datele despre echipa intr-un fisier xml. acesta poate fi folositor daca transferi datele pe alt server',
 
 518 // Note to translators: the strings below are missing and must be added and translated 
 
 519 // "form.migration.compression.none" => 'none',
 
 520 // "form.migration.compression.gzip" => 'gzip',
 
 521 // "form.migration.compression.bzip" => 'bzip',
 
 523 "form.client.title" => 'clienti',
 
 524 "form.client.add_title" => 'adauga client',
 
 525 "form.client.edit_title" => 'editeaza client',
 
 526 "form.client.del_title" => 'sterge client',
 
 528 // miscellaneous strings
 
 529 "forward.tocsvfile" => 'exporta date in fisier .csv',
 
 530 "forward.geninvoice" => 'genereaza factura',
 
 532 "controls.project_bind" => '--- toate ---',
 
 533 "controls.all" => '--- toate ---',
 
 534 "controls.notbind" => '--- nu ---',
 
 535 "controls.per_tm" => 'luna curenta',
 
 536 "controls.per_lm" => 'luna trecuta',
 
 537 "controls.per_tw" => 'saptamana curenta',
 
 538 "controls.per_lw" => 'saptamana trecuta',