Made show_holidays configurable as per issue #53.
[timetracker.git] / WEB-INF / resources / sl.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 = 'Slovenščina';
35 $i18n_months = array('Januar', 'Februar', 'Marec', 'April', 'Maj', 'Junij', 'Julij', 'Avgust', 'September', 'Oktober', 'November', 'December');
36 $i18n_weekdays = array('Nedelja', 'Ponedeljek', 'Torek', 'Sreda', 'Četrtek', 'Petek', 'Sobota');
37 $i18n_weekdays_short = array('Ned', 'Pon', 'Tor', 'Sre', 'Čet', 'Pet', 'Sob');
38 // format mm/dd
39 $i18n_holidays = array('01/01', '01/02', '02/08', '04/12', '04/13', '04/27', '05/01', '05/02', '06/25', '10/31', '11/01', '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' => 'Prijava',
46 'menu.logout' => 'Odjava',
47 // TODO: translate the following.
48 // 'menu.forum' => 'Forum',
49 'menu.help' => 'Pomoč',
50 // TODO: translate the following.
51 // 'menu.create_team' => 'Create Team',
52 'menu.profile' => 'Profil',
53 // TODO: translate the following.
54 // 'menu.time' => 'Time',
55 // 'menu.expenses' => 'Expenses',
56 'menu.reports' => 'Poročila',
57 // TODO: translate the following.
58 'menu.charts' => 'Charts',
59 'menu.projects' => 'Projekti',
60 // TODO: translate the following.
61 // 'menu.tasks' => 'Tasks',
62 // 'menu.users' => 'Users',
63 'menu.teams' => 'Timi',
64 // TODO: translate the following.
65 // 'menu.export' => 'Export',
66 'menu.clients' => 'Stranke',
67 'menu.options' => 'Možnosti',
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' => 'Database error.',
82 // 'error.field' => 'Incorrect "{0}" data.',
83 // 'error.empty' => 'Field "{0}" is empty.',
84 // 'error.not_equal' => 'Field "{0}" is not equal to field "{1}".',
85 // 'error.interval' => 'Field "{0}" must be greater than "{1}".',
86 // 'error.project' => 'Select project.',
87 // 'error.task' => 'Select task.',
88 // 'error.client' => 'Select client.',
89 // 'error.report' => 'Select report.',
90 // 'error.record' => 'Select record.',
91 // 'error.auth' => 'Incorrect login or password.',
92 // 'error.user_exists' => 'User with this login already exists.',
93 // 'error.project_exists' => 'Project with this name already exists.',
94 // 'error.task_exists' => 'Task with this name already exists.',
95 // 'error.client_exists' => 'Client with this name already exists.',
96 // 'error.invoice_exists' => 'Invoice with this number already exists.',
97 // 'error.no_invoiceable_items' => 'There are no invoiceable items.',
98 // 'error.no_login' => 'No user with this login.',
99 // 'error.no_teams' => 'Your database is empty. Login as admin and create a new team.',
100 // 'error.upload' => 'File upload error.',
101 // 'error.range_locked' => 'Date range is locked.',
102 // 'error.mail_send' => 'Error sending mail.',
103 // 'error.no_email' => 'No email associated with this login.',
104 // 'error.uncompleted_exists' => 'Uncompleted entry already exists. Close or delete it.',
105 // 'error.goto_uncompleted' => 'Go to uncompleted entry.',
106 // 'error.overlap' => 'Time interval overlaps with existing records.',
107 // 'error.future_date' => 'Date is in future.',
108
109 // Labels for buttons.
110 'button.login' => 'Prijava',
111 'button.now' => 'Zdaj',
112 'button.save' => 'Shrani',
113 // TODO: translate the following.
114 // 'button.copy' => 'Copy',
115 'button.cancel' => 'Prekliči',
116 'button.submit' => 'Potrdi',
117 'button.add_user' => 'Dodaj uporabnika',
118 'button.add_project' => 'Dodaj projekt',
119 // TODO: translate the following.
120 // 'button.add_task' => 'Add task',
121 'button.add_client' => 'Dodaj stranko',
122 // TODO: translate the following.
123 // 'button.add_invoice' => 'Add invoice',
124 // 'button.add_option' => 'Add option',
125 'button.add' => 'Dodaj',
126 'button.generate' => 'Ustvari',
127 // TODO: translate the following.
128 // 'button.reset_password' => 'Reset password',
129 'button.send' => 'Pošlji',
130 'button.send_by_email' => 'Pošlji preko elektronske pošte',
131 'button.create_team' => 'Ustvari tim',
132 'button.export' => 'Izvozi tim',
133 'button.import' => 'Uvozi tim',
134 // TODO: translate the following.
135 // 'button.close' => 'Close',
136 // 'button.stop' => 'Stop',
137
138 // Labels for controls on forms. Labels in this section are used on multiple forms.
139 // TODO: translate the following.
140 // 'label.team_name' => 'Team name',
141 // 'label.address' => 'Address',
142 // 'label.currency' => 'Currency',
143 // 'label.manager_name' => 'Manager name',
144 // 'label.manager_login' => 'Manager login',
145 'label.person_name' => 'Ime',
146 'label.thing_name' => 'Ime',
147 // TODO: translate the following.
148 // 'label.login' => 'Login',
149 'label.password' => 'Geslo',
150 // TODO: translate the following.
151 // 'label.confirm_password' => 'Confirm password',
152 'label.email' => 'Email',
153 'label.cc' => 'Cc',
154 // TODO: translate the following.
155 // 'label.bcc' => 'Bcc',
156 'label.subject' => 'Predmet',
157 // TODO: translate the following.
158 // 'label.date' => 'Date',
159 // 'label.start_date' => 'Start date',
160 // 'label.end_date' => 'End date',
161 // 'label.user' => 'User',
162 // 'label.users' => 'Users',
163 // 'label.client' => 'Client',
164 // 'label.clients' => 'Clients',
165 // 'label.option' => 'Option',
166 // 'label.invoice' => 'Invoice',
167 'label.project' => 'Projekt',
168 'label.projects' => 'Projekti',
169 // TODO: translate the following.
170 // 'label.task' => 'Task',
171 // 'label.tasks' => 'Tasks',
172 // 'label.description' => 'Description',
173 // 'label.start' => 'Start',
174 // 'label.finish' => 'Finish',
175 // 'label.duration' => 'Duration',
176 // 'label.note' => 'Note',
177 // 'label.notes' => 'Notes',
178 // 'label.item' => 'Item',
179 // 'label.cost' => 'Cost',
180 // 'label.day_total' => 'Day total',
181 // 'label.week_total' => 'Week total',
182 // 'label.month_total' => 'Month total',
183 // 'label.today' => 'Today',
184 // 'label.view' => 'View',
185 'label.edit' => 'Uredi',
186 'label.delete' => 'Izbriši',
187 // TODO: translate the following.
188 // 'label.configure' => 'Configure',
189 // 'label.select_all' => 'Select all',
190 // 'label.select_none' => 'Deselect all',
191 // 'label.day_view' => 'Day view',
192 // 'label.week_view' => 'Week view',
193 // 'label.id' => 'ID',
194 // 'label.language' => 'Language',
195 // 'label.decimal_mark' => 'Decimal mark',
196 // 'label.date_format' => 'Date format',
197 // 'label.time_format' => 'Time format',
198 // 'label.week_start' => 'First day of week',
199 'label.comment' => 'Komentar',
200 // TODO: translate the following.
201 // 'label.status' => 'Status',
202 // 'label.tax' => 'Tax',
203 // 'label.subtotal' => 'Subtotal',
204 'label.total' => 'Total',
205 // TODO: translate the following.
206 // 'label.client_name' => 'Client name',
207 // 'label.client_address' => 'Client address',
208 // 'label.or' => 'or',
209 // 'label.error' => 'Error',
210 // 'label.ldap_hint' => 'Type your <b>Windows login</b> and <b>password</b> in the fields below.',
211 // 'label.required_fields' => '* - required fields',
212 // 'label.on_behalf' => 'on behalf of',
213 // 'label.role_manager' => '(manager)',
214 // 'label.role_comanager' => '(co-manager)',
215 // 'label.role_admin' => '(administrator)',
216 // 'label.page' => 'Page',
217 // 'label.condition' => 'Condition',
218 // 'label.yes' => 'yes',
219 // 'label.no' => 'no',
220 // Labels for plugins (extensions to Time Tracker that provide additional features).
221 // TODO: translate the following.
222 // 'label.custom_fields' => 'Custom fields',
223 // 'label.monthly_quotas' => 'Monthly quotas',
224 // 'label.type' => 'Type',
225 // 'label.type_dropdown' => 'dropdown',
226 // 'label.type_text' => 'text',
227 // 'label.required' => 'Required',
228 // 'label.fav_report' => 'Favorite report',
229 // 'label.cron_schedule' => 'Cron schedule',
230 // 'label.what_is_it' => 'What is it?',
231 // 'label.expense' => 'Expense',
232 // 'label.quantity' => 'Quantity',
233 // 'label.paid_status' => 'Paid status',
234 // 'label.paid' => 'Paid',
235 // 'label.mark_paid' => 'Mark paid',
236 // 'label.week_note' => 'Week note',
237 // 'label.week_list' => 'Week list',
238
239 // Form titles.
240 'title.login' => 'Prijava',
241 'title.teams' => 'Timi',
242 // TODO: translate the following.
243 // 'title.create_team' => 'Creating Team',
244 // 'title.edit_team' => 'Editing Team',
245 // 'title.delete_team' => 'Deleting Team',
246 'title.reset_password' => 'Razveljavi geslo',
247 // TODO: translate the following.
248 // 'title.change_password' => 'Changing Password',
249 // 'title.time' => 'Time',
250 // 'title.edit_time_record' => 'Editing Time Record',
251 // 'title.delete_time_record' => 'Deleting Time Record',
252 // 'title.expenses' => 'Expenses',
253 // 'title.edit_expense' => 'Editing Expense Item',
254 // 'title.delete_expense' => 'Deleting Expense Item',
255 // 'title.predefined_expenses' => 'Predefined Expenses',
256 // 'title.add_predefined_expense' => 'Adding Predefined Expense',
257 // 'title.edit_predefined_expense' => 'Editing Predefined Expense',
258 // 'title.delete_predefined_expense' => 'Deleting Predefined Expense',
259 // 'title.reports' => 'Reports',
260 // 'title.report' => 'Report',
261 // 'title.send_report' => 'Sending Report',
262 // 'title.invoice' => 'Invoice',
263 // 'title.send_invoice' => 'Sending Invoice',
264 // 'title.charts' => 'Charts',
265 'title.projects' => 'Projekti',
266 'title.add_project' => 'Dodajanje projekta',
267 'title.edit_project' => 'Urejanje projekta',
268 'title.delete_project' => 'Brisanje projekta',
269 // TODO: translate the following.
270 // 'title.tasks' => 'Tasks',
271 // 'title.add_task' => 'Adding Task',
272 // 'title.edit_task' => 'Editing Task',
273 // 'title.delete_task' => 'Deleting Task',
274 // 'title.users' => 'Users',
275 // 'title.add_user' => 'Adding User',
276 // 'title.edit_user' => 'Editing User',
277 // 'title.delete_user' => 'Deleting User',
278 // 'title.clients' => 'Clients',
279 // 'title.add_client' => 'Adding Client',
280 // 'title.edit_client' => 'Editing Client',
281 // 'title.delete_client' => 'Deleting Client',
282 // 'title.invoices' => 'Invoices',
283 // 'title.add_invoice' => 'Adding Invoice',
284 // 'title.view_invoice' => 'Viewing Invoice',
285 // 'title.delete_invoice' => 'Deleting Invoice',
286 // 'title.notifications' => 'Notifications',
287 // 'title.add_notification' => 'Adding Notification',
288 // 'title.edit_notification' => 'Editing Notification',
289 // 'title.delete_notification' => 'Deleting Notification',
290 // 'title.monthly_quotas' => 'Monthly Quotas',
291 // 'title.export' => 'Exporting Team Data',
292 // 'title.import' => 'Importing Team Data',
293 // 'title.options' => 'Options',
294 'title.profile' => 'Profil',
295 // TODO: translate the following.
296 // 'title.cf_custom_fields' => 'Custom Fields',
297 // 'title.cf_add_custom_field' => 'Adding Custom Field',
298 // 'title.cf_edit_custom_field' => 'Editing Custom Field',
299 // 'title.cf_delete_custom_field' => 'Deleting Custom Field',
300 // 'title.cf_dropdown_options' => 'Dropdown Options',
301 // 'title.cf_add_dropdown_option' => 'Adding Option',
302 // 'title.cf_edit_dropdown_option' => 'Editing Option',
303 // 'title.cf_delete_dropdown_option' => 'Deleting Option',
304 // NOTE TO TRANSLATORS: Locking is a feature to lock records from modifications (ex: weekly on Mondays we lock all previous weeks).
305 // It is also a name for the Locking plugin on the Team profile page.
306 // 'title.locking' => 'Locking',
307 // 'title.week_view' => 'Week View',
308
309 // Section for common strings inside combo boxes on forms. Strings shared between forms shall be placed here.
310 // Strings that are used in a single form must go to the specific form section.
311 // TODO: translate the following.
312 // 'dropdown.all' => '--- all ---',
313 // 'dropdown.no' => '--- no ---',
314 // 'dropdown.current_day' => 'today',
315 // 'dropdown.previous_day' => 'yesterday',
316 // 'dropdown.selected_day' => 'day',
317 // 'dropdown.current_week' => 'this week',
318 // 'dropdown.previous_week' => 'previous week',
319 // 'dropdown.selected_week' => 'week',
320 // 'dropdown.current_month' => 'this month',
321 // 'dropdown.previous_month' => 'previous month',
322 // 'dropdown.selected_month' => 'month',
323 // 'dropdown.current_year' => 'this year',
324 // 'dropdown.previous_year' => 'previous year',
325 // 'dropdown.selected_year' => 'year',
326 // 'dropdown.all_time' => 'all time',
327 'dropdown.projects' => 'projekti',
328 // TODO: translate the following.
329 // 'dropdown.tasks' => 'tasks',
330 // 'dropdown.clients' => 'clients',
331 // 'dropdown.select' => '--- select ---',
332 // 'dropdown.select_invoice' => '--- select invoice ---',
333 // 'dropdown.status_active' => 'active',
334 // 'dropdown.status_inactive' => 'inactive',
335 // 'dropdown.delete' => 'delete',
336 // 'dropdown.do_not_delete' => 'do not delete',
337 // 'dropdown.paid' => 'paid',
338 // 'dropdown.not_paid' => 'not paid',
339
340 // Login form. See example at https://timetracker.anuko.com/login.php.
341 // TODO: translate the following.
342 // 'form.login.forgot_password' => 'Forgot password?',
343 // '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.',
344
345 // Resetting Password form. See example at https://timetracker.anuko.com/password_reset.php.
346 'form.reset_password.message' => 'Zahteva za razveljavitev gesla je bila poslana.', // TODO: add "by email" to match the English string.
347 'form.reset_password.email_subject' => 'Anuko Time Tracker zahteva za razveljavitev gesla',
348 // TODO: translate the ending of this string properly.
349 'form.reset_password.email_body' => "Spoštovani uporabnik,\n\nNekdo, najverjetneje vi, je zahteval razveljavitev vašega Anuko Time Tracker gesla. Prosimo obiščite to povezavo, če želite razveljaviti vaše geslo.\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",
350
351 // Changing Password form. See example at https://timetracker.anuko.com/password_change.php?ref=1.
352 // TODO: translate the following.
353 // 'form.change_password.tip' => 'Type new password and click on Save.',
354
355 // Time form. See example at https://timetracker.anuko.com/time.php.
356 // TODO: translate the following.
357 // 'form.time.duration_format' => '(hh:mm or 0.0h)',
358 // 'form.time.billable' => 'Billable',
359 // 'form.time.uncompleted' => 'Uncompleted',
360 // 'form.time.remaining_quota' => 'Remaining quota',
361 // 'form.time.over_quota' => 'Over quota',
362
363 // Editing Time Record form. See example at https://timetracker.anuko.com/time_edit.php (get there by editing an uncompleted time record).
364 // TODO: translate the following.
365 // 'form.time_edit.uncompleted' => 'This record was saved with only start time. It is not an error.',
366
367 // Week view form. See example at https://timetracker.anuko.com/week.php.
368 // TODO: translate the following.
369 // 'form.week.new_entry' => 'New entry',
370
371 // Reports form. See example at https://timetracker.anuko.com/reports.php
372 // TODO: translate the following.
373 // 'form.reports.save_as_favorite' => 'Save as favorite',
374 // 'form.reports.confirm_delete' => 'Are you sure you want to delete this favorite report?',
375 // 'form.reports.include_billable' => 'billable',
376 // 'form.reports.include_not_billable' => 'not billable',
377 // 'form.reports.include_invoiced' => 'invoiced',
378 // 'form.reports.include_not_invoiced' => 'not invoiced',
379 // 'form.reports.select_period' => 'Select time period',
380 // 'form.reports.set_period' => 'or set dates',
381 // 'form.reports.show_fields' => 'Show fields',
382 // 'form.reports.group_by' => 'Group by',
383 // 'form.reports.group_by_no' => '--- no grouping ---',
384 // 'form.reports.group_by_date' => 'date',
385 // 'form.reports.group_by_user' => 'user',
386 // 'form.reports.group_by_client' => 'client',
387 'form.reports.group_by_project' => 'projekt',
388 // TODO: translate the following.
389 // 'form.reports.group_by_task' => 'task',
390 // 'form.reports.totals_only' => 'Totals only',
391
392 // Report form. See example at https://timetracker.anuko.com/report.php
393 // (after generating a report at https://timetracker.anuko.com/reports.php).
394 // TODO: translate the following.
395 // 'form.report.export' => 'Export',
396 // 'form.report.assign_to_invoice' => 'Assign to invoice',
397
398 // Invoice form. See example at https://timetracker.anuko.com/invoice.php
399 // (you can get to this form after generating a report).
400 // TODO: translate the following.
401 // 'form.invoice.number' => 'Invoice number',
402 // 'form.invoice.person' => 'Person',
403
404 // Deleting Invoice form. See example at https://timetracker.anuko.com/invoice_delete.php
405 // 'form.invoice.invoice_to_delete' => 'Invoice to delete',
406 // 'form.invoice.invoice_entries' => 'Invoice entries',
407 // 'form.invoice.confirm_deleting_entries' => 'Please confirm deleting invoice entries from Time Tracker.',
408
409 // Charts form. See example at https://timetracker.anuko.com/charts.php
410 // TODO: translate the following.
411 // 'form.charts.interval' => 'Interval',
412 // 'form.charts.chart' => 'Chart',
413
414 // Projects form. See example at https://timetracker.anuko.com/projects.php
415 // TODO: translate the following.
416 // 'form.projects.active_projects' => 'Active Projects',
417 // 'form.projects.inactive_projects' => 'Inactive Projects',
418
419 // Tasks form. See example at https://timetracker.anuko.com/tasks.php
420 // TODO: translate the following.
421 // 'form.tasks.active_tasks' => 'Active Tasks',
422 // 'form.tasks.inactive_tasks' => 'Inactive Tasks',
423
424 // Users form. See example at https://timetracker.anuko.com/users.php
425 // TODO: translate the following.
426 // 'form.users.active_users' => 'Active Users',
427 // 'form.users.inactive_users' => 'Inactive Users',
428 // 'form.users.uncompleted_entry' => 'User has an uncompleted time entry',
429 // 'form.users.role' => 'Role',
430 // 'form.users.manager' => 'Manager',
431 // 'form.users.comanager' => 'Co-manager',
432 // 'form.users.rate' => 'Rate',
433 // 'form.users.default_rate' => 'Default hourly rate',
434
435 // Clients form. See example at https://timetracker.anuko.com/clients.php
436 // TODO: translate the following.
437 // 'form.clients.active_clients' => 'Active Clients',
438 // 'form.clients.inactive_clients' => 'Inactive Clients',
439
440 // Deleting Client form. See example at https://timetracker.anuko.com/client_delete.php
441 // TODO: translate the following.
442 // 'form.client.client_to_delete' => 'Client to delete',
443 // 'form.client.client_entries' => 'Client entries',
444
445 // Exporting Team Data form. See example at https://timetracker.anuko.com/export.php
446 // TODO: translate the following.
447 // 'form.export.hint' => 'You can export all team data into an xml file. It could be useful if you are migrating data to your own server.',
448 // 'form.export.compression' => 'Compression',
449 // 'form.export.compression_none' => 'none',
450 // 'form.export.compression_bzip' => 'bzip',
451
452 // Importing Team Data form. See example at https://timetracker.anuko.com/imort.php (login as admin first).
453 // TODO: translate the following.
454 // 'form.import.hint' => 'Import team data from an xml file.',
455 // 'form.import.file' => 'Select file',
456 // 'form.import.success' => 'Import completed successfully.',
457
458 // Teams form. See example at https://timetracker.anuko.com/admin_teams.php (login as admin first).
459 // TODO: translate the following.
460 // 'form.teams.hint' =>  'Create a new team by creating a new team manager account.<br>You can also import team data from an xml file from another Anuko Time Tracker server (no login collisions are allowed).',
461
462 // Profile form. See example at https://timetracker.anuko.com/profile_edit.php.
463 // TODO: translate the following.
464 // 'form.profile.12_hours' => '12 hours',
465 // 'form.profile.24_hours' => '24 hours',
466 // 'form.profile.show_holidays' => 'Show holidays',
467 // 'form.profile.tracking_mode' => 'Tracking mode',
468 // 'form.profile.mode_time' => 'time',
469 // 'form.profile.mode_projects' => 'projects',
470 // 'form.profile.mode_projects_and_tasks' => 'projects and tasks',
471 // 'form.profile.record_type' => 'Record type',
472 // 'form.profile.type_all' => 'all',
473 // 'form.profile.type_start_finish' => 'start and finish',
474 // 'form.profile.type_duration' => 'duration',
475 // 'form.profile.uncompleted_indicators' => 'Uncompleted indicators',
476 // 'form.profile.uncompleted_indicators_none' => 'do not show',
477 // 'form.profile.uncompleted_indicators_show' => 'show',
478 // 'form.profile.plugins' => 'Plugins',
479
480 // Mail form. See example at https://timetracker.anuko.com/report_send.php when emailing a report.
481 'form.mail.from' => 'Od',
482 'form.mail.to' => 'Za',
483 // TODO: translate the following.
484 // 'form.mail.report_subject' => 'Time Tracker Report',
485 // 'form.mail.footer' => '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.',
486 // 'form.mail.report_sent' => 'Report sent.',
487 // 'form.mail.invoice_sent' => 'Invoice sent.',
488
489 // Quotas configuration form.
490 // TODO: translate the following.
491 // 'form.quota.year' => 'Year',
492 // 'form.quota.month' => 'Month',
493 // 'form.quota.quota' => 'Quota',
494 // 'form.quota.workday_hours' => 'Hours in work day',
495 // 'form.quota.hint' => 'If values are empty, quotas are calculated automatically based on workday hours and holidays.',
496 );