Work in progress on roles. Implemented role delete.
[timetracker.git] / WEB-INF / resources / cs.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 = 'Česky';
35 $i18n_months = array('Leden', 'Únor', 'Březen', 'Duben', 'Květen', 'Červen', 'Červenec', 'Srpen', 'Září', 'Říjen', 'Listopad', 'Prosinec');
36 $i18n_weekdays = array('Neděle', 'Pondělí', 'Úterý', 'Středa', 'Čtvrtek', 'Pátek', 'Sobota');
37 $i18n_weekdays_short = array('Ne', 'Po', 'Út', 'St', 'Čt', 'Pá', 'So');
38 // format mm/dd
39 $i18n_holidays = array('01/01', '04/13', '05/01', '05/08', '07/05', '07/06', '09/28', '10/28', '11/17', '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' => 'Přihlásit',
46 'menu.logout' => 'Odhlásit',
47 // TODO: translate the following.
48 // 'menu.forum' => 'Forum',
49 'menu.help' => 'Pomoc',
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' => 'Sestavy',
57 // TODO: translate the following.
58 // 'menu.charts' => 'Charts',
59 'menu.projects' => 'Projekty',
60 // TODO: translate the following.
61 // 'menu.tasks' => 'Tasks',
62 'menu.users' => 'Uživatelů',
63 'menu.teams' => 'Týmy',
64 'menu.export' => 'Export',
65 'menu.clients' => 'Zákazníci',
66 // TODO: translate the following.
67 // 'menu.options' => 'Options',
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' => 'Chyba databáze.',
82 'error.field' => 'Nesprávná "{0}" data.',
83 'error.empty' => 'Pole "{0}" je prázdné.',
84 'error.not_equal' => 'Pole "{0}" neodpovídá poli "{1}".',
85 // TODO: translate the following.
86 // 'error.interval' => 'Field "{0}" must be greater than "{1}".',
87 'error.project' => 'Výběr projektu.',
88 // TODO: translate the following.
89 // 'error.task' => 'Select task.',
90 'error.client' => 'Výběr zákazníka.',
91 // TODO: translate the following.
92 // 'error.report' => 'Select report.',
93 // 'error.record' => 'Select record.',
94 'error.auth' => 'Nesprávné jméno nebo heslo.',
95 // TODO: translate the following.
96 // 'error.user_exists' => 'User with this login already exists.',
97 'error.project_exists' => 'Projekt tohoto jména již existuje.',
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' => 'Vaše databáze je prázdná. Přihlašte se jako admin a vytvořte nový tým.',
105 'error.upload' => 'Chyba přenosu souboru.',
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' => 'Přihlásit',
117 'button.now' => 'Teď',
118 'button.save' => 'Uložit',
119 // TODO: translate the following.
120 // 'button.copy' => 'Copy',
121 'button.cancel' => 'Zrušit',
122 'button.submit' => 'Uložit',
123 'button.add' => 'Přidat',
124 'button.generate' => 'Vytvořit',
125 'button.reset_password' => 'Resetovat heslo',
126 'button.send' => 'Poslat',
127 'button.send_by_email' => 'Poslat e-mailem',
128 'button.create_team' => 'Vytvořit tým',
129 'button.export' => 'Exportovat tým',
130 'button.import' => 'Importovat tým',
131 // TODO: translate the following.
132 // 'button.close' => 'Close',
133 // 'button.stop' => 'Stop',
134
135 // Labels for controls on forms. Labels in this section are used on multiple forms.
136 // TODO: translate the following.
137 // 'label.team_name' => 'Team name',
138 // 'label.address' => 'Address',
139 'label.currency' => 'Měna',
140 // TODO: translate the following.
141 // 'label.manager_name' => 'Manager name',
142 // 'label.manager_login' => 'Manager login',
143 // TODO: confirm that Jméno and Název are correct translations.
144 'label.person_name' => 'Jméno',
145 'label.thing_name' => 'Název',
146 // TODO: translate the following.
147 // 'label.login' => 'Login',
148 'label.password' => 'Heslo',
149 'label.confirm_password' => 'Potvrdit heslo',
150 // TODO: translate the following.
151 // 'label.email' => 'Email',
152 'label.cc' => 'Cc',
153 // TODO: translate the following.
154 // 'label.bcc' => 'Bcc',
155 'label.subject' => 'Předmět',
156 'label.date' => 'Datum',
157 'label.start_date' => 'Počáteční datum',
158 'label.end_date' => 'Koncové datum',
159 'label.user' => 'Uživatel',
160 'label.users' => 'Uživatelů',
161 // TODO: translate the following.
162 // 'label.roles' => 'Roles',
163 'label.client' => 'Zákazník',
164 'label.clients' => 'Zákazníci',
165 // TODO: translate the following.
166 // 'label.option' => 'Option',
167 'label.invoice' => 'Faktura',
168 'label.project' => 'Projekt',
169 'label.projects' => 'Projekty',
170 // TODO: translate the following.
171 // 'label.task' => 'Task',
172 // 'label.tasks' => 'Tasks',
173 // 'label.description' => 'Description',
174 'label.start' => 'Začátek',
175 'label.finish' => 'Konec',
176 'label.duration' => 'Trvání',
177 'label.note' => 'Poznámka',
178 'label.notes' => 'Poznámky',
179 // TODO: translate the following.
180 // 'label.item' => 'Item',
181 // 'label.cost' => 'Cost',
182 // 'label.day_total' => 'Day total',
183 'label.week_total' => 'Celkem za týden',
184 // TODO: translate the following.
185 // 'label.month_total' => 'Month total',
186 'label.today' => 'Dnes',
187 // TODO: translate the following.
188 // 'label.view' => 'View',
189 'label.edit' => 'Upravit',
190 'label.delete' => 'Smazat',
191 // TODO: translate the following.
192 // 'label.configure' => 'Configure',
193 'label.select_all' => 'Vybrat všechno',
194 'label.select_none' => 'Zrušit výběr',
195 // TODO: translate the following.
196 // 'label.day_view' => 'Day view',
197 // 'label.week_view' => 'Week view',
198 'label.id' => 'ID',
199 'label.language' => 'Jazyk',
200 // TODO: translate the following.
201 // 'label.decimal_mark' => 'Decimal mark',
202 // 'label.date_format' => 'Date format',
203 // 'label.time_format' => 'Time format',
204 // 'label.week_start' => 'First day of week',
205 'label.comment' => 'Komentář',
206 'label.status' => 'Status',
207 'label.tax' => 'DPH',
208 'label.subtotal' => 'Subtotal', // TODO: is this correct?
209 'label.total' => 'Celkem',
210 // TODO: translate the following.
211 // 'label.client_name' => 'Client name',
212 // 'label.client_address' => 'Client address',
213 'label.or' => 'nebo',
214 // TODO: translate the following.
215 // 'label.error' => 'Error',
216 // 'label.ldap_hint' => 'Type your <b>Windows login</b> and <b>password</b> in the fields below.',
217 'label.required_fields' => '* nutno vyplnit',
218 // TODO: translate the following.
219 // 'label.on_behalf' => 'on behalf of',
220 'label.role_manager' => '(manažer)',
221 'label.role_comanager' => '(spolumanažer)',
222 'label.role_admin' => '(administrator)',
223 // TODO: translate the following.
224 // 'label.page' => 'Page',
225 // 'label.condition' => 'Condition',
226 // 'label.yes' => 'yes',
227 // 'label.no' => 'no',
228 // Labels for plugins (extensions to Time Tracker that provide additional features).
229 // TODO: translate the following.
230 // 'label.custom_fields' => 'Custom fields',
231 // 'label.monthly_quotas' => 'Monthly quotas',
232 // 'label.type' => 'Type',
233 // 'label.type_dropdown' => 'dropdown',
234 // 'label.type_text' => 'text',
235 // 'label.required' => 'Required',
236 'label.fav_report' => 'Oblíbená sestava',
237 // TODO: translate the following.
238 // 'label.cron_schedule' => 'Cron schedule',
239 // 'label.what_is_it' => 'What is it?',
240 // 'label.expense' => 'Expense',
241 'label.quantity' => 'Množství',
242 // TODO: translate the following.
243 // 'label.paid_status' => 'Paid status',
244 // 'label.paid' => 'Paid',
245 // 'label.mark_paid' => 'Mark paid',
246 // 'label.week_note' => 'Week note',
247 // 'label.week_list' => 'Week list',
248
249 // Form titles.
250 // TODO: Improve titles for consistency, so that each title explains correctly what each
251 // page is about and is "consistent" from page to page, meaning that correct grammar is used everywhere.
252 // Compare with English file to see how it is done there and do Czech titles similarly.
253 // Specifically: Vytváření vs Pridat, etc.
254 'title.login' => 'Přihlásit',
255 'title.teams' => 'Týmy',
256 // TODO: translate the following.
257 // 'title.create_team' => 'Creating Team',
258 // 'title.edit_team' => 'Editing Team',
259 'title.delete_team' => 'Smazat tým',
260 'title.reset_password' => 'Resetovat heslo',
261 // TODO: translate the following.
262 // 'title.change_password' => 'Changing Password',
263 // 'title.time' => 'Time',
264 'title.edit_time_record' => 'Upravit časový záznam',
265 'title.delete_time_record' => 'Smazat časový záznam',
266 // TODO: translate the following.
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' => 'Sestavy',
275 // TODO: translate the following.
276 // 'title.report' => 'Report',
277 // 'title.send_report' => 'Sending Report',
278 'title.invoice' => 'Faktura',
279 // TODO: translate the following.
280 // 'title.send_invoice' => 'Sending Invoice',
281 // 'title.charts' => 'Charts',
282 'title.projects' => 'Projekty',
283 'title.add_project' => 'Pridat projekt',
284 'title.edit_project' => 'Upravit projekt',
285 'title.delete_project' => 'Smazat projekt',
286 // TODO: translate the following.
287 // 'title.tasks' => 'Tasks',
288 // 'title.add_task' => 'Adding Task',
289 // 'title.edit_task' => 'Editing Task',
290 // 'title.delete_task' => 'Deleting Task',
291 'title.users' => 'Uživatelů',
292 'title.add_user' => 'Vytváření uživatele', // TODO: Need to be consistent with all titles.
293 // TODO: translate the following.
294 // 'title.edit_user' => 'Editing User',
295 'title.delete_user' => 'Smazat uživatele',
296 // TODO: translate the following.
297 // 'title.roles' => 'Roles',
298 // 'title.add_role' => 'Adding Role',
299 // 'title.edit_role' => 'Editing Role',
300 // 'title.delete_role' => 'Deleting Role',
301 'title.clients' => 'Zákazníci',
302 'title.add_client' => 'Přidat zákazníka',
303 'title.edit_client' => 'Upravit zákazníka',
304 'title.delete_client' => 'Smazat zákazníka',
305 'title.invoices' => 'Faktury',
306 // TODO: translate the following.
307 // 'title.add_invoice' => 'Adding Invoice',
308 // 'title.view_invoice' => 'Viewing Invoice',
309 // 'title.delete_invoice' => 'Deleting Invoice',
310 // 'title.notifications' => 'Notifications',
311 // 'title.add_notification' => 'Adding Notification',
312 // 'title.edit_notification' => 'Editing Notification',
313 // 'title.delete_notification' => 'Deleting Notification',
314 // 'title.monthly_quotas' => 'Monthly Quotas',
315 // 'title.export' => 'Exporting Team Data',
316 // 'title.import' => 'Importing Team Data',
317 // 'title.options' => 'Options',
318 'title.profile' => 'Profil',
319 // TODO: translate the following.
320 // 'title.cf_custom_fields' => 'Custom Fields',
321 // 'title.cf_add_custom_field' => 'Adding Custom Field',
322 // 'title.cf_edit_custom_field' => 'Editing Custom Field',
323 // 'title.cf_delete_custom_field' => 'Deleting Custom Field',
324 // 'title.cf_dropdown_options' => 'Dropdown Options',
325 // 'title.cf_add_dropdown_option' => 'Adding Option',
326 // 'title.cf_edit_dropdown_option' => 'Editing Option',
327 // 'title.cf_delete_dropdown_option' => 'Deleting Option',
328 // NOTE TO TRANSLATORS: Locking is a feature to lock records from modifications (ex: weekly on Mondays we lock all previous weeks).
329 // It is also a name for the Locking plugin on the Team profile page.
330 // 'title.locking' => 'Locking',
331 // 'title.week_view' => 'Week View',
332
333 // Section for common strings inside combo boxes on forms. Strings shared between forms shall be placed here.
334 // Strings that are used in a single form must go to the specific form section.
335 'dropdown.all' => '--- vše ---',
336 'dropdown.no' => '--- nic ---',
337 'dropdown.current_day' => 'dnes',
338 'dropdown.previous_day' => 'včera',
339 'dropdown.selected_day' => 'den',
340 'dropdown.current_week' => 'tento týden',
341 'dropdown.previous_week' => 'minulý týden',
342 'dropdown.selected_week' => 'týden',
343 'dropdown.current_month' => 'tento měsíc',
344 'dropdown.previous_month' => 'minulý měsíc',
345 'dropdown.selected_month' => 'měsíc',
346 'dropdown.current_year' => 'tento rok',
347 'dropdown.previous_year' => 'minulý rok',
348 'dropdown.selected_year' => 'rok',
349 'dropdown.all_time' => 'od počátku',
350 'dropdown.projects' => 'projekty',
351 // TODO: translate the following.
352 // 'dropdown.tasks' => 'tasks',
353 'dropdown.clients' => 'zákazníci',
354 // TODO: translate the following.
355 // 'dropdown.select' => '--- select ---',
356 // 'dropdown.select_invoice' => '--- select invoice ---',
357 // 'dropdown.status_active' => 'active',
358 // 'dropdown.status_inactive' => 'inactive',
359 // 'dropdown.delete' => 'delete',
360 // 'dropdown.do_not_delete' => 'do not delete',
361 // 'dropdown.paid' => 'paid',
362 // 'dropdown.not_paid' => 'not paid',
363
364 // Login form. See example at https://timetracker.anuko.com/login.php.
365 'form.login.forgot_password' => 'Zapomenuté heslo?',
366 // TODO: translate the following.
367 // '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.',
368
369 // Resetting Password form. See example at https://timetracker.anuko.com/password_reset.php.
370 'form.reset_password.message' => 'Zaslán požadavek k vymazání hesla.', // TODO: add "by email" to match the English string.
371 'form.reset_password.email_subject' => 'Anuko Time Tracker požadavek na vymazání hesla',
372 // TODO: translate the following.
373 // '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",
374
375 // Changing Password form. See example at https://timetracker.anuko.com/password_change.php?ref=1.
376 // TODO: translate the following.
377 // 'form.change_password.tip' => 'Type new password and click on Save.',
378
379 // Time form. See example at https://timetracker.anuko.com/time.php.
380 // TODO: translate the following.
381 // 'form.time.duration_format' => '(hh:mm or 0.0h)',
382 'form.time.billable' => 'K fakturaci',
383 // 'form.time.uncompleted' => 'Uncompleted',
384 // 'form.time.remaining_quota' => 'Remaining quota',
385 // 'form.time.over_quota' => 'Over quota',
386
387 // Editing Time Record form. See example at https://timetracker.anuko.com/time_edit.php (get there by editing an uncompleted time record).
388 'form.time_edit.uncompleted' => 'Záznam byl uložen pouze s časem zahájení. Není to chyba.',
389
390 // Week view form. See example at https://timetracker.anuko.com/week.php.
391 // TODO: translate the following.
392 // 'form.week.new_entry' => 'New entry',
393
394 // Reports form. See example at https://timetracker.anuko.com/reports.php
395 // TODO: translate the following.
396 // 'form.reports.save_as_favorite' => 'Save as favorite',
397 'form.reports.confirm_delete' => 'Opravdu chceš vymazat tuto položku z oblíbených?',
398 'form.reports.include_billable' => 'k fakturaci',
399 'form.reports.include_not_billable' => 'mimo fakturaci',
400 // TODO: translate the following.
401 // 'form.reports.include_invoiced' => 'invoiced',
402 // 'form.reports.include_not_invoiced' => 'not invoiced',
403 'form.reports.select_period' => 'Výberte období',
404 'form.reports.set_period' => 'nebo určete dny',
405 'form.reports.show_fields' => 'Zobrazit pole',
406 'form.reports.group_by' => 'Seskupit podle',
407 // TODO: translate the following.
408 // 'form.reports.group_by_no' => '--- no grouping ---',
409 'form.reports.group_by_date' => 'datum',
410 'form.reports.group_by_user' => 'uživatel',
411 'form.reports.group_by_client' => 'zákazník',
412 'form.reports.group_by_project' => 'projekt',
413 // TODO: translate the following.
414 // 'form.reports.group_by_task' => 'task',
415 'form.reports.totals_only' => 'Pouze součty',
416
417 // Report form. See example at https://timetracker.anuko.com/report.php
418 // (after generating a report at https://timetracker.anuko.com/reports.php).
419 'form.report.export' => 'Exportovat',
420 // TODO: translate the following.
421 // 'form.report.assign_to_invoice' => 'Assign to invoice',
422
423 // Invoice form. See example at https://timetracker.anuko.com/invoice.php
424 // (you can get to this form after generating a report).
425 'form.invoice.number' => 'Faktura číslo',
426 'form.invoice.person' => 'Osoba',
427
428 // Deleting Invoice form. See example at https://timetracker.anuko.com/invoice_delete.php
429 // TODO: translate the following.
430 // 'form.invoice.invoice_to_delete' => 'Invoice to delete',
431 // 'form.invoice.invoice_entries' => 'Invoice entries',
432 // 'form.invoice.confirm_deleting_entries' => 'Please confirm deleting invoice entries from Time Tracker.',
433
434 // Charts form. See example at https://timetracker.anuko.com/charts.php
435 // TODO: translate the following.
436 // 'form.charts.interval' => 'Interval',
437 // 'form.charts.chart' => 'Chart',
438
439 // Projects form. See example at https://timetracker.anuko.com/projects.php
440 // TODO: translate the following.
441 // 'form.projects.active_projects' => 'Active Projects',
442 // 'form.projects.inactive_projects' => 'Inactive Projects',
443
444 // Tasks form. See example at https://timetracker.anuko.com/tasks.php
445 // TODO: translate the following.
446 // 'form.tasks.active_tasks' => 'Active Tasks',
447 // 'form.tasks.inactive_tasks' => 'Inactive Tasks',
448
449 // Users form. See example at https://timetracker.anuko.com/users.php
450 // TODO: translate the following.
451 // 'form.users.active_users' => 'Active Users',
452 // 'form.users.inactive_users' => 'Inactive Users',
453 // 'form.users.uncompleted_entry' => 'User has an uncompleted time entry',
454 'form.users.role' => 'Role',
455 'form.users.manager' => 'Manažer',
456 'form.users.comanager' => 'Spolumanažer',
457 'form.users.rate' => 'Sazba',
458 // TODO: translate the following.
459 // 'form.users.default_rate' => 'Default hourly rate',
460
461 // Roles form. See example at https://timetracker.anuko.com/roles.php
462 // TODO: translate the following.
463 // 'form.roles.active_roles' => 'Active Roles',
464 // 'form.roles.inactive_roles' => 'Inactive Roles',
465 // 'form.roles.rights' => 'Rights',
466
467 // Clients form. See example at https://timetracker.anuko.com/clients.php
468 // TODO: translate the following.
469 // 'form.clients.active_clients' => 'Active Clients',
470 // 'form.clients.inactive_clients' => 'Inactive Clients',
471
472 // Deleting Client form. See example at https://timetracker.anuko.com/client_delete.php
473 // TODO: translate the following.
474 // 'form.client.client_to_delete' => 'Client to delete',
475 // 'form.client.client_entries' => 'Client entries',
476
477 // Exporting Team Data form. See example at https://timetracker.anuko.com/export.php
478 'form.export.hint' => 'Můžete exportova týmová data do xml souboru. Může se to hodit pro přesun na jiný server.',
479 'form.export.compression' => 'Komprese',
480 // TODO: translate the following.
481 // 'form.export.compression_none' => 'none',
482 'form.export.compression_bzip' => 'bzip',
483
484 // Importing Team Data form. See example at https://timetracker.anuko.com/imort.php (login as admin first).
485 'form.import.hint' => 'Importovat týmová data z xml souboru.',
486 'form.import.file' => 'Výběr souboru',
487 'form.import.success' => 'Import byl úspěšně dokončen.',
488
489 // Teams form. See example at https://timetracker.anuko.com/admin_teams.php (login as admin first).
490 // TODO: translate the following. This part is not translated accurately from English:
491 // "Vytvořit nový tým prostřednictvím účtu týmového manažera." Improve and check the entire string for accuracy.
492 'form.teams.hint' => 'Vytvořit nový tým prostřednictvím účtu týmového manažera.<br>Můžete také importovat týmová data z xml souboru z jiného time tracker serveru (nejsou povoleny shody login).',
493
494 // Profile form. See example at https://timetracker.anuko.com/profile_edit.php.
495 // TODO: translate the following.
496 // 'form.profile.12_hours' => '12 hours',
497 // 'form.profile.24_hours' => '24 hours',
498 // 'form.profile.show_holidays' => 'Show holidays',
499 // 'form.profile.tracking_mode' => 'Tracking mode',
500 // 'form.profile.mode_time' => 'time',
501 // 'form.profile.mode_projects' => 'projects',
502 // 'form.profile.mode_projects_and_tasks' => 'projects and tasks',
503 // 'form.profile.record_type' => 'Record type',
504 // 'form.profile.type_all' => 'all',
505 // 'form.profile.type_start_finish' => 'start and finish',
506 // 'form.profile.type_duration' => 'duration',
507 // 'form.profile.punch_mode' => 'Punch mode',
508 // 'form.profile.allow_overlap' => 'Allow overlap',
509 // 'form.profile.future_entries' => 'Future entries',
510 // 'form.profile.uncompleted_indicators' => 'Uncompleted indicators',
511 // 'form.profile.plugins' => 'Plugins',
512
513 // Mail form. See example at https://timetracker.anuko.com/report_send.php when emailing a report.
514 'form.mail.from' => 'Od',
515 'form.mail.to' => 'Komu',
516 // TODO: translate the following.
517 // 'form.mail.report_subject' => 'Time Tracker Report',
518 // '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.',
519 // 'form.mail.report_sent' => 'Report sent.',
520 'form.mail.invoice_sent' => 'Faktura odeslána.',
521
522 // Quotas configuration form.
523 // TODO: translate the following.
524 // 'form.quota.year' => 'Year',
525 // 'form.quota.month' => 'Month',
526 // 'form.quota.quota' => 'Quota',
527 // 'form.quota.workday_hours' => 'Hours in work day',
528 // 'form.quota.hint' => 'If values are empty, quotas are calculated automatically based on workday hours and holidays.',
529
530 // Roles and rights. These strings are used in multiple places. Grouped here to provide consistent translations.
531 // TODO: translate the following.
532 // 'role.user.label' => 'User',
533 // 'role.user.low_case_label' => 'user',
534 // 'role.user.description' => 'A regular member without management rights.',
535 // 'role.client.label' => 'Client',
536 // 'role.client.low_case_label' => 'client',
537 // 'role.client.description' => 'A client can view its own reports, charts, and invoices.',
538 // 'role.supervisor.label' => 'Supervisor',
539 // 'role.supervisor.low_case_label' => 'supervisor',
540 // 'role.supervisor.description' => 'A person with a small set of management rights.',
541 // 'role.comanager.label' => 'Co-manager',
542 // 'role.comanager.low_case_label' => 'co-manager',
543 // 'role.comanager.description' => 'A person with a big set of management functions.',
544 // 'role.manager.label' => 'Manager',
545 // 'role.manager.low_case_label' => 'manager',
546 // 'role.manager.description' => 'Group manager. Can do most of things for a group.',
547 // 'role.top_manager.label' => 'Top manager',
548 // 'role.top_manager.low_case_label' => 'top manager',
549 // 'role.top_manager.description' => 'Top group manager. Can do everything in a tree of groups.',
550 // 'role.admin.label' => 'Administrator',
551 // 'role.admin.low_case_label' => 'administrator',
552 // 'role.admin.description' => 'Site adminsitrator.',
553 );