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 = 'Eesti';
 
  35 $i18n_months = array('Jaanuar', 'Veebruar', 'Märts', 'Aprill', 'Mai', 'Juuni', 'Juuli', 'August', 'September', 'Oktoober', 'November', 'Detsember');
 
  36 $i18n_weekdays = array('Pühapäev', 'Esmaspäev', 'Teisipäev', 'Kolmapäev', 'Neljapäev', 'Reede', 'Laupäev');
 
  37 $i18n_weekdays_short = array('P', 'E', 'T', 'K', 'N', 'R', 'L');
 
  39 $i18n_holidays = array('01/01', '02/24', '04/10', '04/12', '05/01', '05/31', '06/23', '06/24', '08/20', '12/24', '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' => 'Login',
 
  46 'menu.logout' => 'Logout',
 
  47 // TODO: translate the following.
 
  48 // 'menu.forum' => 'Forum',
 
  49 'menu.help' => 'Abiinfo',
 
  50 // TODO: translate the following.
 
  51 'menu.create_team' => 'Create Team',
 
  52 'menu.profile' => 'Profiili',
 
  54 // TODO: translate the following.
 
  55 // 'menu.expenses' => 'Expenses',
 
  56 'menu.reports' => 'Raportid',
 
  57 // TODO: translate the following.
 
  58 // 'menu.charts' => 'Charts',
 
  59 'menu.projects' => 'Projektid',
 
  60 // TODO: translate the following.
 
  61 // 'menu.tasks' => 'Tasks',
 
  62 // 'menu.users' => 'Users',
 
  63 'menu.teams' => 'Meeskonnad',
 
  64 // TODO: translate the following.
 
  65 // 'menu.export' => 'Export',
 
  66 'menu.clients' => 'Kliendid',
 
  67 'menu.options' => 'Suvandid',
 
  69 // Footer - strings on the bottom of most pages.
 
  70 // TODO: translate the following.
 
  71 // 'footer.contribute_msg' => 'You can contribute to Time Tracker in different ways.',
 
  72 // 'footer.credits' => 'Credits',
 
  73 // 'footer.license' => 'License',
 
  74 // 'footer.improve' => 'Contribute', // Translators: this could mean "Improve", if it makes better sense in your language.
 
  75                                      // This is a link to a webpage that describes how to contribute to the project.
 
  78 // TODO: translate the following.
 
  79 // 'error.access_denied' => 'Access denied.',
 
  80 // 'error.sys' => 'System error.',
 
  81 'error.db' => 'Andmebaasi viga.',
 
  82 'error.field' => 'Valed "{0}" andmed.',
 
  83 'error.empty' => 'Väli "{0}" on tühi.',
 
  84 'error.not_equal' => 'Väli "{0}" ei ole väljaga "{1}" võrdne.',
 
  85 // TODO: translate the following.
 
  86 // 'error.interval' => 'Field "{0}" must be greater than "{1}".',
 
  87 'error.project' => 'Vali projekt.',
 
  88 // TODO: translate the following.
 
  89 // 'error.task' => 'Select task.',
 
  90 'error.client' => 'Vali klient.',
 
  91 // TODO: translate the following.
 
  92 // 'error.report' => 'Select report.',
 
  93 // 'error.record' => 'Select record.',
 
  94 'error.auth' => 'Vale login või salasõna.',
 
  95 // TODO: translate the following.
 
  96 // 'error.user_exists' => 'User with this login already exists.',
 
  97 'error.project_exists' => 'Selle nimega projekt on juba olemas.',
 
  98 // TODO: translate the following.
 
  99 // 'error.task_exists' => 'Task with this name already exists.',
 
 100 // 'error.client_exists' => 'Client with this name already exists.',
 
 101 // 'error.invoice_exists' => 'Invoice with this number already exists.',
 
 102 // 'error.no_invoiceable_items' => 'There are no invoiceable items.',
 
 103 // 'error.no_login' => 'No user with this login.',
 
 104 // 'error.no_teams' => 'Your database is empty. Login as admin and create a new team.',
 
 105 'error.upload' => 'Viga faili vastuvõtmisel.',
 
 106 // TODO: translate the following.
 
 107 // 'error.range_locked' => 'Date range is locked.',
 
 108 // 'error.mail_send' => 'Error sending mail.',
 
 109 // 'error.no_email' => 'No email associated with this login.',
 
 110 // 'error.uncompleted_exists' => 'Uncompleted entry already exists. Close or delete it.',
 
 111 // 'error.goto_uncompleted' => 'Go to uncompleted entry.',
 
 112 // 'error.overlap' => 'Time interval overlaps with existing records.',
 
 113 // 'error.future_date' => 'Date is in future.',
 
 115 // Labels for buttons.
 
 116 'button.login' => 'Login',
 
 117 'button.now' => 'Kohe',
 
 118 'button.save' => 'Salvesta',
 
 119 // TODO: translate the following.
 
 120 // 'button.copy' => 'Copy',
 
 121 'button.cancel' => 'Tühista',
 
 122 'button.submit' => 'Postita',
 
 123 'button.add_user' => 'Lisa kasutaja',
 
 124 'button.add_project' => 'Lisa projekt',
 
 125 // TODO: translate the following.
 
 126 // 'button.add_task' => 'Add task',
 
 127 'button.add_client' => 'Lisa klient',
 
 128 // TODO: translate the following.
 
 129 // 'button.add_invoice' => 'Add invoice',
 
 130 // 'button.add_option' => 'Add option',
 
 131 'button.add' => 'Lisa',
 
 132 'button.generate' => 'Loo',
 
 133 // TODO: translate the following.
 
 134 // 'button.reset_password' => 'Reset password',
 
 135 'button.send' => 'Saada',
 
 136 'button.send_by_email' => 'Saada e-mailiga',
 
 137 'button.create_team' => 'Loo meeskond',
 
 138 'button.export' => 'Ekspordi meeskond',
 
 139 'button.import' => 'Impordi meeskond',
 
 140 // TODO: translate the following.
 
 141 // 'button.close' => 'Close',
 
 142 // 'button.stop' => 'Stop',
 
 144 // Labels for controls on forms. Labels in this section are used on multiple forms.
 
 145 // TODO: translate the following.
 
 146 // 'label.team_name' => 'Team name',
 
 147 // 'label.address' => 'Address',
 
 148 'label.currency' => 'Valuuta',
 
 149 // TODO: translate the following.
 
 150 // 'label.manager_name' => 'Manager name',
 
 151 // 'label.manager_login' => 'Manager login',
 
 152 'label.person_name' => 'Nimi',
 
 153 'label.thing_name' => 'Nimi',
 
 154 'label.login' => 'Login',
 
 155 'label.password' => 'Salasõna',
 
 156 'label.confirm_password' => 'Kinnita salasõna',
 
 157 // TODO: translate the following.
 
 158 // 'label.email' => 'Email',
 
 160 // TODO: translate the following.
 
 161 // 'label.bcc' => 'Bcc',
 
 162 'label.subject' => 'Teema',
 
 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' => 'Projekt',
 
 174 'label.projects' => 'Projektid',
 
 175 // TODO: translate the following.
 
 176 // 'label.task' => 'Task',
 
 177 // 'label.tasks' => 'Tasks',
 
 178 // 'label.description' => 'Description',
 
 179 // 'label.start' => 'Start',
 
 180 // 'label.finish' => 'Finish',
 
 181 // 'label.duration' => 'Duration',
 
 182 'label.note' => 'Märkus',
 
 183 'label.notes' => 'Märkused',
 
 184 // TODO: translate the following.
 
 185 // 'label.item' => 'Item',
 
 186 // 'label.cost' => 'Cost',
 
 187 // 'label.day_total' => 'Day total',
 
 188 'label.week_total' => 'Nädalane summa',
 
 189 // TODO: translate the following.
 
 190 // 'label.month_total' => 'Month total',
 
 191 'label.today' => 'Täna',
 
 192 // TODO: translate the following.
 
 193 // 'label.total_hours' => 'Total hours',
 
 194 // 'label.total_cost' => 'Total cost',
 
 195 // 'label.view' => 'View',
 
 196 'label.edit' => 'Muuda',
 
 197 'label.delete' => 'Kustuta',
 
 198 'label.configure' => 'Konfigureeri',
 
 199 // TODO: translate the following.
 
 200 // 'label.select_all' => 'Select all',
 
 201 // 'label.select_none' => 'Deselect all',
 
 202 // 'label.day_view' => 'Day view',
 
 203 // 'label.week_view' => 'Week view',
 
 204 // 'label.id' => 'ID',
 
 205 // 'label.language' => 'Language',
 
 206 // 'label.decimal_mark' => 'Decimal mark',
 
 207 // 'label.date_format' => 'Date format',
 
 208 // 'label.time_format' => 'Time format',
 
 209 // 'label.week_start' => 'First day of week',
 
 210 'label.comment' => 'Kommentaar',
 
 211 'label.status' => 'Seisund',
 
 212 'label.tax' => 'Maks',
 
 213 // TODO: translate the following.
 
 214 // 'label.subtotal' => 'Subtotal',
 
 215 'label.total' => 'Kokku',
 
 216 // TODO: translate the following.
 
 217 // 'label.client_name' => 'Client name',
 
 218 // 'label.client_address' => 'Client address',
 
 220 // TODO: translate the following.
 
 221 // 'label.error' => 'Error',
 
 222 // 'label.ldap_hint' => 'Type your <b>Windows login</b> and <b>password</b> in the fields below.',
 
 223 'label.required_fields' => '* nõutud väljad',
 
 224 // TODO: translate the following.
 
 225 // 'label.on_behalf' => 'on behalf of',
 
 226 'label.role_manager' => '(haldur)',
 
 227 'label.role_comanager' => '(kaashaldur)',
 
 228 'label.role_admin' => '(administraator)',
 
 229 // TODO: translate the following.
 
 230 // 'label.page' => 'Page',
 
 231 // 'label.condition' => 'Condition',
 
 232 // 'label.yes' => 'yes',
 
 233 // 'label.no' => 'no',
 
 234 // Labels for plugins (extensions to Time Tracker that provide additional features).
 
 235 // TODO: translate the following.
 
 236 // 'label.custom_fields' => 'Custom fields',
 
 237 // 'label.monthly_quotas' => 'Monthly quotas',
 
 238 // 'label.type' => 'Type',
 
 239 // 'label.type_dropdown' => 'dropdown',
 
 240 // 'label.type_text' => 'text',
 
 241 // 'label.required' => 'Required',
 
 242 'label.fav_report' => 'Lemmikraport',
 
 243 // TODO: translate the following.
 
 244 // 'label.cron_schedule' => 'Cron schedule',
 
 245 // 'label.what_is_it' => 'What is it?',
 
 246 // 'label.expense' => 'Expense',
 
 247 // 'label.quantity' => 'Quantity',
 
 248 // 'label.paid_status' => 'Paid status',
 
 249 // 'label.paid' => 'Paid',
 
 250 // 'label.mark_paid' => 'Mark paid',
 
 251 // 'label.week_note' => 'Week note',
 
 252 // 'label.week_list' => 'Week list',
 
 255 'title.login' => 'Login',
 
 256 // TODO: translate the following.
 
 257 // 'title.teams' => 'Teams',
 
 258 // 'title.create_team' => 'Creating Team',
 
 259 // 'title.edit_team' => 'Editing Team',
 
 260 // 'title.delete_team' => 'Deleting Team',
 
 261 'title.reset_password' => 'Tühjenda salasõna',
 
 262 // TODO: translate the following.
 
 263 // 'title.change_password' => 'Changing Password',
 
 264 // 'title.time' => 'Time',
 
 265 // 'title.edit_time_record' => 'Editing Time Record',
 
 266 // 'title.delete_time_record' => 'Deleting Time Record',
 
 267 // 'title.expenses' => 'Expenses',
 
 268 // 'title.edit_expense' => 'Editing Expense Item',
 
 269 // 'title.delete_expense' => 'Deleting Expense Item',
 
 270 // 'title.predefined_expenses' => 'Predefined Expenses',
 
 271 // 'title.add_predefined_expense' => 'Adding Predefined Expense',
 
 272 // 'title.edit_predefined_expense' => 'Editing Predefined Expense',
 
 273 // 'title.delete_predefined_expense' => 'Deleting Predefined Expense',
 
 274 'title.reports' => 'Raportid',
 
 275 // TODO: translate the following.
 
 276 // 'title.report' => 'Report',
 
 277 // 'title.send_report' => 'Sending Report',
 
 278 // 'title.invoice' => 'Invoice',
 
 279 // 'title.send_invoice' => 'Sending Invoice',
 
 280 // 'title.charts' => 'Charts',
 
 281 'title.projects' => 'Projektid',
 
 282 'title.add_project' => 'Projekti lisamine',
 
 283 'title.edit_project' => 'Projekti muutmine',
 
 284 'title.delete_project' => 'Projekti kustutamine',
 
 285 // TODO: translate the following.
 
 286 // 'title.tasks' => 'Tasks',
 
 287 // 'title.add_task' => 'Adding Task',
 
 288 // 'title.edit_task' => 'Editing Task',
 
 289 // 'title.delete_task' => 'Deleting Task',
 
 290 // 'title.users' => 'Users',
 
 291 // 'title.add_user' => 'Adding User',
 
 292 // 'title.edit_user' => 'Editing User',
 
 293 // 'title.delete_user' => 'Deleting User',
 
 294 // 'title.clients' => 'Clients',
 
 295 // 'title.add_client' => 'Adding Client',
 
 296 // 'title.edit_client' => 'Editing Client',
 
 297 // 'title.delete_client' => 'Deleting Client',
 
 298 // 'title.invoices' => 'Invoices',
 
 299 // 'title.add_invoice' => 'Adding Invoice',
 
 300 // 'title.view_invoice' => 'Viewing Invoice',
 
 301 // 'title.delete_invoice' => 'Deleting Invoice',
 
 302 // 'title.notifications' => 'Notifications',
 
 303 // 'title.add_notification' => 'Adding Notification',
 
 304 // 'title.edit_notification' => 'Editing Notification',
 
 305 // 'title.delete_notification' => 'Deleting Notification',
 
 306 // 'title.monthly_quotas' => 'Monthly Quotas',
 
 307 // 'title.export' => 'Exporting Team Data',
 
 308 // 'title.import' => 'Importing Team Data',
 
 309 'title.options' => 'Suvandid',
 
 310 // TODO: translate the following.
 
 311 // 'title.profile' => 'Profile',
 
 312 // 'title.cf_custom_fields' => 'Custom Fields',
 
 313 // 'title.cf_add_custom_field' => 'Adding Custom Field',
 
 314 // 'title.cf_edit_custom_field' => 'Editing Custom Field',
 
 315 // 'title.cf_delete_custom_field' => 'Deleting Custom Field',
 
 316 // 'title.cf_dropdown_options' => 'Dropdown Options',
 
 317 // 'title.cf_add_dropdown_option' => 'Adding Option',
 
 318 // 'title.cf_edit_dropdown_option' => 'Editing Option',
 
 319 // 'title.cf_delete_dropdown_option' => 'Deleting Option',
 
 320 // NOTE TO TRANSLATORS: Locking is a feature to lock records from modifications (ex: weekly on Mondays we lock all previous weeks).
 
 321 // It is also a name for the Locking plugin on the Team profile page.
 
 322 // 'title.locking' => 'Locking',
 
 323 // 'title.week_view' => 'Week View',
 
 325 // Section for common strings inside combo boxes on forms. Strings shared between forms shall be placed here.
 
 326 // Strings that are used in a single form must go to the specific form section.
 
 327 // TODO: translate the following.
 
 328 // 'dropdown.all' => '--- all ---',
 
 329 // 'dropdown.no' => '--- no ---',
 
 330 // 'dropdown.current_day' => 'today',
 
 331 // 'dropdown.previous_day' => 'yesterday',
 
 332 // 'dropdown.selected_day' => 'day',
 
 333 // 'dropdown.current_week' => 'this week',
 
 334 // 'dropdown.previous_week' => 'previous week',
 
 335 // 'dropdown.selected_week' => 'week',
 
 336 // 'dropdown.current_month' => 'this month',
 
 337 // 'dropdown.previous_month' => 'previous month',
 
 338 // 'dropdown.selected_month' => 'month',
 
 339 // 'dropdown.current_year' => 'this year',
 
 340 // 'dropdown.previous_year' => 'previous year',
 
 341 // 'dropdown.selected_year' => 'year',
 
 342 // 'dropdown.all_time' => 'all time',
 
 343 'dropdown.projects' => 'projektid',
 
 344 // TODO: translate the following.
 
 345 // 'dropdown.tasks' => 'tasks',
 
 346 // 'dropdown.clients' => 'clients',
 
 347 // 'dropdown.select' => '--- select ---',
 
 348 // 'dropdown.select_invoice' => '--- select invoice ---',
 
 349 // 'dropdown.status_active' => 'active',
 
 350 // 'dropdown.status_inactive' => 'inactive',
 
 351 // 'dropdown.delete'=>'delete',
 
 352 // 'dropdown.do_not_delete'=>'do not delete',
 
 353 // 'dropdown.paid' => 'paid',
 
 354 // 'dropdown.not_paid' => 'not paid',
 
 356 // Login form. See example at https://timetracker.anuko.com/login.php.
 
 357 'form.login.forgot_password' => 'Unustasid salasõna?',
 
 358 // TODO: translate the following.
 
 359 // '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.',
 
 361 // Resetting Password form. See example at https://timetracker.anuko.com/password_reset.php.
 
 362 // TODO: translate the following.
 
 363 // 'form.reset_password.message' => 'Password reset request sent by email.',
 
 364 // 'form.reset_password.email_subject' => 'Anuko Time Tracker password reset request',
 
 365 // 'form.reset_password.email_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",
 
 367 // Changing Password form. See example at https://timetracker.anuko.com/password_change.php?ref=1.
 
 368 // TODO: translate the following.
 
 369 // 'form.change_password.tip' => 'Type new password and click on Save.',
 
 371 // Time form. See example at https://timetracker.anuko.com/time.php.
 
 372 // TODO: translate the following.
 
 373 // 'form.time.duration_format' => '(hh:mm or 0.0h)',
 
 374 'form.time.billable' => 'Arvestatav',
 
 375 // TODO: translate the following.
 
 376 // 'form.time.uncompleted' => 'Uncompleted',
 
 377 // 'form.time.remaining_quota' => 'Remaining quota',
 
 378 // 'form.time.over_quota' => 'Over quota',
 
 380 // Editing Time Record form. See example at https://timetracker.anuko.com/time_edit.php (get there by editing an uncompleted time record).
 
 381 // TODO: translate the following.
 
 382 // 'form.time_edit.uncompleted' => 'This record was saved with only start time. It is not an error.',
 
 384 // Week view form. See example at https://timetracker.anuko.com/week.php.
 
 385 // TODO: translate the following.
 
 386 // 'form.week.new_entry' => 'New entry',
 
 388 // Reports form. See example at https://timetracker.anuko.com/reports.php
 
 389 'form.reports.save_as_favorite' => 'Salvesta lemmikuna',
 
 390 // TODO: translate the following.
 
 391 // 'form.reports.confirm_delete' => 'Are you sure you want to delete this favorite report?',
 
 392 'form.reports.include_billable' => 'arvestatav',
 
 393 'form.reports.include_not_billable' => 'mittearvestatav',
 
 394 // TODO: translate the following.
 
 395 // 'form.reports.include_invoiced' => 'invoiced',
 
 396 // 'form.reports.include_not_invoiced' => 'not invoiced',
 
 397 'form.reports.select_period' => 'Vali ajaperiood',
 
 398 'form.reports.set_period' => 'või märgi kuupäevad',
 
 399 'form.reports.show_fields' => 'Näita välju',
 
 400 'form.reports.group_by' => 'Grupeeri',
 
 401 'form.reports.group_by_no' => '--- ilma grupeerimata ---',
 
 402 // TODO: translate the following.
 
 403 // 'form.reports.group_by_date' => 'date',
 
 404 // 'form.reports.group_by_user' => 'user',
 
 405 // 'form.reports.group_by_client' => 'client',
 
 406 'form.reports.group_by_project' => 'projekt',
 
 407 // TODO: translate the following.
 
 408 // 'form.reports.group_by_task' => 'task',
 
 409 // 'form.reports.totals_only' => 'Totals only',
 
 411 // Report form. See example at https://timetracker.anuko.com/report.php
 
 412 // (after generating a report at https://timetracker.anuko.com/reports.php).
 
 413 // TODO: translate the following.
 
 414 // 'form.report.export' => 'Export',
 
 415 // 'form.report.assign_to_invoice' => 'Assign to invoice',
 
 417 // Invoice form. See example at https://timetracker.anuko.com/invoice.php
 
 418 // (you can get to this form after generating a report).
 
 419 // TODO: translate the following.
 
 420 // 'form.invoice.number' => 'Invoice number',
 
 421 // 'form.invoice.person' => 'Person',
 
 422 // 'form.invoice.invoice_to_delete' => 'Invoice to delete',
 
 423 // 'form.invoice.invoice_entries' => 'Invoice entries',
 
 424 // 'form.invoice.confirm_deleting_entries' => 'Please confirm deleting invoice entries from Time Tracker.',
 
 426 // Charts form. See example at https://timetracker.anuko.com/charts.php
 
 427 // TODO: translate the following.
 
 428 // 'form.charts.interval' => 'Interval',
 
 429 // 'form.charts.chart' => 'Chart',
 
 431 // Projects form. See example at https://timetracker.anuko.com/projects.php
 
 432 // TODO: translate the following.
 
 433 // 'form.projects.active_projects' => 'Active Projects',
 
 434 // 'form.projects.inactive_projects' => 'Inactive Projects',
 
 436 // Tasks form. See example at https://timetracker.anuko.com/tasks.php
 
 437 // TODO: translate the following.
 
 438 // 'form.tasks.active_tasks' => 'Active Tasks',
 
 439 // 'form.tasks.inactive_tasks' => 'Inactive Tasks',
 
 443 // TODO: refactoring ongoing down from here.
 
 445 // password reminder form attributes
 
 446 "form.fpass.title" => 'tühjenda salasõna',
 
 447 "form.fpass.login" => 'login',
 
 448 "form.fpass.send_pass_str" => 'salasõna tühjendamise käsk edastatud',
 
 449 // Note to translators: the 3 strings below must be translated
 
 450 // "form.fpass.send_pass_subj" => 'AnukoTime Tracker password reset request',
 
 451 // "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",
 
 452 // "form.fpass.reset_comment" => "to reset your password please type it in and click on save",
 
 454 // administrator form
 
 455 "form.admin.title" => 'administraator',
 
 456 // Note to translators: the string below must be translated
 
 457 // "form.admin.duty_text" => 'create a new meeskond by creating a new meeskond manager account.<br>you can also import meeskond data from an xml file from another Anuko time tracker server (no e-mail collisions are allowed).',
 
 459 "form.admin.profile.title" => 'meeskonnad',
 
 460 "form.admin.profile.noprofiles" => 'sinu andmebaas on tühi. logi adminina sisse ja loo uus meeskond.',
 
 461 "form.admin.profile.comment" => 'kustuta meeskond',
 
 462 "form.admin.profile.th.id" => 'id',
 
 463 "form.admin.profile.th.active" => 'aktiivne',
 
 465 // my time form attributes
 
 466 "form.mytime.title" => 'minu aeg',
 
 467 "form.mytime.edit_title" => 'ajakande muutmine',
 
 468 "form.mytime.del_str" => 'ajakande kustutamine',
 
 469 // Note to translators: the string below must be translated
 
 470 // "form.mytime.time_form" => ' (hh:mm)',
 
 471 "form.mytime.date" => 'kuupäev',
 
 472 "form.mytime.start" => 'algus',
 
 473 "form.mytime.finish" => 'lõpp',
 
 474 "form.mytime.duration" => 'kestus',
 
 475 "form.mytime.daily" => 'igapäevane töö',
 
 476 "form.mytime.total" => 'tunde kokku: ',
 
 477 "form.mytime.th.start" => 'algus',
 
 478 "form.mytime.th.finish" => 'lõpp',
 
 479 "form.mytime.th.duration" => 'kestus',
 
 480 "form.mytime.del_yes" => 'ajakanne kustutatud',
 
 481 "form.mytime.no_finished_rec" => 'kanne salvestati ainult alguse ajaga. see ei ole viga. logi välja kui vaja peaks olema.',
 
 482 "form.mytime.warn_tozero_rec" => 'see ajakanne tuleb kustutada kuna see ajaperiood on lukustatud',
 
 483 // Note to translators: the string below must be translated and added
 
 484 // "form.mytime.uncompleted" => 'uncompleted',
 
 486 // profile form attributes
 
 487 // Note to translators: we need a more accurate translation of form.profile.create_title
 
 488 "form.profile.create_title" => 'loo uus halduri konto',
 
 489 "form.profile.edit_title" => 'profiili muutmine',
 
 490 "form.profile.login" => 'login',
 
 492 // Note to translators: the strings below must be translated and added to the localization file
 
 493 // "form.profile.showchart" => 'show pie charts',
 
 494 // "form.profile.lang" => 'language',
 
 495 // "form.profile.custom_date_format" => "date format",
 
 496 // "form.profile.custom_time_format" => "time format",
 
 497 // "form.profile.default_format" => "(default)",
 
 498 // "form.profile.start_week" => "first day of week",
 
 500 // people form attributes
 
 501 "form.people.ppl_str" => 'inimesed',
 
 502 "form.people.createu_str" => 'loo uus kasutaja',
 
 503 "form.people.edit_str" => 'kasutaja muutmine',
 
 504 "form.people.del_str" => 'kasutaja kustutamine',
 
 505 "form.people.th.login" => 'login',
 
 506 "form.people.th.role" => 'roll',
 
 507 "form.people.th.rate" => 'hind',
 
 508 "form.people.manager" => 'haldur',
 
 509 "form.people.comanager" => 'kaashaldur',
 
 510 "form.people.empl" => 'kasutaja',
 
 511 "form.people.login" => 'login',
 
 513 "form.people.rate" => 'vaikimisi tunni hind',
 
 514 "form.people.comanager" => 'kaashaldur',
 
 517 "form.report.from" => 'algab kuupäevast',
 
 518 "form.report.to" => 'lõpeb kuupäeval',
 
 519 "form.report.groupby_user" => 'kasutaja',
 
 520 "form.report.groupby_project" => 'projekt',
 
 521 "form.report.duration" => 'kestus',
 
 522 "form.report.start" => 'algus',
 
 523 "form.report.finish" => 'lõpp',
 
 524 "form.report.totals_only" => 'ainult summad',
 
 525 "form.report.total" => 'tunde kokku',
 
 526 "form.report.th.empllist" => 'kasutaja',
 
 527 "form.report.th.date" => 'kuupäev',
 
 528 "form.report.th.start" => 'algus',
 
 529 "form.report.th.finish" => 'lõpp',
 
 530 "form.report.th.duration" => 'kestus',
 
 532 // mail form attributes
 
 533 "form.mail.from" => 'kellelt',
 
 534 "form.mail.to" => 'kellele',
 
 535 "form.mail.above" => 'saada aruanne e-mailiga',
 
 536 // Note to translators: this string needs to be translated.
 
 537 // "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.',
 
 538 "form.mail.sending_str" => '<b>teade saadetud</b>',
 
 540 // invoice attributes
 
 541 "form.invoice.title" => 'arve',
 
 542 "form.invoice.caption" => 'arve',
 
 543 "form.invoice.above" => 'lisainformatsioon arvele',
 
 544 "form.invoice.select_cust" => 'vali klient',
 
 545 "form.invoice.fillform" => 'täida väljad',
 
 546 "form.invoice.date" => 'kuupäev',
 
 547 "form.invoice.number" => 'arve number',
 
 548 "form.invoice.th.username" => 'isik',
 
 549 "form.invoice.th.time" => 'tunde',
 
 550 "form.invoice.th.rate" => 'hind',
 
 551 "form.invoice.th.summ" => 'summa',
 
 552 "form.invoice.subtotal" => 'vahesumma',
 
 553 "form.invoice.customer" => 'klient',
 
 554 "form.invoice.mailinv_above" => 'saada see arve e-mailiga',
 
 555 "form.invoice.sending_str" => '<b>arve saadetud</b>',
 
 557 "form.migration.zip" => 'pakkimine',
 
 558 "form.migration.file" => 'vali fail',
 
 559 "form.migration.import.title" => 'impordi andmed',
 
 560 "form.migration.import.success" => 'andmed imporditud',
 
 561 "form.migration.import.text" => 'impordi meeskonna andmed xml-failist',
 
 562 "form.migration.export.title" => 'ekspordi andmed',
 
 563 "form.migration.export.success" => 'andmed eksporditud',
 
 564 "form.migration.export.text" => 'võid kogu meeskonna andmed eksportida xml-faili. sellest võib olla kasu kui vahetad serverit.',
 
 565 // Note to translators: the string below must be translated and added
 
 566 // "form.migration.compression.none" => 'none',
 
 567 "form.migration.compression.gzip" => 'gzip',
 
 568 "form.migration.compression.bzip" => 'bzip',
 
 570 "form.client.title" => 'kliendid',
 
 571 "form.client.add_title" => 'lisa klient',
 
 572 "form.client.edit_title" => 'muuda klienti',
 
 573 "form.client.del_title" => 'kustuta klient',
 
 575 // miscellaneous strings
 
 576 "forward.tocsvfile" => 'ekspordi andmed .csv faili',
 
 577 "forward.toxmlfile" => 'ekspordi andmed .xml faili',
 
 578 "forward.geninvoice" => 'loo arve',
 
 580 "controls.project_bind" => '--- kõik ---',
 
 581 "controls.all" => '--- kõik ---',
 
 582 "controls.notbind" => '--- ei ---',
 
 583 "controls.per_tm" => 'käesolev kuu',
 
 584 "controls.per_lm" => 'eelmine kuu',
 
 585 "controls.per_tw" => 'käesolev nädal',
 
 586 "controls.per_lw" => 'eelmine nädal',
 
 587 "controls.per_td" => 'täna',
 
 588 "controls.per_at" => 'kõik ajad',
 
 590 "label.inv_str" => 'arved',
 
 591 "label.set_empl" => 'vali kasutajad',
 
 592 "label.sel_all" => 'vali kõik',
 
 593 "label.sel_none" => 'märgi kõik mittevalituks',
 
 594 "label.disable" => 'keela',
 
 595 "label.enable" => 'luba',