A bit more work in progress on roles.
[timetracker.git] / WEB-INF / resources / no.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 $i18n_language = 'Norsk';
33 $i18n_months = array('Januar', 'Februar', 'Mars', 'April', 'Mai', 'Juni', 'Juli', 'August', 'September', 'Oktober', 'November', 'Desember');
34 $i18n_weekdays = array('Søndag', 'Mandag', 'Tirsdag', 'Onsdag', 'Torsdag', 'Fredag', 'Lørdag');
35 // TODO: check translation of $i18n_weekdays_short.
36 $i18n_weekdays_short = array('Sø', 'Ma', 'Ti', 'On', 'To', 'Fr', 'Lø');
37 // format mm/dd
38 $i18n_holidays = array('01/01', '04/05', '04/09', '04/10', '04/12', '04/13', '05/01', '05/17', '05/21', '05/31', '06/01', '12/25', '12/26');
39
40 $i18n_key_words = array(
41
42 // Menus - short selection strings that are displayed on top of application web pages.
43 // Example: https://timetracker.anuko.com (black menu on top).
44 'menu.login' => 'Innlogging',
45 'menu.logout' => 'Logg ut',
46 // TODO: translate the following.
47 // 'menu.forum' => 'Forum',
48 'menu.help' => 'Hjelp',
49 // TODO: translate the following.
50 // 'menu.create_team' => 'Create Team',
51 'menu.profile' => 'Profil',
52 'menu.time' => 'Tid',
53 // TODO: translate the following.
54 // 'menu.expenses' => 'Expenses',
55 'menu.reports' => 'Rapporter',
56 'menu.charts' => 'Diagrammer',
57 'menu.projects' => 'Prosjekter',
58 // TODO: translate the following.
59 // 'menu.tasks' => 'Tasks',
60 'menu.users' => 'Brukere',
61 // 'menu.teams' => 'Teams',
62 'menu.export' => 'Eksport',
63 'menu.clients' => 'Klienter',
64 'menu.options' => 'Opsjoner',
65
66 // Footer - strings on the bottom of most pages.
67 // TODO: translate the following.
68 // 'footer.contribute_msg' => 'You can contribute to Time Tracker in different ways.',
69 // 'footer.credits' => 'Credits',
70 // 'footer.license' => 'License',
71 // 'footer.improve' => 'Contribute', // Translators: this could mean "Improve", if it makes better sense in your language.
72                                      // This is a link to a webpage that describes how to contribute to the project.
73
74 // Error messages.
75 // TODO: translate the following.
76 // 'error.access_denied' => 'Access denied.',
77 // 'error.sys' => 'System error.',
78 'error.db' => 'Databasefeil.',
79 'error.field' => 'Feil "{0}" data.',
80 'error.empty' => 'Feltet "{0}" er tomt.',
81 'error.not_equal' => 'Feltet "{0}" stemmer ikke med "{1}".',
82 // TODO: translate the following.
83 // 'error.interval' => 'Field "{0}" must be greater than "{1}".',
84 'error.project' => 'Velg prosjekt.',
85 // TODO: translate the following.
86 // 'error.task' => 'Select task.',
87 'error.client' => 'Velg klient.',
88 // TODO: translate the following.
89 // 'error.report' => 'Select report.',
90 // 'error.record' => 'Select record.',
91 'error.auth' => 'Feil brukernavn eller passord.',
92 'error.user_exists' => 'Bruker med et slikt brukernavn eksisterer allerede.',
93 'error.project_exists' => 'Et prosjekt med dette navnet er allerede opprettet.',
94 // TODO: translate the following.
95 // 'error.task_exists' => 'Task with this name already exists.',
96 'error.client_exists' => 'En klient med dette navnet er allerede opprettet.',
97 // TODO: translate the following.
98 // 'error.invoice_exists' => 'Invoice with this number already exists.',
99 // 'error.no_invoiceable_items' => 'There are no invoiceable items.',
100 'error.no_login' => 'Det er ingen bruker med dette brukernavnet.',
101 'error.no_teams' => 'Databasen din er tom. Logg inn som admin og opprett et nytt team.',
102 'error.upload' => 'Feil med lasting av fil.',
103 // TODO: translate the following.
104 // 'error.range_locked' => 'Date range is locked.',
105 'error.mail_send' => 'Feil ved sending av e-post.',
106 'error.no_email' => 'Det er ingen e-post knyttet til dette brukernavnet.',
107 'error.uncompleted_exists' => 'Ufullført registrering finnes allerede. Lukk eller slett den.',
108 'error.goto_uncompleted' => 'Gå til ufullført registrering.',
109 // TODO: translate the following.
110 // 'error.overlap' => 'Time interval overlaps with existing records.',
111 // 'error.future_date' => 'Date is in future.',
112
113 // Labels for buttons.
114 'button.login' => 'Innlogging',
115 'button.now' => 'Nå',
116 'button.save' => 'Lagre',
117 // TODO: translate the following.
118 // 'button.copy' => 'Copy',
119 'button.cancel' => 'Avbryt',
120 // TODO: translate the following.
121 // 'button.submit' => 'Submit',
122 'button.add_user' => 'Legg til bruker',
123 'button.add_project' => 'Legg til prosjekt',
124 // TODO: translate the following.
125 // 'button.add_task' => 'Add task',
126 'button.add_client' => 'Legg til klient',
127 // TODO: translate the following.
128 // 'button.add_invoice' => 'Add invoice',
129 // 'button.add_option' => 'Add option',
130 'button.add' => 'Legg til',
131 'button.generate' => 'Generer',
132 'button.reset_password' => 'Resett passord',
133 'button.send' => 'Send',
134 'button.send_by_email' => 'Send som e-post',
135 'button.create_team' => 'Opprett team',
136 'button.export' => 'Eksport team',
137 'button.import' => 'Importer team',
138 'button.close' => 'Lukk',
139 // TODO: translate the following.
140 // 'button.stop' => 'Stop',
141
142 // Labels for controls on forms. Labels in this section are used on multiple forms.
143 // TODO: translate the following.
144 // 'label.team_name' => 'Team name',
145 // 'label.address' => 'Address',
146 'label.currency' => 'Valuta',
147 // TODO: translate the following.
148 // 'label.manager_name' => 'Manager name',
149 // 'label.manager_login' => 'Manager login',
150 'label.person_name' => 'Navn',
151 'label.thing_name' => 'Navn',
152 'label.login' => 'Innlogging', // TODO: is this correct translation for a label?
153 'label.password' => 'Passord',
154 'label.confirm_password' => 'Bekreft passord',
155 'label.email' => 'E-post',
156 // TODO: translate the following.
157 // 'label.cc' => 'Cc',
158 // 'label.bcc' => 'Bcc',
159 'label.subject' => 'Emne',
160 'label.date' => 'Dato',
161 // TODO: translate the following.
162 // 'label.start_date' => 'Start date',
163 // 'label.end_date' => 'End date',
164 'label.user' => 'Bruker',
165 'label.users' => 'Brukere',
166 // TODO: translate the following.
167 // 'label.roles' => 'Roles',
168 'label.client' => 'Klient',
169 'label.clients' => 'Klienter',
170 'label.option' => 'Opsjon', // TODO: is this correct?
171 'label.invoice' => 'Faktura',
172 'label.project' => 'Prosjekt',
173 'label.projects' => 'Prosjekter',
174 // TODO: translate the following.
175 // 'label.task' => 'Task',
176 // 'label.tasks' => 'Tasks',
177 // 'label.description' => 'Description',
178 'label.start' => 'Starttid',
179 'label.finish' => 'Ferdig',
180 'label.duration' => 'Varighet',
181 'label.note' => 'Notat',
182 'label.notes' => 'Notater',
183 // TODO: translate the following.
184 // 'label.item' => 'Item',
185 // 'label.cost' => 'Cost',
186 // 'label.day_total' => 'Day total',
187 'label.week_total' => 'Uken totalt',
188 // TODO: translate the following.
189 // 'label.month_total' => 'Month total',
190 'label.today' => 'I dag',
191 // TODO: translate the following.
192 // 'label.view' => 'View',
193 'label.edit' => 'Endre',
194 'label.delete' => 'Slett',
195 // TODO: translate the following.
196 // 'label.configure' => 'Configure',
197 'label.select_all' => 'Velg alle',
198 'label.select_none' => 'Velg ingen',
199 // TODO: translate the following.
200 // 'label.day_view' => 'Day view',
201 // 'label.week_view' => 'Week view',
202 'label.id' => 'ID',
203 'label.language' => 'Språk',
204 // TODO: translate the following.
205 // 'label.decimal_mark' => 'Decimal mark',
206 'label.date_format' => 'Datoformat',
207 'label.time_format' => 'Tidsformat',
208 'label.week_start' => 'Første ukedag',
209 'label.comment' => 'Kommentar',
210 'label.status' => 'Status',
211 'label.tax' => 'MVA',
212 'label.subtotal' => 'Delsum',
213 // TODO: translate the following.
214 // 'label.total' => 'Total',
215 // 'label.client_name' => 'Client name',
216 // 'label.client_address' => 'Client address',
217 'label.or' => 'eller',
218 // TODO: translate the following.
219 // 'label.error' => 'Error',
220 'label.ldap_hint' => 'Skriv din <b>Windows login</b> og <b>passord</b> i feltene nedenfor.',
221 'label.required_fields' => '* obligatoriske felt',
222 'label.on_behalf' => 'på vegne av',
223 // TODO: translate the following.
224 // 'label.role_manager' => '(manager)',
225 // 'label.role_comanager' => '(co-manager)',
226 // 'label.role_admin' => '(administrator)',
227 // 'label.page' => 'Page',
228 // 'label.condition' => 'Condition',
229 // 'label.yes' => 'yes',
230 // 'label.no' => 'no',
231 // Labels for plugins (extensions to Time Tracker that provide additional features).
232 // TODO: translate the following.
233 // 'label.custom_fields' => 'Custom fields',
234 // 'label.monthly_quotas' => 'Monthly quotas',
235 // 'label.type' => 'Type',
236 // 'label.type_dropdown' => 'dropdown',
237 // 'label.type_text' => 'text',
238 // 'label.required' => 'Required',
239 'label.fav_report' => 'Favoritt rapport',
240 // TODO: translate the following.
241 // 'label.cron_schedule' => 'Cron schedule',
242 // 'label.what_is_it' => 'What is it?',
243 // 'label.expense' => 'Expense',
244 // 'label.quantity' => 'Quantity',
245 // 'label.paid_status' => 'Paid status',
246 // 'label.paid' => 'Paid',
247 // 'label.mark_paid' => 'Mark paid',
248 // 'label.week_note' => 'Week note',
249 // 'label.week_list' => 'Week list',
250
251 // Form titles.
252 'title.login' => 'Innlogging',
253 // TODO: translate the following.
254 // 'title.teams' => 'Teams',
255 // 'title.create_team' => 'Creating Team',
256 // 'title.edit_team' => 'Editing Team',
257 'title.delete_team' => 'Slett team',
258 // TODO: translate the following.
259 // 'title.reset_password' => 'Resetting Password',
260 // 'title.change_password' => 'Changing Password',
261 'title.time' => 'Tid',
262 'title.edit_time_record' => 'Endre tids oppføringen',
263 'title.delete_time_record' => 'Slett tids oppføringen',
264 // TODO: translate the following.
265 // 'title.expenses' => 'Expenses',
266 // 'title.edit_expense' => 'Editing Expense Item',
267 // 'title.delete_expense' => 'Deleting Expense Item',
268 // 'title.predefined_expenses' => 'Predefined Expenses',
269 // 'title.add_predefined_expense' => 'Adding Predefined Expense',
270 // 'title.edit_predefined_expense' => 'Editing Predefined Expense',
271 // 'title.delete_predefined_expense' => 'Deleting Predefined Expense',
272 'title.reports' => 'Rapporter',
273 'title.report' => 'Rapport',
274 // 'title.send_report' => 'Sending Report',
275 'title.invoice' => 'Faktura',
276 // TODO: translate the following.
277 // 'title.send_invoice' => 'Sending Invoice',
278 // 'title.charts' => 'Charts',
279 'title.projects' => 'Prosjekter',
280 'title.add_project' => 'Legg til prosjekt',
281 'title.edit_project' => 'Endre prosjekt',
282 'title.delete_project' => 'Slett prosjekt',
283 // TODO: translate the following.
284 // 'title.tasks' => 'Tasks',
285 // 'title.add_task' => 'Adding Task',
286 // 'title.edit_task' => 'Editing Task',
287 // 'title.delete_task' => 'Deleting Task',
288 'title.users' => 'Brukere',
289 'title.add_user' => 'Legg til bruker',
290 'title.edit_user' => 'Endre bruker',
291 'title.delete_user' => 'Slett bruker',
292 'title.clients' => 'Klienter',
293 'title.add_client' => 'Legg til klient',
294 'title.edit_client' => 'Endre klient',
295 'title.delete_client' => 'Slett klient',
296 'title.invoices' => 'Fakturaer',
297 // TODO: translate the following.
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' => 'Opsjoner',
309 'title.profile' => 'Profil',
310 // TODO: translate the following.
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 'dropdown.all' => '--- alle ---',
327 'dropdown.no' => '--- nei ---',
328 'dropdown.current_day' => 'i dag',
329 'dropdown.previous_day' => 'i går',
330 'dropdown.selected_day' => 'dag',
331 'dropdown.current_week' => 'denne uken',
332 'dropdown.previous_week' => 'forrige uke',
333 'dropdown.selected_week' => 'uke',
334 'dropdown.current_month' => 'denne måneden',
335 'dropdown.previous_month' => 'forrige måned',
336 'dropdown.selected_month' => 'måned',
337 // TODO: translate the following.
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' => 'prosjekter',
343 // TODO: translate the following.
344 // 'dropdown.tasks' => 'tasks',
345 'dropdown.clients' => 'klienter',
346 // TODO: translate the following.
347 // 'dropdown.select' => '--- select ---',
348 // 'dropdown.select_invoice' => '--- select invoice ---',
349 'dropdown.status_active' => 'aktiv',
350 'dropdown.status_inactive' => 'inaktiv',
351 // TODO: translate the following.
352 // 'dropdown.delete' => 'delete',
353 // 'dropdown.do_not_delete' => 'do not delete',
354 // 'dropdown.paid' => 'paid',
355 // 'dropdown.not_paid' => 'not paid',
356
357 // Login form. See example at https://timetracker.anuko.com/login.php.
358 'form.login.forgot_password' => 'Glemt passordet?',
359 'form.login.about' => 'Anuko <a href="https://www.anuko.com/lp/tt_2.htm" target="_blank">Time Tracker</a> er et enkelt, brukervennlig tidsregistreringssystem basert på åpen kildekode.',
360
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' => "Kjære bruker,\n\nNoen, trolig deg, bad om å få ditt Anuko Time Tracker password resatt. Vær vennlig å besøk denne lenken dersom du ønsker at passordet ditt skal resettes.\n\n%s\n\nAnuko Time Tracker er et enkelt og brukervennlig system for tidsregistrering basert på åpen kildekode. Les mer på https://www.anuko.com.\n\n",
366
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.',
370
371 // Time form. See example at https://timetracker.anuko.com/time.php.
372 // TODO: translate the following.
373 'form.time.duration_format' => '(tt:mm eller 0.0h)',
374 'form.time.billable' => 'Fakturerbar',
375 'form.time.uncompleted' => 'Uferdig',
376 // TODO: translate the following.
377 // 'form.time.remaining_quota' => 'Remaining quota',
378 // 'form.time.over_quota' => 'Over quota',
379
380 // Editing Time Record form. See example at https://timetracker.anuko.com/time_edit.php (get there by editing an uncompleted time record).
381 'form.time_edit.uncompleted' => 'Denne oppføringen ble lagret kun med starttid. Det er ikke en feil.',
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' => 'Lagre som favoritt',
389 'form.reports.confirm_delete' => 'Er du sikker på at du vil slette denne favorittrapporten?',
390 'form.reports.include_billable' => 'fakturerbar',
391 'form.reports.include_not_billable' => 'ikke fakturerbar',
392 // TODO: translate the following.
393 // 'form.reports.include_invoiced' => 'invoiced',
394 // 'form.reports.include_not_invoiced' => 'not invoiced',
395 'form.reports.select_period' => 'Velg tidsperiode',
396 'form.reports.set_period' => 'eller sett dato',
397 'form.reports.show_fields' => 'Vis feltene',
398 // 'form.reports.group_by' => 'Group by',
399 // 'form.reports.group_by_no' => '--- no grouping ---',
400 'form.reports.group_by_date' => 'dato',
401 'form.reports.group_by_user' => 'bruker',
402 'form.reports.group_by_client' => 'klient',
403 'form.reports.group_by_project' => 'prosjekt',
404 // TODO: translate the following.
405 // 'form.reports.group_by_task' => 'task',
406 // 'form.reports.totals_only' => 'Totals only',
407
408 // Report form. See example at https://timetracker.anuko.com/report.php
409 // (after generating a report at https://timetracker.anuko.com/reports.php).
410 'form.report.export' => 'Eksporter',
411 // TODO: translate the following.
412 // 'form.report.assign_to_invoice' => 'Assign to invoice',
413
414 // Invoice form. See example at https://timetracker.anuko.com/invoice.php
415 // (you can get to this form after generating a report).
416 'form.invoice.number' => 'Fakturanummer',
417 'form.invoice.person' => 'Person',
418
419 // Deleting Invoice form. See example at https://timetracker.anuko.com/invoice_delete.php
420 // 'form.invoice.invoice_to_delete' => 'Invoice to delete',
421 // 'form.invoice.invoice_entries' => 'Invoice entries',
422 // 'form.invoice.confirm_deleting_entries' => 'Please confirm deleting invoice entries from Time Tracker.',
423
424 // Charts form. See example at https://timetracker.anuko.com/charts.php
425 // TODO: translate the following.
426 // 'form.charts.interval' => 'Interval',
427 // 'form.charts.chart' => 'Chart',
428
429 // Projects form. See example at https://timetracker.anuko.com/projects.php
430 // TODO: translate the following.
431 // 'form.projects.active_projects' => 'Active Projects',
432 // 'form.projects.inactive_projects' => 'Inactive Projects',
433
434 // Tasks form. See example at https://timetracker.anuko.com/tasks.php
435 // TODO: translate the following.
436 // 'form.tasks.active_tasks' => 'Active Tasks',
437 // 'form.tasks.inactive_tasks' => 'Inactive Tasks',
438
439 // Users form. See example at https://timetracker.anuko.com/users.php
440 // TODO: translate the following.
441 // 'form.users.active_users' => 'Active Users',
442 // 'form.users.inactive_users' => 'Inactive Users',
443 // 'form.users.uncompleted_entry' => 'User has an uncompleted time entry',
444 'form.users.role' => 'Rolle',
445 // TODO: translate the following.
446 // 'form.users.manager' => 'Manager',
447 // 'form.users.comanager' => 'Co-manager',
448 // 'form.users.rate' => 'Rate',
449 // 'form.users.default_rate' => 'Default hourly rate',
450
451 // Roles form. See example at https://timetracker.anuko.com/roles.php
452 // TODO: translate the following.
453 // 'form.roles.active_roles' => 'Active Roles',
454 // 'form.roles.inactive_roles' => 'Inactive Roles',
455 // 'form.roles.rights' => 'Rights',
456
457 // Clients form. See example at https://timetracker.anuko.com/clients.php
458 // TODO: translate the following.
459 // 'form.clients.active_clients' => 'Active Clients',
460 // 'form.clients.inactive_clients' => 'Inactive Clients',
461
462 // Deleting Client form. See example at https://timetracker.anuko.com/client_delete.php
463 // TODO: translate the following.
464 // 'form.client.client_to_delete' => 'Client to delete',
465 // 'form.client.client_entries' => 'Client entries',
466
467 // Exporting Team Data form. See example at https://timetracker.anuko.com/export.php
468 'form.export.hint' => 'Du kan eksportere alle team data til en XML fil. Dette kan være nyttig dersom du skal migrere data til din egen server.',
469 'form.export.compression' => 'Komprimering',
470 'form.export.compression_none' => 'ingen',
471 'form.export.compression_bzip' => 'bzip',
472
473 // Importing Team Data form. See example at https://timetracker.anuko.com/imort.php (login as admin first).
474 'form.import.hint' => 'Import team data fra en xml fil.',
475 'form.import.file' => 'Velg fil',
476 'form.import.success' => 'Import gjennomført vellykket.',
477
478 // Teams form. See example at https://timetracker.anuko.com/admin_teams.php (login as admin first).
479 'form.teams.hint' => 'Opprett et nytt team ved å opprette en ny team manager konto.<br>Du kan også importere team data fra en xml fil fra en annen Anuko Time Tracker server (ingen login kollisjoner er tillatt).',
480
481 // Profile form. See example at https://timetracker.anuko.com/profile_edit.php.
482 // TODO: translate the following.
483 // 'form.profile.12_hours' => '12 hours',
484 // 'form.profile.24_hours' => '24 hours',
485 // 'form.profile.show_holidays' => 'Show holidays',
486 // 'form.profile.tracking_mode' => 'Tracking mode',
487 // 'form.profile.mode_time' => 'time',
488 // 'form.profile.mode_projects' => 'projects',
489 // 'form.profile.mode_projects_and_tasks' => 'projects and tasks',
490 // 'form.profile.record_type' => 'Record type',
491 // 'form.profile.type_all' => 'all',
492 // 'form.profile.type_start_finish' => 'start and finish',
493 // 'form.profile.type_duration' => 'duration',
494 // 'form.profile.punch_mode' => 'Punch mode',
495 // 'form.profile.allow_overlap' => 'Allow overlap',
496 // 'form.profile.future_entries' => 'Future entries',
497 // 'form.profile.uncompleted_indicators' => 'Uncompleted indicators',
498 // 'form.profile.plugins' => 'Plugins',
499
500 // Mail form. See example at https://timetracker.anuko.com/report_send.php when emailing a report.
501 'form.mail.from' => 'Fra',
502 'form.mail.to' => 'Til',
503 // TODO: translate the following.
504 // 'form.mail.report_subject' => 'Time Tracker Report',
505 // '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.',
506 // 'form.mail.report_sent' => 'Report sent.',
507 // 'form.mail.invoice_sent' => 'Invoice sent.',
508
509 // Quotas configuration form.
510 // TODO: translate the following.
511 // 'form.quota.year' => 'Year',
512 // 'form.quota.month' => 'Month',
513 // 'form.quota.quota' => 'Quota',
514 // 'form.quota.workday_hours' => 'Hours in work day',
515 // 'form.quota.hint' => 'If values are empty, quotas are calculated automatically based on workday hours and holidays.',
516 );