A bit more cleanup.
[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' => 'Users',
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' => 'Select client.',
91 // 'error.report' => 'Select report.',
92 // 'error.record' => 'Select record.',
93 'error.auth' => 'Nesprávné jméno nebo heslo.',
94 // TODO: translate the following.
95 // 'error.user_exists' => 'User with this login already exists.',
96 'error.project_exists' => 'Projekt tohoto jména již existuje.',
97 // TODO: translate the following.
98 // 'error.task_exists' => 'Task with this name already exists.',
99 // 'error.client_exists' => 'Client with this name already exists.',
100 // 'error.invoice_exists' => 'Invoice with this number already exists.',
101 // 'error.no_invoiceable_items' => 'There are no invoiceable items.',
102 // 'error.no_login' => 'No user with this login.',
103 // 'error.no_teams' => 'Your database is empty. Login as admin and create a new team.',
104 'error.upload' => 'Chyba přenosu souboru.',
105 // TODO: translate the following.
106 // 'error.range_locked' => 'Date range is locked.',
107 // 'error.mail_send' => 'Error sending mail.',
108 // 'error.no_email' => 'No email associated with this login.',
109 // 'error.uncompleted_exists' => 'Uncompleted entry already exists. Close or delete it.',
110 // 'error.goto_uncompleted' => 'Go to uncompleted entry.',
111 // 'error.overlap' => 'Time interval overlaps with existing records.',
112 // 'error.future_date' => 'Date is in future.',
113
114 // Labels for buttons.
115 'button.login' => 'Přihlásit',
116 'button.now' => 'Teď',
117 'button.save' => 'Uložit',
118 // TODO: translate the following.
119 // 'button.copy' => 'Copy',
120 'button.cancel' => 'Zrušit',
121 'button.submit' => 'Uložit',
122 'button.add_user' => 'Přidat uživatele',
123 'button.add_project' => 'Přidat projekt',
124 // TODO: translate the following.
125 // 'button.add_task' => 'Add task',
126 'button.add_client' => 'Přidat zákazníka',
127 // TODO: translate the following.
128 // 'button.add_invoice' => 'Add invoice',
129 // 'button.add_option' => 'Add option',
130 'button.add' => 'Přidat',
131 'button.generate' => 'Vytvořit',
132 // TODO: translate the following.
133 // 'button.reset_password' => 'Reset password',
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 // TODO: translate the following.
165 // 'label.date' => 'Date',
166 // 'label.start_date' => 'Start date',
167 // 'label.end_date' => 'End date',
168 // 'label.user' => 'User',
169 // 'label.users' => 'Users',
170 // 'label.client' => 'Client',
171 // 'label.clients' => 'Clients',
172 // 'label.option' => 'Option',
173 // 'label.invoice' => 'Invoice',
174 // 'label.project' => 'Project',
175 'label.projects' => 'Projekty',
176 // TODO: translate the following.
177 // 'label.task' => 'Task',
178 // 'label.tasks' => 'Tasks',
179 // 'label.description' => 'Description',
180 // 'label.start' => 'Start',
181 // 'label.finish' => 'Finish',
182 // 'label.duration' => 'Duration',
183 // 'label.note' => 'Note',
184 // 'label.notes' => 'Notes',
185 // 'label.item' => 'Item',
186 // 'label.cost' => 'Cost',
187 // 'label.day_total' => 'Day total',
188 // 'label.week_total' => 'Week total',
189 // 'label.month_total' => 'Month total',
190 'label.today' => 'Dnes',
191 // TODO: translate the following.
192 // 'label.total_hours' => 'Total hours',
193 // 'label.total_cost' => 'Total cost',
194 // 'label.view' => 'View',
195 'label.edit' => 'Upravit',
196 'label.delete' => 'Smazat',
197 // TODO: translate the following.
198 // 'label.configure' => 'Configure',
199 // 'label.select_all' => 'Select all',
200 // 'label.select_none' => 'Deselect all',
201 // 'label.day_view' => 'Day view',
202 // 'label.week_view' => 'Week view',
203 // 'label.id' => 'ID',
204 'label.language' => 'Jazyk',
205 // TODO: translate the following.
206 // 'label.decimal_mark' => 'Decimal mark',
207 // 'label.date_format' => 'Date format',
208 // 'label.time_format' => 'Time format',
209 // 'label.week_start' => 'First day of week',
210 // 'label.comment' => 'Comment',
211 // 'label.status' => 'Status',
212 // 'label.tax' => 'Tax',
213 // 'label.subtotal' => 'Subtotal',
214 'label.total' => 'Celkem',
215 // TODO: translate the following.
216 // 'label.client_name' => 'Client name',
217 // 'label.client_address' => 'Client address',
218 // 'label.or' => 'or',
219 // 'label.error' => 'Error',
220 // 'label.ldap_hint' => 'Type your <b>Windows login</b> and <b>password</b> in the fields below.',
221 // 'label.required_fields' => '* - required fields',
222 // 'label.on_behalf' => 'on behalf of',
223 'label.role_manager' => '(manažer)',
224 'label.role_comanager' => '(co-manažer)',
225 'label.role_admin' => '(administrator)',
226 // TODO: translate the following.
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' => 'Oblíbená sestava',
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' => 'Přihlásit',
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' => 'Deleting Team',
258 'title.reset_password' => 'Resetovat heslo',
259 // TODO: translate the following.
260 // 'title.change_password' => 'Changing Password',
261 // 'title.time' => 'Time',
262 // 'title.edit_time_record' => 'Editing Time Record',
263 // 'title.delete_time_record' => 'Deleting Time Record',
264 // 'title.expenses' => 'Expenses',
265 // 'title.edit_expense' => 'Editing Expense Item',
266 // 'title.delete_expense' => 'Deleting Expense Item',
267 // 'title.predefined_expenses' => 'Predefined Expenses',
268 // 'title.add_predefined_expense' => 'Adding Predefined Expense',
269 // 'title.edit_predefined_expense' => 'Editing Predefined Expense',
270 // 'title.delete_predefined_expense' => 'Deleting Predefined Expense',
271 'title.reports' => 'Sestavy',
272 // TODO: translate the following.
273 // 'title.report' => 'Report',
274 // 'title.send_report' => 'Sending Report',
275 // 'title.invoice' => 'Invoice',
276 // 'title.send_invoice' => 'Sending Invoice',
277 // 'title.charts' => 'Charts',
278 'title.projects' => 'Projekty',
279 // TODO: translate the following.
280 // 'title.add_project' => 'Adding Project',
281 // 'title.edit_project' => 'Editing Project',
282 // 'title.delete_project' => 'Deleting Project',
283 // 'title.tasks' => 'Tasks',
284 // 'title.add_task' => 'Adding Task',
285 // 'title.edit_task' => 'Editing Task',
286 // 'title.delete_task' => 'Deleting Task',
287 // 'title.users' => 'Users',
288 // 'title.add_user' => 'Adding User',
289 // 'title.edit_user' => 'Editing User',
290 // 'title.delete_user' => 'Deleting User',
291 // 'title.clients' => 'Clients',
292 // 'title.add_client' => 'Adding Client',
293 // 'title.edit_client' => 'Editing Client',
294 // 'title.delete_client' => 'Deleting Client',
295 // 'title.invoices' => 'Invoices',
296 // 'title.add_invoice' => 'Adding Invoice',
297 // 'title.view_invoice' => 'Viewing Invoice',
298 // 'title.delete_invoice' => 'Deleting Invoice',
299 // 'title.notifications' => 'Notifications',
300 // 'title.add_notification' => 'Adding Notification',
301 // 'title.edit_notification' => 'Editing Notification',
302 // 'title.delete_notification' => 'Deleting Notification',
303 // 'title.monthly_quotas' => 'Monthly Quotas',
304 // 'title.export' => 'Exporting Team Data',
305 // 'title.import' => 'Importing Team Data',
306 // 'title.options' => 'Options',
307 // 'title.profile' => 'Profile',
308 // 'title.cf_custom_fields' => 'Custom Fields',
309 // 'title.cf_add_custom_field' => 'Adding Custom Field',
310 // 'title.cf_edit_custom_field' => 'Editing Custom Field',
311 // 'title.cf_delete_custom_field' => 'Deleting Custom Field',
312 // 'title.cf_dropdown_options' => 'Dropdown Options',
313 // 'title.cf_add_dropdown_option' => 'Adding Option',
314 // 'title.cf_edit_dropdown_option' => 'Editing Option',
315 // 'title.cf_delete_dropdown_option' => 'Deleting Option',
316 // NOTE TO TRANSLATORS: Locking is a feature to lock records from modifications (ex: weekly on Mondays we lock all previous weeks).
317 // It is also a name for the Locking plugin on the Team profile page.
318 // 'title.locking' => 'Locking',
319 // 'title.week_view' => 'Week View',
320
321 // Section for common strings inside combo boxes on forms. Strings shared between forms shall be placed here.
322 // Strings that are used in a single form must go to the specific form section.
323 // TODO: translate the following.
324 // 'dropdown.all' => '--- all ---',
325 // 'dropdown.no' => '--- no ---',
326 // 'dropdown.current_day' => 'today',
327 // 'dropdown.previous_day' => 'yesterday',
328 // 'dropdown.selected_day' => 'day',
329 // 'dropdown.current_week' => 'this week',
330 // 'dropdown.previous_week' => 'previous week',
331 // 'dropdown.selected_week' => 'week',
332 // 'dropdown.current_month' => 'this month',
333 // 'dropdown.previous_month' => 'previous month',
334 // 'dropdown.selected_month' => 'month',
335 // 'dropdown.current_year' => 'this year',
336 // 'dropdown.previous_year' => 'previous year',
337 // 'dropdown.selected_year' => 'year',
338 // 'dropdown.all_time' => 'all time',
339 'dropdown.projects' => 'projekty',
340 // TODO: translate the following.
341 // 'dropdown.tasks' => 'tasks',
342 // 'dropdown.clients' => 'clients',
343 // 'dropdown.select' => '--- select ---',
344 // 'dropdown.select_invoice' => '--- select invoice ---',
345 // 'dropdown.status_active' => 'active',
346 // 'dropdown.status_inactive' => 'inactive',
347 // 'dropdown.delete'=>'delete',
348 // 'dropdown.do_not_delete'=>'do not delete',
349 // 'dropdown.paid' => 'paid',
350 // 'dropdown.not_paid' => 'not paid',
351
352 // Login form. See example at https://timetracker.anuko.com/login.php.
353 // TODO: translate the following.
354 // 'form.login.forgot_password' => 'Forgot password?',
355 // '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.',
356
357 // Resetting Password form. See example at https://timetracker.anuko.com/password_reset.php.
358 // TODO: translate the following.
359 // 'form.reset_password.message' => 'Password reset request sent by email.',
360 // 'form.reset_password.email_subject' => 'Anuko Time Tracker password reset request',
361 // '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",
362
363
364
365 // TODO: refactoring ongoing down from here.
366
367 "form.filter.filter_confirm_delete" => 'opravdu chceš vymazat tuto položku z oblíbených?',
368
369 // password reminder form attributes
370 "form.fpass.title" => 'resetovat heslo',
371 "form.fpass.login" => 'přihlásit',
372 "form.fpass.send_pass_str" => 'zaslán požadavek k vymazání hesla',
373 "form.fpass.send_pass_subj" => 'Anuko Time Tracker požadavek na vymazání hesla',
374 // Note to translators: this string needs to be translated.
375 // "form.fpass.send_pass_body" => "Dear User,\n\nSomeone, possibly you, requested your Anuko Time Tracker password reset. Please visit this link if you want to reset your password.\n\n%s\n\nAnuko Time Tracker is a simple, easy to use, open source time tracking system. Visit https://www.anuko.com for more information.\n\n",
376 "form.fpass.reset_comment" => "pro změnu hesla jej napište a zvolte uložit",
377
378 // administrator form
379 "form.admin.title" => 'administrator',
380 "form.admin.duty_text" => '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 e-mailových adres!).',
381
382 "form.admin.change_pass" => 'změna hesla účtu administrator',
383 "form.admin.profile.title" => 'týmy',
384 "form.admin.profile.noprofiles" => 'vaše databáze je prázdná. přihlašte se jako admin a vytvořte nový tým.',
385 "form.admin.profile.comment" => 'smazat tým',
386 "form.admin.profile.th.id" => 'id',
387 "form.admin.profile.th.active" => 'aktovní',
388 // Note to translators: the strings below are missing in the translation and must be added
389 // "form.admin.custom_date_format" => "date format",
390 // "form.admin.custom_time_format" => "time format",
391 // "form.admin.start_week" => "first day of week",
392
393 // my time form attributes
394 "form.mytime.title" => 'můj deník',
395 "form.mytime.edit_title" => 'upravit časový záznam',
396 "form.mytime.del_str" => 'smazat časový záznam',
397 // Note to translators: "form.mytime.time_form" => ' (hh:mm)', // the string must be translated
398 "form.mytime.date" => 'datum',
399 "form.mytime.project" => 'projekt',
400 "form.mytime.activity" => 'činnost',
401 "form.mytime.start" => 'začátek',
402 "form.mytime.finish" => 'konec',
403 "form.mytime.duration" => 'trvání',
404 "form.mytime.note" => 'poznámka',
405 "form.mytime.behalf" => 'denní práce pracovníka',
406 "form.mytime.daily" => 'denní práce',
407 "form.mytime.total" => 'součet hodin: ',
408 "form.mytime.th.project" => 'projekt',
409 "form.mytime.th.start" => 'začátek',
410 "form.mytime.th.finish" => 'konec',
411 "form.mytime.th.duration" => 'trvání',
412 "form.mytime.th.note" => 'poznámka',
413 "form.mytime.del_yes" => 'časový záznam úspěšně odstraněn',
414 "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.',
415 "form.mytime.billable" => 'k fakturaci',
416 "form.mytime.warn_tozero_rec" => 'tento záznam musí být smazán, neboť období je uzamčeno',
417 // Note to translators: the string below is missing in the translation and must be added
418 // "form.mytime.uncompleted" => 'uncompleted',
419
420 // profile form attributes
421 // Note to translators: we need a more accurate translation of form.profile.create_title
422 "form.profile.create_title" => 'vytvořit nový manažerský účet',
423 "form.profile.edit_title" => 'upravit profil',
424 "form.profile.login" => 'přihlásit',
425
426 "form.profile.showchart" => 'zobrazuj grafy',
427
428 // people form attributes
429 "form.people.ppl_str" => 'pracovnící',
430 "form.people.createu_str" => 'vytváření nového uživatele',
431 "form.people.edit_str" => 'nastavení uživatele',
432 "form.people.del_str" => 'smazat uživatele',
433 "form.people.th.login" => 'přihlásit',
434 "form.people.th.role" => 'role',
435 "form.people.th.status" => 'status',
436 "form.people.th.project" => 'projekt',
437 "form.people.th.rate" => 'sazba',
438 "form.people.manager" => 'manažer',
439 "form.people.comanager" => 'spolumanažer',
440 "form.people.empl" => 'uživatel',
441 "form.people.login" => 'přihlásit',
442
443 "form.people.rate" => 'hodinová sazba',
444 "form.people.comanager" => 'spolumanažer',
445 "form.people.projects" => 'projekty',
446
447 // projects form attributes
448 "form.project.proj_title" => 'projekty',
449 "form.project.edit_str" => 'upravit projekt',
450 "form.project.add_str" => 'pridat nový projekt',
451 "form.project.del_str" => 'smazat projekt',
452
453 // activities form attributes
454 "form.activity.project" => 'projekt',
455
456 // report attributes
457 "form.report.from" => 'počáteční datum',
458 "form.report.to" => 'koncové datum',
459 "form.report.groupby_user" => 'uživatel',
460 "form.report.groupby_project" => 'projekt',
461 "form.report.duration" => 'trvání',
462 "form.report.start" => 'počátek',
463 "form.report.finish" => 'konec',
464 "form.report.note" => 'poznámka',
465 "form.report.project" => 'projekt',
466 "form.report.totals_only" => 'pouze součty',
467 "form.report.total" => 'součty hodin',
468 "form.report.th.empllist" => 'uzivatel',
469 "form.report.th.date" => 'datum',
470 "form.report.th.project" => 'projekt',
471 "form.report.th.start" => 'počátek',
472 "form.report.th.finish" => 'konec',
473 "form.report.th.duration" => 'trvání',
474 "form.report.th.note" => 'poznámka',
475
476 // mail form attributes
477 "form.mail.from" => 'od',
478 "form.mail.to" => 'komu',
479 "form.mail.comment" => 'komentář',
480 "form.mail.above" => 'poslat sestavu e-mailem',
481 // Note to translators: this string needs to be translated.
482 // "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.',
483 "form.mail.sending_str" => '<b>zpráva odeslána</b>',
484
485 // invoice attributes
486 "form.invoice.title" => 'faktura',
487 "form.invoice.caption" => 'faktura',
488 "form.invoice.above" => 'fakturační informace',
489 "form.invoice.select_cust" => 'výběr firmy',
490 "form.invoice.fillform" => 'vyplňte pole',
491 "form.invoice.date" => 'datum',
492 "form.invoice.number" => 'faktura číslo',
493 "form.invoice.tax" => 'DPH',
494 "form.invoice.comment" => 'komentář ',
495 "form.invoice.th.username" => 'osoba',
496 "form.invoice.th.time" => 'hodin',
497 "form.invoice.th.rate" => 'sazba',
498 "form.invoice.th.summ" => 'množství',
499 "form.invoice.subtotal" => 'subtotal',
500 "form.invoice.customer" => 'zákazník',
501 "form.invoice.mailinv_above" => 'poslat fakturu e-mailem',
502 "form.invoice.sending_str" => '<b>faktura odeslána</b>',
503
504 "form.migration.zip" => 'komprese',
505 "form.migration.file" => 'výběr souboru',
506 "form.migration.import.title" => 'importovat data',
507 "form.migration.import.success" => 'import byl úspěšně dokončen',
508 "form.migration.import.text" => 'importovat týmová data z xml souboru',
509 "form.migration.export.title" => 'exportovat data',
510 "form.migration.export.success" => 'export byl úspěšně dokončen',
511 "form.migration.export.text" => 'můžete exportova týmová data do xml souboru. může se to hodit pro přesun na jiný server.',
512 // Note to translators: the string below is missing in the translation and must be added
513 // "form.migration.compression.none" => 'none',
514 "form.migration.compression.gzip" => 'gzip',
515 "form.migration.compression.bzip" => 'bzip',
516
517 "form.client.title" => 'zákazníci',
518 "form.client.add_title" => 'přidat zákazníka',
519 "form.client.edit_title" => 'upravit zákazníka',
520 "form.client.del_title" => 'smazat zákazníka',
521 "form.client.tax" => 'DPH',
522 "form.client.comment" => 'poznámka ',
523
524 // miscellaneous strings
525 "forward.forgot_password" => 'zapomenuté heslo?',
526 "forward.tocsvfile" => 'exportovat data do .csv souboru',
527 "forward.toxmlfile" => 'exportovat data do .xml souboru',
528 "forward.geninvoice" => 'vytvořit fakturu',
529 "forward.change" => 'upravit zákazníky',
530
531 // strings inside contols on forms
532 "controls.select.project" => '--- výběr projektu ---',
533 "controls.select.client" => '--- výběr zákazníka ---',
534 "controls.project_bind" => '--- všechny ---',
535 "controls.all" => '--- vše ---',
536 "controls.notbind" => '--- nic ---',
537 "controls.per_tm" => 'tento měsíc',
538 "controls.per_lm" => 'minulý měsíc',
539 "controls.per_tw" => 'tento týden',
540 "controls.per_lw" => 'minulý týden',
541 "controls.per_td" => 'dnes',
542 "controls.per_at" => 'od počátku',
543 "controls.per_ty" => 'letos',
544 "controls.sel_period" => '--- výběr období ---',
545 "controls.sel_groupby" => '--- vše dohromady ---',
546 "controls.inc_billable" => 'k fakturaci',
547 "controls.inc_nbillable" => 'mimo fakturaci',
548
549 // labels
550 "label.chart.title1" => 'činnosti uživatele',
551 "label.chart.title2" => 'projekty uživatele',
552 "label.chart.period" => 'přehled za období',
553
554 "label.req_fields" => '* nutno vyplnit',
555 "label.sel_project" => 'výběr projektu',
556 "label.sel_activity" => 'výběr činnosti',
557 "label.sel_tp" => 'výberte období',
558 "label.set_tp" => 'nebo určete dny',
559 "label.fields" => 'zobrazit pole',
560 "label.group_title" => 'seskupit podle',
561 "label.include_title" => 'včetně záznamů',
562 "label.inv_str" => 'faktura',
563 "label.set_empl" => 'výběr uživatelů',
564 "label.sel_all" => 'vybrat všechno',
565 "label.sel_none" => 'zrušit výběr',
566 "label.or" => 'nebo',
567 "label.disable" => 'zakázat',
568 "label.enable" => 'povolit',
569 "label.filter" => 'filtr',
570 "label.timeweek" => 'celkem za týden',
571 "label.hrs" => 'hodin',
572 );