Some minor recycling in translations.
[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' => 'Your database is empty. Login as admin and create a new team.',
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_user' => 'Přidat uživatele',
124 'button.add_project' => 'Přidat projekt',
125 // TODO: translate the following.
126 // 'button.add_task' => 'Add task',
127 'button.add_client' => 'Přidat zákazníka',
128 // TODO: translate the following.
129 // 'button.add_invoice' => 'Add invoice',
130 // 'button.add_option' => 'Add option',
131 'button.add' => 'Přidat',
132 'button.generate' => 'Vytvořit',
133 'button.reset_password' => 'Resetovat heslo',
134 'button.send' => 'Poslat',
135 'button.send_by_email' => 'Poslat e-mailem',
136 'button.create_team' => 'Vytvořit tým',
137 'button.export' => 'Exportovat tým',
138 'button.import' => 'Importovat tým',
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' => 'Měna',
148 // TODO: translate the following.
149 // 'label.manager_name' => 'Manager name',
150 // 'label.manager_login' => 'Manager login',
151 // TODO: confirm that Jméno and Název are correct translations.
152 'label.person_name' => 'Jméno',
153 'label.thing_name' => 'Název',
154 // TODO: translate the following.
155 // 'label.login' => 'Login',
156 'label.password' => 'Heslo',
157 'label.confirm_password' => 'Potvrdit heslo',
158 // TODO: translate the following.
159 // 'label.email' => 'Email',
160 'label.cc' => 'Cc',
161 // TODO: translate the following.
162 // 'label.bcc' => 'Bcc',
163 'label.subject' => 'Předmět',
164 'label.date' => 'Datum',
165 'label.start_date' => 'Počáteční datum',
166 'label.end_date' => 'Koncové datum',
167 'label.user' => 'Uživatel',
168 'label.users' => 'Uživatelů',
169 'label.client' => 'Zákazník',
170 'label.clients' => 'Zákazníci',
171 // TODO: translate the following.
172 // 'label.option' => 'Option',
173 'label.invoice' => 'Faktura',
174 'label.project' => 'Projekt',
175 'label.projects' => 'Projekty',
176 // TODO: translate the following.
177 // 'label.task' => 'Task',
178 // 'label.tasks' => 'Tasks',
179 // 'label.description' => 'Description',
180 'label.start' => 'Začátek',
181 'label.finish' => 'Konec',
182 'label.duration' => 'Trvání',
183 'label.note' => 'Poznámka',
184 'label.notes' => 'Poznámky',
185 // TODO: translate the following.
186 // 'label.item' => 'Item',
187 // 'label.cost' => 'Cost',
188 // 'label.day_total' => 'Day total',
189 'label.week_total' => 'Celkem za týden',
190 // TODO: translate the following.
191 // 'label.month_total' => 'Month total',
192 'label.today' => 'Dnes',
193 // TODO: translate the following.
194 // 'label.total_hours' => 'Total hours',
195 // 'label.total_cost' => 'Total cost',
196 // 'label.view' => 'View',
197 'label.edit' => 'Upravit',
198 'label.delete' => 'Smazat',
199 // TODO: translate the following.
200 // 'label.configure' => 'Configure',
201 'label.select_all' => 'Vybrat všechno',
202 'label.select_none' => 'Zrušit výběr',
203 // TODO: translate the following.
204 // 'label.day_view' => 'Day view',
205 // 'label.week_view' => 'Week view',
206 // 'label.id' => 'ID',
207 'label.language' => 'Jazyk',
208 // TODO: translate the following.
209 // 'label.decimal_mark' => 'Decimal mark',
210 // 'label.date_format' => 'Date format',
211 // 'label.time_format' => 'Time format',
212 // 'label.week_start' => 'First day of week',
213 'label.comment' => 'Komentář',
214 'label.status' => 'Status',
215 'label.tax' => 'DPH',
216 // TODO: translate the following.
217 // 'label.subtotal' => 'Subtotal',
218 'label.total' => 'Celkem',
219 // TODO: translate the following.
220 // 'label.client_name' => 'Client name',
221 // 'label.client_address' => 'Client address',
222 'label.or' => 'nebo',
223 // TODO: translate the following.
224 // 'label.error' => 'Error',
225 // 'label.ldap_hint' => 'Type your <b>Windows login</b> and <b>password</b> in the fields below.',
226 'label.required_fields' => '* nutno vyplnit',
227 // TODO: translate the following.
228 // 'label.on_behalf' => 'on behalf of',
229 'label.role_manager' => '(manažer)',
230 'label.role_comanager' => '(co-manažer)',
231 'label.role_admin' => '(administrator)',
232 // TODO: translate the following.
233 // 'label.page' => 'Page',
234 // 'label.condition' => 'Condition',
235 // 'label.yes' => 'yes',
236 // 'label.no' => 'no',
237 // Labels for plugins (extensions to Time Tracker that provide additional features).
238 // TODO: translate the following.
239 // 'label.custom_fields' => 'Custom fields',
240 // 'label.monthly_quotas' => 'Monthly quotas',
241 // 'label.type' => 'Type',
242 // 'label.type_dropdown' => 'dropdown',
243 // 'label.type_text' => 'text',
244 // 'label.required' => 'Required',
245 'label.fav_report' => 'Oblíbená sestava',
246 // TODO: translate the following.
247 // 'label.cron_schedule' => 'Cron schedule',
248 // 'label.what_is_it' => 'What is it?',
249 // 'label.expense' => 'Expense',
250 // 'label.quantity' => 'Quantity',
251 // 'label.paid_status' => 'Paid status',
252 // 'label.paid' => 'Paid',
253 // 'label.mark_paid' => 'Mark paid',
254 // 'label.week_note' => 'Week note',
255 // 'label.week_list' => 'Week list',
256
257 // Form titles.
258 'title.login' => 'Přihlásit',
259 // TODO: translate the following.
260 // 'title.teams' => 'Teams',
261 // 'title.create_team' => 'Creating Team',
262 // 'title.edit_team' => 'Editing Team',
263 // 'title.delete_team' => 'Deleting Team',
264 'title.reset_password' => 'Resetovat heslo',
265 // TODO: translate the following.
266 // 'title.change_password' => 'Changing Password',
267 // 'title.time' => 'Time',
268 'title.edit_time_record' => 'Upravit časový záznam',
269 'title.delete_time_record' => 'Smazat časový záznam',
270 // TODO: translate the following.
271 // 'title.expenses' => 'Expenses',
272 // 'title.edit_expense' => 'Editing Expense Item',
273 // 'title.delete_expense' => 'Deleting Expense Item',
274 // 'title.predefined_expenses' => 'Predefined Expenses',
275 // 'title.add_predefined_expense' => 'Adding Predefined Expense',
276 // 'title.edit_predefined_expense' => 'Editing Predefined Expense',
277 // 'title.delete_predefined_expense' => 'Deleting Predefined Expense',
278 'title.reports' => 'Sestavy',
279 // TODO: translate the following.
280 // 'title.report' => 'Report',
281 // 'title.send_report' => 'Sending Report',
282 'title.invoice' => 'Faktura',
283 // TODO: translate the following.
284 // 'title.send_invoice' => 'Sending Invoice',
285 // 'title.charts' => 'Charts',
286 'title.projects' => 'Projekty',
287 'title.add_project' => 'Pridat projekt',
288 'title.edit_project' => 'Upravit projekt',
289 'title.delete_project' => 'Smazat projekt',
290 // TODO: translate the following.
291 // 'title.tasks' => 'Tasks',
292 // 'title.add_task' => 'Adding Task',
293 // 'title.edit_task' => 'Editing Task',
294 // 'title.delete_task' => 'Deleting Task',
295 'title.users' => 'Uživatelů',
296 // TODO: translate the following.
297 // 'title.add_user' => 'Adding User',
298 // 'title.edit_user' => 'Editing User',
299 // 'title.delete_user' => 'Deleting User',
300 'title.clients' => 'Zákazníci',
301 'title.add_client' => 'Přidat zákazníka',
302 'title.edit_client' => 'Upravit zákazníka',
303 'title.delete_client' => 'Smazat zákazníka',
304 'title.invoices' => 'Faktury',
305 // TODO: translate the following.
306 // 'title.add_invoice' => 'Adding Invoice',
307 // 'title.view_invoice' => 'Viewing Invoice',
308 // 'title.delete_invoice' => 'Deleting Invoice',
309 // 'title.notifications' => 'Notifications',
310 // 'title.add_notification' => 'Adding Notification',
311 // 'title.edit_notification' => 'Editing Notification',
312 // 'title.delete_notification' => 'Deleting Notification',
313 // 'title.monthly_quotas' => 'Monthly Quotas',
314 // 'title.export' => 'Exporting Team Data',
315 // 'title.import' => 'Importing Team Data',
316 // 'title.options' => 'Options',
317 'title.profile' => 'Profil',
318 // TODO: translate the following.
319 // 'title.cf_custom_fields' => 'Custom Fields',
320 // 'title.cf_add_custom_field' => 'Adding Custom Field',
321 // 'title.cf_edit_custom_field' => 'Editing Custom Field',
322 // 'title.cf_delete_custom_field' => 'Deleting Custom Field',
323 // 'title.cf_dropdown_options' => 'Dropdown Options',
324 // 'title.cf_add_dropdown_option' => 'Adding Option',
325 // 'title.cf_edit_dropdown_option' => 'Editing Option',
326 // 'title.cf_delete_dropdown_option' => 'Deleting Option',
327 // NOTE TO TRANSLATORS: Locking is a feature to lock records from modifications (ex: weekly on Mondays we lock all previous weeks).
328 // It is also a name for the Locking plugin on the Team profile page.
329 // 'title.locking' => 'Locking',
330 // 'title.week_view' => 'Week View',
331
332 // Section for common strings inside combo boxes on forms. Strings shared between forms shall be placed here.
333 // Strings that are used in a single form must go to the specific form section.
334 'dropdown.all' => '--- vše ---',
335 'dropdown.no' => '--- nic ---',
336 'dropdown.current_day' => 'dnes',
337 'dropdown.previous_day' => 'včera',
338 'dropdown.selected_day' => 'den',
339 'dropdown.current_week' => 'tento týden',
340 'dropdown.previous_week' => 'minulý týden',
341 'dropdown.selected_week' => 'týden',
342 'dropdown.current_month' => 'tento měsíc',
343 'dropdown.previous_month' => 'minulý měsíc',
344 'dropdown.selected_month' => 'měsíc',
345 'dropdown.current_year' => 'tento rok',
346 'dropdown.previous_year' => 'minulý rok',
347 'dropdown.selected_year' => 'rok',
348 'dropdown.all_time' => 'od počátku',
349 'dropdown.projects' => 'projekty',
350 // TODO: translate the following.
351 // 'dropdown.tasks' => 'tasks',
352 'dropdown.clients' => 'zákazníci',
353 // TODO: translate the following.
354 // 'dropdown.select' => '--- select ---',
355 // 'dropdown.select_invoice' => '--- select invoice ---',
356 // 'dropdown.status_active' => 'active',
357 // 'dropdown.status_inactive' => 'inactive',
358 // 'dropdown.delete'=>'delete',
359 // 'dropdown.do_not_delete'=>'do not delete',
360 // 'dropdown.paid' => 'paid',
361 // 'dropdown.not_paid' => 'not paid',
362
363 // Login form. See example at https://timetracker.anuko.com/login.php.
364 'form.login.forgot_password' => 'Zapomenuté heslo?',
365 // TODO: translate the following.
366 // '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.',
367
368 // Resetting Password form. See example at https://timetracker.anuko.com/password_reset.php.
369 'form.reset_password.message' => 'Zaslán požadavek k vymazání hesla.', // TODO: add "by email" to match the English string.
370 'form.reset_password.email_subject' => 'Anuko Time Tracker požadavek na vymazání hesla',
371 // TODO: translate the following.
372 // '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",
373
374 // Changing Password form. See example at https://timetracker.anuko.com/password_change.php?ref=1.
375 // TODO: translate the following.
376 // 'form.change_password.tip' => 'Type new password and click on Save.',
377
378 // Time form. See example at https://timetracker.anuko.com/time.php.
379 // TODO: translate the following.
380 // 'form.time.duration_format' => '(hh:mm or 0.0h)',
381 'form.time.billable' => 'K fakturaci',
382 // 'form.time.uncompleted' => 'Uncompleted',
383 // 'form.time.remaining_quota' => 'Remaining quota',
384 // 'form.time.over_quota' => 'Over quota',
385
386 // Editing Time Record form. See example at https://timetracker.anuko.com/time_edit.php (get there by editing an uncompleted time record).
387 // TODO: translate the following.
388 // 'form.time_edit.uncompleted' => 'This record was saved with only start time. It is not an error.',
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 // TODO: translate the following.
420 // 'form.report.export' => 'Export',
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 // TODO: translate the following.
426 // 'form.invoice.number' => 'Invoice number',
427 // 'form.invoice.person' => 'Person',
428 // 'form.invoice.invoice_to_delete' => 'Invoice to delete',
429 // 'form.invoice.invoice_entries' => 'Invoice entries',
430 // 'form.invoice.confirm_deleting_entries' => 'Please confirm deleting invoice entries from Time Tracker.',
431
432 // Charts form. See example at https://timetracker.anuko.com/charts.php
433 // TODO: translate the following.
434 // 'form.charts.interval' => 'Interval',
435 // 'form.charts.chart' => 'Chart',
436
437 // Projects form. See example at https://timetracker.anuko.com/projects.php
438 // TODO: translate the following.
439 // 'form.projects.active_projects' => 'Active Projects',
440 // 'form.projects.inactive_projects' => 'Inactive Projects',
441
442 // Tasks form. See example at https://timetracker.anuko.com/tasks.php
443 // TODO: translate the following.
444 // 'form.tasks.active_tasks' => 'Active Tasks',
445 // 'form.tasks.inactive_tasks' => 'Inactive Tasks',
446
447 // Users form. See example at https://timetracker.anuko.com/users.php
448 // TODO: translate the following.
449 // 'form.users.active_users' => 'Active Users',
450 // 'form.users.inactive_users' => 'Inactive Users',
451 // 'form.users.uncompleted_entry' => 'User has an uncompleted time entry',
452 // 'form.users.role' => 'Role',
453 // 'form.users.manager' => 'Manager',
454 // 'form.users.comanager' => 'Co-manager',
455 // 'form.users.rate' => 'Rate',
456 // 'form.users.default_rate' => 'Default hourly rate',
457
458 // Clients form. See example at https://timetracker.anuko.com/clients.php
459 // TODO: translate the following.
460 // 'form.clients.active_clients' => 'Active Clients',
461 // 'form.clients.inactive_clients' => 'Inactive Clients',
462
463 // Deleting Client form. See example at https://timetracker.anuko.com/client_delete.php
464 // TODO: translate the following.
465 // 'form.client.client_to_delete' => 'Client to delete',
466 // 'form.client.client_entries' => 'Client entries',
467
468 // Exporting Team Data form. See example at https://timetracker.anuko.com/export.php
469 // TODO: translate the following.
470 // '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.',
471 // 'form.export.compression' => 'Compression',
472 // 'form.export.compression_none' => 'none',
473 // 'form.export.compression_bzip' => 'bzip',
474
475 // Importing Team Data form. See example at https://timetracker.anuko.com/imort.php (login as admin first).
476 // TODO: translate the following.
477 // 'form.import.hint' => 'Import team data from an xml file.',
478 // 'form.import.file' => 'Select file',
479 // 'form.import.success' => 'Import completed successfully.',
480
481 // Teams form. See example at https://timetracker.anuko.com/admin_teams.php (login as admin first).
482 // TODO: translate the following. This part is not translated accurately from English:
483 // "Vytvořit nový tým prostřednictvím účtu týmového manažera." Improve and check the entire string for accuracy.
484 '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).',
485
486
487
488 // TODO: refactoring ongoing down from here.
489
490 "form.admin.profile.title" => 'týmy',
491 "form.admin.profile.noprofiles" => 'vaše databáze je prázdná. přihlašte se jako admin a vytvořte nový tým.',
492 "form.admin.profile.comment" => 'smazat tým',
493 "form.admin.profile.th.id" => 'id',
494 "form.admin.profile.th.active" => 'aktovní',
495
496 // my time form attributes
497 "form.mytime.total" => 'součet hodin: ',
498 "form.mytime.del_yes" => 'časový záznam úspěšně odstraněn',
499 "form.mytime.no_finished_rec" => 'záznam byl uložen pouze s časem zahájení. není to chyba. můžete se odhlásit, potřebujete-li.',
500 "form.mytime.warn_tozero_rec" => 'tento záznam musí být smazán, neboť období je uzamčeno',
501
502 // profile form attributes
503 // Note to translators: we need a more accurate translation of form.profile.create_title
504 "form.profile.create_title" => 'vytvořit nový manažerský účet',
505 "form.profile.edit_title" => 'upravit profil',
506
507 "form.profile.showchart" => 'zobrazuj grafy',
508
509 // people form attributes
510 "form.people.ppl_str" => 'pracovnící',
511 "form.people.createu_str" => 'vytváření nového uživatele',
512 "form.people.edit_str" => 'nastavení uživatele',
513 "form.people.del_str" => 'smazat uživatele',
514 "form.people.th.role" => 'role',
515 "form.people.th.rate" => 'sazba',
516 "form.people.manager" => 'manažer',
517 "form.people.comanager" => 'spolumanažer',
518
519 "form.people.rate" => 'hodinová sazba',
520 "form.people.comanager" => 'spolumanažer',
521
522 // report attributes
523 "form.report.totals_only" => 'pouze součty',
524 "form.report.total" => 'součty hodin',
525
526 // mail form attributes
527 "form.mail.from" => 'od',
528 "form.mail.to" => 'komu',
529 "form.mail.above" => 'poslat sestavu e-mailem',
530 // Note to translators: this string needs to be translated.
531 // "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.',
532 "form.mail.sending_str" => '<b>zpráva odeslána</b>',
533
534 // invoice attributes
535 "form.invoice.title" => 'faktura',
536 "form.invoice.caption" => 'faktura',
537 "form.invoice.above" => 'fakturační informace',
538 "form.invoice.select_cust" => 'výběr firmy',
539 "form.invoice.fillform" => 'vyplňte pole',
540 "form.invoice.number" => 'faktura číslo',
541 "form.invoice.th.username" => 'osoba',
542 "form.invoice.th.time" => 'hodin',
543 "form.invoice.th.rate" => 'sazba',
544 "form.invoice.th.summ" => 'množství',
545 "form.invoice.subtotal" => 'subtotal',
546 "form.invoice.mailinv_above" => 'poslat fakturu e-mailem',
547 "form.invoice.sending_str" => '<b>faktura odeslána</b>',
548
549 "form.migration.zip" => 'komprese',
550 "form.migration.file" => 'výběr souboru',
551 "form.migration.import.title" => 'importovat data',
552 "form.migration.import.success" => 'import byl úspěšně dokončen',
553 "form.migration.import.text" => 'importovat týmová data z xml souboru',
554 "form.migration.export.title" => 'exportovat data',
555 "form.migration.export.success" => 'export byl úspěšně dokončen',
556 "form.migration.export.text" => 'můžete exportova týmová data do xml souboru. může se to hodit pro přesun na jiný server.',
557 // Note to translators: the string below is missing in the translation and must be added
558 // "form.migration.compression.none" => 'none',
559 "form.migration.compression.gzip" => 'gzip',
560 "form.migration.compression.bzip" => 'bzip',
561
562 // miscellaneous strings
563 "forward.tocsvfile" => 'exportovat data do .csv souboru',
564 "forward.toxmlfile" => 'exportovat data do .xml souboru',
565 "forward.geninvoice" => 'vytvořit fakturu',
566 );