More recycling.
[timetracker.git] / WEB-INF / resources / et.lang.php
1 <?php
2 // +----------------------------------------------------------------------+
3 // | Anuko Time Tracker
4 // +----------------------------------------------------------------------+
5 // | Copyright (c) Anuko International Ltd. (https://www.anuko.com)
6 // +----------------------------------------------------------------------+
7 // | LIBERAL FREEWARE LICENSE: This source code document may be used
8 // | by anyone for any purpose, and freely redistributed alone or in
9 // | combination with other software, provided that the license is obeyed.
10 // |
11 // | There are only two ways to violate the license:
12 // |
13 // | 1. To redistribute this code in source form, with the copyright
14 // |    notice or license removed or altered. (Distributing in compiled
15 // |    forms without embedded copyright notices is permitted).
16 // |
17 // | 2. To redistribute modified versions of this code in *any* form
18 // |    that bears insufficient indications that the modifications are
19 // |    not the work of the original author(s).
20 // |
21 // | This license applies to this document only, not any other software
22 // | that it may be combined with.
23 // |
24 // +----------------------------------------------------------------------+
25 // | Contributors:
26 // | https://www.anuko.com/time_tracker/credits.htm
27 // +----------------------------------------------------------------------+
28
29 // Note: escape apostrophes with THREE backslashes, like here:  choisir l\\\'option.
30 // Other characters (such as double-quotes in http links, etc.) do not have to be escaped.
31
32 // Note to translators: Use proper capitalization rules for your language.
33
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');
38 // format mm/dd
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');
40
41 $i18n_key_words = array(
42
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',
53 'menu.time' => 'Aeg',
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',
68
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.
76
77 // Error messages.
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.',
114
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 'button.reset_password' => 'Tühjenda salasõna',
134 'button.send' => 'Saada',
135 'button.send_by_email' => 'Saada e-mailiga',
136 'button.create_team' => 'Loo meeskond',
137 'button.export' => 'Ekspordi meeskond',
138 'button.import' => 'Impordi meeskond',
139 // TODO: translate the following.
140 // 'button.close' => 'Close',
141 // 'button.stop' => 'Stop',
142
143 // Labels for controls on forms. Labels in this section are used on multiple forms.
144 // TODO: translate the following.
145 // 'label.team_name' => 'Team name',
146 // 'label.address' => 'Address',
147 'label.currency' => 'Valuuta',
148 // TODO: translate the following.
149 // 'label.manager_name' => 'Manager name',
150 // 'label.manager_login' => 'Manager login',
151 'label.person_name' => 'Nimi',
152 'label.thing_name' => 'Nimi',
153 'label.login' => 'Login',
154 'label.password' => 'Salasõna',
155 'label.confirm_password' => 'Kinnita salasõna',
156 // TODO: translate the following.
157 // 'label.email' => 'Email',
158 'label.cc' => 'Cc',
159 // TODO: translate the following.
160 // 'label.bcc' => 'Bcc',
161 'label.subject' => 'Teema',
162 'label.date' => 'Kuupäev',
163 // TODO: translate the following.
164 // 'label.start_date' => 'Start date',
165 // 'label.end_date' => 'End date',
166 // 'label.user' => 'User',
167 // 'label.users' => 'Users',
168 // 'label.client' => 'Client',
169 // 'label.clients' => 'Clients',
170 // 'label.option' => 'Option',
171 // 'label.invoice' => 'Invoice',
172 'label.project' => 'Projekt',
173 'label.projects' => 'Projektid',
174 // TODO: translate the following.
175 // 'label.task' => 'Task',
176 // 'label.tasks' => 'Tasks',
177 // 'label.description' => 'Description',
178 'label.start' => 'Algus',
179 'label.finish' => 'Lõpp',
180 'label.duration' => 'Kestus',
181 'label.note' => 'Märkus',
182 'label.notes' => 'Märkused',
183 // TODO: translate the following.
184 // 'label.item' => 'Item',
185 // 'label.cost' => 'Cost',
186 // 'label.day_total' => 'Day total',
187 'label.week_total' => 'Nädalane summa',
188 // TODO: translate the following.
189 // 'label.month_total' => 'Month total',
190 'label.today' => 'Täna',
191 // TODO: translate the following.
192 // 'label.total_hours' => 'Total hours',
193 // 'label.total_cost' => 'Total cost',
194 // 'label.view' => 'View',
195 'label.edit' => 'Muuda',
196 'label.delete' => 'Kustuta',
197 'label.configure' => 'Konfigureeri',
198 // TODO: translate the following.
199 // 'label.select_all' => 'Select all',
200 // 'label.select_none' => 'Deselect all',
201 // 'label.day_view' => 'Day view',
202 // 'label.week_view' => 'Week view',
203 // 'label.id' => 'ID',
204 // 'label.language' => 'Language',
205 // 'label.decimal_mark' => 'Decimal mark',
206 // 'label.date_format' => 'Date format',
207 // 'label.time_format' => 'Time format',
208 // 'label.week_start' => 'First day of week',
209 'label.comment' => 'Kommentaar',
210 'label.status' => 'Seisund',
211 'label.tax' => 'Maks',
212 // TODO: translate the following.
213 // 'label.subtotal' => 'Subtotal',
214 'label.total' => 'Kokku',
215 // TODO: translate the following.
216 // 'label.client_name' => 'Client name',
217 // 'label.client_address' => 'Client address',
218 'label.or' => 'või',
219 // TODO: translate the following.
220 // 'label.error' => 'Error',
221 // 'label.ldap_hint' => 'Type your <b>Windows login</b> and <b>password</b> in the fields below.',
222 'label.required_fields' => '* nõutud väljad',
223 // TODO: translate the following.
224 // 'label.on_behalf' => 'on behalf of',
225 'label.role_manager' => '(haldur)',
226 'label.role_comanager' => '(kaashaldur)',
227 'label.role_admin' => '(administraator)',
228 // TODO: translate the following.
229 // 'label.page' => 'Page',
230 // 'label.condition' => 'Condition',
231 // 'label.yes' => 'yes',
232 // 'label.no' => 'no',
233 // Labels for plugins (extensions to Time Tracker that provide additional features).
234 // TODO: translate the following.
235 // 'label.custom_fields' => 'Custom fields',
236 // 'label.monthly_quotas' => 'Monthly quotas',
237 // 'label.type' => 'Type',
238 // 'label.type_dropdown' => 'dropdown',
239 // 'label.type_text' => 'text',
240 // 'label.required' => 'Required',
241 'label.fav_report' => 'Lemmikraport',
242 // TODO: translate the following.
243 // 'label.cron_schedule' => 'Cron schedule',
244 // 'label.what_is_it' => 'What is it?',
245 // 'label.expense' => 'Expense',
246 // 'label.quantity' => 'Quantity',
247 // 'label.paid_status' => 'Paid status',
248 // 'label.paid' => 'Paid',
249 // 'label.mark_paid' => 'Mark paid',
250 // 'label.week_note' => 'Week note',
251 // 'label.week_list' => 'Week list',
252
253 // Form titles.
254 'title.login' => 'Login',
255 // TODO: translate the following.
256 // 'title.teams' => 'Teams',
257 // 'title.create_team' => 'Creating Team',
258 // 'title.edit_team' => 'Editing Team',
259 // 'title.delete_team' => 'Deleting Team',
260 'title.reset_password' => 'Tühjenda salasõna',
261 // TODO: translate the following.
262 // 'title.change_password' => 'Changing Password',
263 // 'title.time' => 'Time',
264 // 'title.edit_time_record' => 'Editing Time Record',
265 // 'title.delete_time_record' => 'Deleting Time Record',
266 // 'title.expenses' => 'Expenses',
267 // 'title.edit_expense' => 'Editing Expense Item',
268 // 'title.delete_expense' => 'Deleting Expense Item',
269 // 'title.predefined_expenses' => 'Predefined Expenses',
270 // 'title.add_predefined_expense' => 'Adding Predefined Expense',
271 // 'title.edit_predefined_expense' => 'Editing Predefined Expense',
272 // 'title.delete_predefined_expense' => 'Deleting Predefined Expense',
273 'title.reports' => 'Raportid',
274 // TODO: translate the following.
275 // 'title.report' => 'Report',
276 // 'title.send_report' => 'Sending Report',
277 // 'title.invoice' => 'Invoice',
278 // 'title.send_invoice' => 'Sending Invoice',
279 // 'title.charts' => 'Charts',
280 'title.projects' => 'Projektid',
281 'title.add_project' => 'Projekti lisamine',
282 'title.edit_project' => 'Projekti muutmine',
283 'title.delete_project' => 'Projekti kustutamine',
284 // TODO: translate the following.
285 // 'title.tasks' => 'Tasks',
286 // 'title.add_task' => 'Adding Task',
287 // 'title.edit_task' => 'Editing Task',
288 // 'title.delete_task' => 'Deleting Task',
289 // 'title.users' => 'Users',
290 // 'title.add_user' => 'Adding User',
291 // 'title.edit_user' => 'Editing User',
292 // 'title.delete_user' => 'Deleting User',
293 // 'title.clients' => 'Clients',
294 // 'title.add_client' => 'Adding Client',
295 // 'title.edit_client' => 'Editing Client',
296 // 'title.delete_client' => 'Deleting Client',
297 // 'title.invoices' => 'Invoices',
298 // 'title.add_invoice' => 'Adding Invoice',
299 // 'title.view_invoice' => 'Viewing Invoice',
300 // 'title.delete_invoice' => 'Deleting Invoice',
301 // 'title.notifications' => 'Notifications',
302 // 'title.add_notification' => 'Adding Notification',
303 // 'title.edit_notification' => 'Editing Notification',
304 // 'title.delete_notification' => 'Deleting Notification',
305 // 'title.monthly_quotas' => 'Monthly Quotas',
306 // 'title.export' => 'Exporting Team Data',
307 // 'title.import' => 'Importing Team Data',
308 'title.options' => 'Suvandid',
309 // TODO: translate the following.
310 // 'title.profile' => 'Profile',
311 // 'title.cf_custom_fields' => 'Custom Fields',
312 // 'title.cf_add_custom_field' => 'Adding Custom Field',
313 // 'title.cf_edit_custom_field' => 'Editing Custom Field',
314 // 'title.cf_delete_custom_field' => 'Deleting Custom Field',
315 // 'title.cf_dropdown_options' => 'Dropdown Options',
316 // 'title.cf_add_dropdown_option' => 'Adding Option',
317 // 'title.cf_edit_dropdown_option' => 'Editing Option',
318 // 'title.cf_delete_dropdown_option' => 'Deleting Option',
319 // NOTE TO TRANSLATORS: Locking is a feature to lock records from modifications (ex: weekly on Mondays we lock all previous weeks).
320 // It is also a name for the Locking plugin on the Team profile page.
321 // 'title.locking' => 'Locking',
322 // 'title.week_view' => 'Week View',
323
324 // Section for common strings inside combo boxes on forms. Strings shared between forms shall be placed here.
325 // Strings that are used in a single form must go to the specific form section.
326 // TODO: translate the following.
327 // 'dropdown.all' => '--- all ---',
328 // 'dropdown.no' => '--- no ---',
329 // 'dropdown.current_day' => 'today',
330 // 'dropdown.previous_day' => 'yesterday',
331 // 'dropdown.selected_day' => 'day',
332 // 'dropdown.current_week' => 'this week',
333 // 'dropdown.previous_week' => 'previous week',
334 // 'dropdown.selected_week' => 'week',
335 // 'dropdown.current_month' => 'this month',
336 // 'dropdown.previous_month' => 'previous month',
337 // 'dropdown.selected_month' => 'month',
338 // 'dropdown.current_year' => 'this year',
339 // 'dropdown.previous_year' => 'previous year',
340 // 'dropdown.selected_year' => 'year',
341 // 'dropdown.all_time' => 'all time',
342 'dropdown.projects' => 'projektid',
343 // TODO: translate the following.
344 // 'dropdown.tasks' => 'tasks',
345 // 'dropdown.clients' => 'clients',
346 // 'dropdown.select' => '--- select ---',
347 // 'dropdown.select_invoice' => '--- select invoice ---',
348 // 'dropdown.status_active' => 'active',
349 // 'dropdown.status_inactive' => 'inactive',
350 // 'dropdown.delete'=>'delete',
351 // 'dropdown.do_not_delete'=>'do not delete',
352 // 'dropdown.paid' => 'paid',
353 // 'dropdown.not_paid' => 'not paid',
354
355 // Login form. See example at https://timetracker.anuko.com/login.php.
356 'form.login.forgot_password' => 'Unustasid salasõna?',
357 // TODO: translate the following.
358 // '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.',
359
360 // Resetting Password form. See example at https://timetracker.anuko.com/password_reset.php.
361 // TODO: translate the following.
362 // 'form.reset_password.message' => 'Password reset request sent by email.',
363 // 'form.reset_password.email_subject' => 'Anuko Time Tracker password reset request',
364 // '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",
365
366 // Changing Password form. See example at https://timetracker.anuko.com/password_change.php?ref=1.
367 // TODO: translate the following.
368 // 'form.change_password.tip' => 'Type new password and click on Save.',
369
370 // Time form. See example at https://timetracker.anuko.com/time.php.
371 // TODO: translate the following.
372 // 'form.time.duration_format' => '(hh:mm or 0.0h)',
373 'form.time.billable' => 'Arvestatav',
374 // TODO: translate the following.
375 // 'form.time.uncompleted' => 'Uncompleted',
376 // 'form.time.remaining_quota' => 'Remaining quota',
377 // 'form.time.over_quota' => 'Over quota',
378
379 // Editing Time Record form. See example at https://timetracker.anuko.com/time_edit.php (get there by editing an uncompleted time record).
380 // TODO: translate the following.
381 // 'form.time_edit.uncompleted' => 'This record was saved with only start time. It is not an error.',
382
383 // Week view form. See example at https://timetracker.anuko.com/week.php.
384 // TODO: translate the following.
385 // 'form.week.new_entry' => 'New entry',
386
387 // Reports form. See example at https://timetracker.anuko.com/reports.php
388 'form.reports.save_as_favorite' => 'Salvesta lemmikuna',
389 // TODO: translate the following.
390 // 'form.reports.confirm_delete' => 'Are you sure you want to delete this favorite report?',
391 'form.reports.include_billable' => 'arvestatav',
392 'form.reports.include_not_billable' => 'mittearvestatav',
393 // TODO: translate the following.
394 // 'form.reports.include_invoiced' => 'invoiced',
395 // 'form.reports.include_not_invoiced' => 'not invoiced',
396 'form.reports.select_period' => 'Vali ajaperiood',
397 'form.reports.set_period' => 'või märgi kuupäevad',
398 'form.reports.show_fields' => 'Näita välju',
399 'form.reports.group_by' => 'Grupeeri',
400 'form.reports.group_by_no' => '--- ilma grupeerimata ---',
401 // TODO: translate the following.
402 // 'form.reports.group_by_date' => 'date',
403 // 'form.reports.group_by_user' => 'user',
404 // 'form.reports.group_by_client' => 'client',
405 'form.reports.group_by_project' => 'projekt',
406 // TODO: translate the following.
407 // 'form.reports.group_by_task' => 'task',
408 // 'form.reports.totals_only' => 'Totals only',
409
410 // Report form. See example at https://timetracker.anuko.com/report.php
411 // (after generating a report at https://timetracker.anuko.com/reports.php).
412 // TODO: translate the following.
413 // 'form.report.export' => 'Export',
414 // 'form.report.assign_to_invoice' => 'Assign to invoice',
415
416 // Invoice form. See example at https://timetracker.anuko.com/invoice.php
417 // (you can get to this form after generating a report).
418 // TODO: translate the following.
419 // 'form.invoice.number' => 'Invoice number',
420 // 'form.invoice.person' => 'Person',
421 // 'form.invoice.invoice_to_delete' => 'Invoice to delete',
422 // 'form.invoice.invoice_entries' => 'Invoice entries',
423 // 'form.invoice.confirm_deleting_entries' => 'Please confirm deleting invoice entries from Time Tracker.',
424
425 // Charts form. See example at https://timetracker.anuko.com/charts.php
426 // TODO: translate the following.
427 // 'form.charts.interval' => 'Interval',
428 // 'form.charts.chart' => 'Chart',
429
430 // Projects form. See example at https://timetracker.anuko.com/projects.php
431 // TODO: translate the following.
432 // 'form.projects.active_projects' => 'Active Projects',
433 // 'form.projects.inactive_projects' => 'Inactive Projects',
434
435 // Tasks form. See example at https://timetracker.anuko.com/tasks.php
436 // TODO: translate the following.
437 // 'form.tasks.active_tasks' => 'Active Tasks',
438 // 'form.tasks.inactive_tasks' => 'Inactive Tasks',
439
440
441
442 // TODO: refactoring ongoing down from here.
443
444 // password reminder form attributes
445 "form.fpass.login" => 'login',
446 "form.fpass.send_pass_str" => 'salasõna tühjendamise käsk edastatud',
447 // Note to translators: the 3 strings below must be translated
448 // "form.fpass.send_pass_subj" => 'AnukoTime Tracker password reset request',
449 // "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",
450 // "form.fpass.reset_comment" => "to reset your password please type it in and click on save",
451
452 // administrator form
453 "form.admin.title" => 'administraator',
454 // Note to translators: the string below must be translated
455 // "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).',
456
457 "form.admin.profile.title" => 'meeskonnad',
458 "form.admin.profile.noprofiles" => 'sinu andmebaas on tühi. logi adminina sisse ja loo uus meeskond.',
459 "form.admin.profile.comment" => 'kustuta meeskond',
460 "form.admin.profile.th.id" => 'id',
461 "form.admin.profile.th.active" => 'aktiivne',
462
463 // my time form attributes
464 "form.mytime.title" => 'minu aeg',
465 "form.mytime.edit_title" => 'ajakande muutmine',
466 "form.mytime.del_str" => 'ajakande kustutamine',
467 "form.mytime.daily" => 'igapäevane töö',
468 "form.mytime.total" => 'tunde kokku: ',
469 "form.mytime.del_yes" => 'ajakanne kustutatud',
470 "form.mytime.no_finished_rec" => 'kanne salvestati ainult alguse ajaga. see ei ole viga. logi välja kui vaja peaks olema.',
471 "form.mytime.warn_tozero_rec" => 'see ajakanne tuleb kustutada kuna see ajaperiood on lukustatud',
472 // Note to translators: the string below must be translated and added
473 // "form.mytime.uncompleted" => 'uncompleted',
474
475 // profile form attributes
476 // Note to translators: we need a more accurate translation of form.profile.create_title
477 "form.profile.create_title" => 'loo uus halduri konto',
478 "form.profile.edit_title" => 'profiili muutmine',
479 "form.profile.login" => 'login',
480
481 // people form attributes
482 "form.people.ppl_str" => 'inimesed',
483 "form.people.createu_str" => 'loo uus kasutaja',
484 "form.people.edit_str" => 'kasutaja muutmine',
485 "form.people.del_str" => 'kasutaja kustutamine',
486 "form.people.th.login" => 'login',
487 "form.people.th.role" => 'roll',
488 "form.people.th.rate" => 'hind',
489 "form.people.manager" => 'haldur',
490 "form.people.comanager" => 'kaashaldur',
491 "form.people.empl" => 'kasutaja',
492 "form.people.login" => 'login',
493
494 "form.people.rate" => 'vaikimisi tunni hind',
495 "form.people.comanager" => 'kaashaldur',
496
497 // report attributes
498 "form.report.from" => 'algab kuupäevast',
499 "form.report.to" => 'lõpeb kuupäeval',
500 "form.report.groupby_user" => 'kasutaja',
501 "form.report.totals_only" => 'ainult summad',
502 "form.report.total" => 'tunde kokku',
503 "form.report.th.empllist" => 'kasutaja',
504
505 // mail form attributes
506 "form.mail.from" => 'kellelt',
507 "form.mail.to" => 'kellele',
508 "form.mail.above" => 'saada aruanne e-mailiga',
509 // Note to translators: this string needs to be translated.
510 // "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.',
511 "form.mail.sending_str" => '<b>teade saadetud</b>',
512
513 // invoice attributes
514 "form.invoice.title" => 'arve',
515 "form.invoice.caption" => 'arve',
516 "form.invoice.above" => 'lisainformatsioon arvele',
517 "form.invoice.select_cust" => 'vali klient',
518 "form.invoice.fillform" => 'täida väljad',
519 "form.invoice.number" => 'arve number',
520 "form.invoice.th.username" => 'isik',
521 "form.invoice.th.time" => 'tunde',
522 "form.invoice.th.rate" => 'hind',
523 "form.invoice.th.summ" => 'summa',
524 "form.invoice.subtotal" => 'vahesumma',
525 "form.invoice.customer" => 'klient',
526 "form.invoice.mailinv_above" => 'saada see arve e-mailiga',
527 "form.invoice.sending_str" => '<b>arve saadetud</b>',
528
529 "form.migration.zip" => 'pakkimine',
530 "form.migration.file" => 'vali fail',
531 "form.migration.import.title" => 'impordi andmed',
532 "form.migration.import.success" => 'andmed imporditud',
533 "form.migration.import.text" => 'impordi meeskonna andmed xml-failist',
534 "form.migration.export.title" => 'ekspordi andmed',
535 "form.migration.export.success" => 'andmed eksporditud',
536 "form.migration.export.text" => 'võid kogu meeskonna andmed eksportida xml-faili. sellest võib olla kasu kui vahetad serverit.',
537 // Note to translators: the string below must be translated and added
538 // "form.migration.compression.none" => 'none',
539 "form.migration.compression.gzip" => 'gzip',
540 "form.migration.compression.bzip" => 'bzip',
541
542 "form.client.title" => 'kliendid',
543 "form.client.add_title" => 'lisa klient',
544 "form.client.edit_title" => 'muuda klienti',
545 "form.client.del_title" => 'kustuta klient',
546
547 // miscellaneous strings
548 "forward.tocsvfile" => 'ekspordi andmed .csv faili',
549 "forward.toxmlfile" => 'ekspordi andmed .xml faili',
550 "forward.geninvoice" => 'loo arve',
551
552 "controls.project_bind" => '--- kõik ---',
553 "controls.all" => '--- kõik ---',
554 "controls.notbind" => '--- ei ---',
555 "controls.per_tm" => 'käesolev kuu',
556 "controls.per_lm" => 'eelmine kuu',
557 "controls.per_tw" => 'käesolev nädal',
558 "controls.per_lw" => 'eelmine nädal',
559 "controls.per_td" => 'täna',
560 "controls.per_at" => 'kõik ajad',
561
562 "label.inv_str" => 'arved',
563 "label.set_empl" => 'vali kasutajad',
564 "label.sel_all" => 'vali kõik',
565 "label.sel_none" => 'märgi kõik mittevalituks',
566 "label.disable" => 'keela',
567 "label.enable" => 'luba',
568 );