Started to work on refactoring form titles.
[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' => 'Reports',
57 // 'menu.charts' => 'Charts',
58 'menu.projects' => 'Projekty',
59 // TODO: translate the following.
60 // 'menu.tasks' => 'Tasks',
61 // 'menu.users' => 'Users',
62 'menu.teams' => 'Týmy',
63 'menu.export' => 'Export',
64 'menu.clients' => 'Zákazníci',
65 // TODO: translate the following.
66 // 'menu.options' => 'Options',
67
68 // Footer - strings on the bottom of most pages.
69 // TODO: translate the following.
70 // 'footer.contribute_msg' => 'You can contribute to Time Tracker in different ways.',
71 // 'footer.credits' => 'Credits',
72 // 'footer.license' => 'License',
73 // 'footer.improve' => 'Contribute', // Translators: this could mean "Improve", if it makes better sense in your language.
74                                      // This is a link to a webpage that describes how to contribute to the project.
75
76 // Error messages.
77 // TODO: translate the following.
78 // 'error.access_denied' => 'Access denied.',
79 // 'error.sys' => 'System error.',
80 'error.db' => 'Chyba databáze.',
81 'error.field' => 'Nesprávná "{0}" data.',
82 'error.empty' => 'Pole "{0}" je prázdné.',
83 'error.not_equal' => 'Pole "{0}" neodpovídá poli "{1}".',
84 // TODO: translate the following.
85 // 'error.interval' => 'Field "{0}" must be greater than "{1}".',
86 'error.project' => 'Výběr projektu.',
87 // TODO: translate the following.
88 // 'error.task' => 'Select task.',
89 // 'error.client' => 'Select client.',
90 // 'error.report' => 'Select report.',
91 // 'error.record' => 'Select record.',
92 'error.auth' => 'Nesprávné jméno nebo heslo.',
93 // TODO: translate the following.
94 // 'error.user_exists' => 'User with this login already exists.',
95 'error.project_exists' => 'Projekt tohoto jména již existuje.',
96 // TODO: translate the following.
97 // 'error.task_exists' => 'Task with this name already exists.',
98 // 'error.client_exists' => 'Client with this name already exists.',
99 // 'error.invoice_exists' => 'Invoice with this number already exists.',
100 // 'error.no_invoiceable_items' => 'There are no invoiceable items.',
101 // 'error.no_login' => 'No user with this login.',
102 // 'error.no_teams' => 'Your database is empty. Login as admin and create a new team.',
103 'error.upload' => 'Chyba přenosu souboru.',
104 // TODO: translate the following.
105 // 'error.range_locked' => 'Date range is locked.',
106 // 'error.mail_send' => 'Error sending mail.',
107 // 'error.no_email' => 'No email associated with this login.',
108 // 'error.uncompleted_exists' => 'Uncompleted entry already exists. Close or delete it.',
109 // 'error.goto_uncompleted' => 'Go to uncompleted entry.',
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' => 'Přihlásit',
115 'button.now' => 'Teď',
116 'button.save' => 'Uložit',
117 // TODO: translate the following.
118 // 'button.copy' => 'Copy',
119 'button.cancel' => 'Zrušit',
120 'button.submit' => 'Uložit',
121 'button.add_user' => 'Přidat uživatele',
122 'button.add_project' => 'Přidat projekt',
123 // TODO: translate the following.
124 // 'button.add_task' => 'Add task',
125 'button.add_client' => 'Přidat zákazníka',
126 // TODO: translate the following.
127 // 'button.add_invoice' => 'Add invoice',
128 // 'button.add_option' => 'Add option',
129 'button.add' => 'Přidat',
130 'button.generate' => 'Vytvořit',
131 // TODO: translate the following.
132 // 'button.reset_password' => 'Reset password',
133 'button.send' => 'Poslat',
134 'button.send_by_email' => 'Poslat e-mailem',
135 'button.create_team' => 'Vytvořit tým',
136 'button.export' => 'Exportovat tým',
137 'button.import' => 'Importovat tým',
138 // TODO: translate the following.
139 // 'button.close' => 'Close',
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' => 'Měna',
147 // TODO: translate the following.
148 // 'label.manager_name' => 'Manager name',
149 // 'label.manager_login' => 'Manager login',
150 // 'label.person_name' => 'Name',
151 // 'label.thing_name' => 'Name',
152 // 'label.login' => 'Login',
153 'label.password' => 'Heslo',
154 'label.confirm_password' => 'Potvrdit heslo',
155 // TODO: translate the following.
156 // 'label.email' => 'Email',
157 'label.cc' => 'Cc',
158 // TODO: translate the following.
159 // 'label.bcc' => 'Bcc',
160 'label.subject' => 'Předmět',
161 // TODO: translate the following.
162 // 'label.date' => 'Date',
163 // 'label.start_date' => 'Start date',
164 // 'label.end_date' => 'End date',
165 // 'label.user' => 'User',
166 // 'label.users' => 'Users',
167 // 'label.client' => 'Client',
168 // 'label.clients' => 'Clients',
169 // 'label.option' => 'Option',
170 // 'label.invoice' => 'Invoice',
171 // 'label.project' => 'Project',
172 // 'label.projects' => 'Projects',
173 // 'label.task' => 'Task',
174 // 'label.tasks' => 'Tasks',
175 // 'label.description' => 'Description',
176 // 'label.start' => 'Start',
177 // 'label.finish' => 'Finish',
178 // 'label.duration' => 'Duration',
179 // 'label.note' => 'Note',
180 // 'label.notes' => 'Notes',
181 // 'label.item' => 'Item',
182 // 'label.cost' => 'Cost',
183 // 'label.day_total' => 'Day total',
184 // 'label.week_total' => 'Week total',
185 // 'label.month_total' => 'Month total',
186 // 'label.today' => 'Today',
187 // 'label.total_hours' => 'Total hours',
188 // 'label.total_cost' => 'Total cost',
189 // 'label.view' => 'View',
190 // 'label.edit' => 'Edit',
191 'label.delete' => 'Smazat',
192 // TODO: translate the following.
193 // 'label.configure' => 'Configure',
194 // 'label.select_all' => 'Select all',
195 // 'label.select_none' => 'Deselect all',
196 // 'label.day_view' => 'Day view',
197 // 'label.week_view' => 'Week view',
198 // 'label.id' => 'ID',
199 // 'label.language' => 'Language',
200 // 'label.decimal_mark' => 'Decimal mark',
201 // 'label.date_format' => 'Date format',
202 // 'label.time_format' => 'Time format',
203 // 'label.week_start' => 'First day of week',
204 // 'label.comment' => 'Comment',
205 // 'label.status' => 'Status',
206 // 'label.tax' => 'Tax',
207 // 'label.subtotal' => 'Subtotal',
208 'label.total' => 'Celkem',
209 // TODO: translate the following.
210 // 'label.client_name' => 'Client name',
211 // 'label.client_address' => 'Client address',
212 // 'label.or' => 'or',
213 // 'label.error' => 'Error',
214 // 'label.ldap_hint' => 'Type your <b>Windows login</b> and <b>password</b> in the fields below.',
215 // 'label.required_fields' => '* - required fields',
216 // 'label.on_behalf' => 'on behalf of',
217 // 'label.role_manager' => '(manager)',
218 // 'label.role_comanager' => '(co-manager)',
219 // 'label.role_admin' => '(administrator)',
220 // 'label.page' => 'Page',
221 // 'label.condition' => 'Condition',
222 // 'label.yes' => 'yes',
223 // 'label.no' => 'no',
224 // Labels for plugins (extensions to Time Tracker that provide additional features).
225 // TODO: translate the following.
226 // 'label.custom_fields' => 'Custom fields',
227 // 'label.monthly_quotas' => 'Monthly quotas',
228 // 'label.type' => 'Type',
229 // 'label.type_dropdown' => 'dropdown',
230 // 'label.type_text' => 'text',
231 // 'label.required' => 'Required',
232 // 'label.fav_report' => 'Favorite report',
233 // 'label.cron_schedule' => 'Cron schedule',
234 // 'label.what_is_it' => 'What is it?',
235 // 'label.expense' => 'Expense',
236 // 'label.quantity' => 'Quantity',
237 // 'label.paid_status' => 'Paid status',
238 // 'label.paid' => 'Paid',
239 // 'label.mark_paid' => 'Mark paid',
240
241 // Form titles.
242 'title.login' => 'Přihlásit',
243 // TODO: translate the following.
244 // 'title.teams' => 'Teams',
245 // 'title.create_team' => 'Creating Team',
246 // 'title.edit_team' => 'Editing Team',
247 // 'title.delete_team' => 'Deleting Team',
248
249
250
251 // TODO: refactoring ongoing down from here.
252
253 "form.filter.project" => 'projekt',
254 "form.filter.filter" => 'oblíbená sestava',
255 "form.filter.filter_new" => 'uložit jako oblíbenou sestavu',
256 "form.filter.filter_confirm_delete" => 'opravdu chceš vymazat tuto položku z oblíbených?',
257
258 // password reminder form attributes
259 "form.fpass.title" => 'resetovat heslo',
260 "form.fpass.login" => 'přihlásit',
261 "form.fpass.send_pass_str" => 'zaslán požadavek k vymazání hesla',
262 "form.fpass.send_pass_subj" => 'Anuko Time Tracker požadavek na vymazání hesla',
263 // Note to translators: this string needs to be translated.
264 // "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",
265 "form.fpass.reset_comment" => "pro změnu hesla jej napište a zvolte uložit",
266
267 // administrator form
268 "form.admin.title" => 'administrator',
269 "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!).',
270
271 "form.admin.change_pass" => 'změna hesla účtu administrator',
272 "form.admin.profile.title" => 'týmy',
273 "form.admin.profile.noprofiles" => 'vaše databáze je prázdná. přihlašte se jako admin a vytvořte nový tým.',
274 "form.admin.profile.comment" => 'smazat tým',
275 "form.admin.profile.th.id" => 'id',
276 "form.admin.profile.th.name" => 'jméno',
277 "form.admin.profile.th.edit" => 'upravit',
278 "form.admin.profile.th.del" => 'smazat',
279 "form.admin.profile.th.active" => 'aktovní',
280 // Note to translators: the strings below are missing in the translation and must be added
281 // "form.admin.custom_date_format" => "date format",
282 // "form.admin.custom_time_format" => "time format",
283 // "form.admin.start_week" => "first day of week",
284
285 // my time form attributes
286 "form.mytime.title" => 'můj deník',
287 "form.mytime.edit_title" => 'upravit časový záznam',
288 "form.mytime.del_str" => 'smazat časový záznam',
289 // Note to translators: "form.mytime.time_form" => ' (hh:mm)', // the string must be translated
290 "form.mytime.date" => 'datum',
291 "form.mytime.project" => 'projekt',
292 "form.mytime.activity" => 'činnost',
293 "form.mytime.start" => 'začátek',
294 "form.mytime.finish" => 'konec',
295 "form.mytime.duration" => 'trvání',
296 "form.mytime.note" => 'poznámka',
297 "form.mytime.behalf" => 'denní práce pracovníka',
298 "form.mytime.daily" => 'denní práce',
299 "form.mytime.total" => 'součet hodin: ',
300 "form.mytime.th.project" => 'projekt',
301 "form.mytime.th.activity" => 'činnost',
302 "form.mytime.th.start" => 'začátek',
303 "form.mytime.th.finish" => 'konec',
304 "form.mytime.th.duration" => 'trvání',
305 "form.mytime.th.note" => 'poznámka',
306 "form.mytime.th.edit" => 'upravit',
307 "form.mytime.th.delete" => 'odstranit',
308 "form.mytime.del_yes" => 'časový záznam úspěšně odstraněn',
309 "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.',
310 "form.mytime.billable" => 'k fakturaci',
311 "form.mytime.warn_tozero_rec" => 'tento záznam musí být smazán, neboť období je uzamčeno',
312 // Note to translators: the string below is missing in the translation and must be added
313 // "form.mytime.uncompleted" => 'uncompleted',
314
315 // profile form attributes
316 // Note to translators: we need a more accurate translation of form.profile.create_title
317 "form.profile.create_title" => 'vytvořit nový manažerský účet',
318 "form.profile.edit_title" => 'upravit profil',
319 "form.profile.name" => 'jméno',
320 "form.profile.login" => 'přihlásit',
321
322 "form.profile.showchart" => 'zobrazuj grafy',
323 "form.profile.lang" => 'jazyk',
324 // Note to translators: the strings below are missing in the translation and must be added
325 // "form.profile.custom_date_format" => "date format",
326 // "form.profile.custom_time_format" => "time format",
327 // "form.profile.default_format" => "(default)",
328 // "form.profile.start_week" => "first day of week",
329
330 // people form attributes
331 "form.people.ppl_str" => 'pracovnící',
332 "form.people.createu_str" => 'vytváření nového uživatele',
333 "form.people.edit_str" => 'nastavení uživatele',
334 "form.people.del_str" => 'smazat uživatele',
335 "form.people.th.name" => 'jméno',
336 "form.people.th.login" => 'přihlásit',
337 "form.people.th.role" => 'role',
338 "form.people.th.edit" => 'upravit',
339 "form.people.th.del" => 'smazat',
340 "form.people.th.status" => 'status',
341 "form.people.th.project" => 'projekt',
342 "form.people.th.rate" => 'sazba',
343 "form.people.manager" => 'manažer',
344 "form.people.comanager" => 'spolumanažer',
345 "form.people.empl" => 'uživatel',
346 "form.people.name" => 'jméno',
347 "form.people.login" => 'přihlásit',
348
349 "form.people.rate" => 'hodinová sazba',
350 "form.people.comanager" => 'spolumanažer',
351 "form.people.projects" => 'projekty',
352
353 // projects form attributes
354 "form.project.proj_title" => 'projekty',
355 "form.project.edit_str" => 'upravit projekt',
356 "form.project.add_str" => 'pridat nový projekt',
357 "form.project.del_str" => 'smazat projekt',
358 "form.project.th.name" => 'jméno',
359 "form.project.th.edit" => 'upravit',
360 "form.project.th.del" => 'smazat',
361 "form.project.name" => 'Název',
362
363 // activities form attributes
364 "form.activity.act_title" => 'činnosti',
365 "form.activity.add_title" => 'přidat činnost',
366 "form.activity.edit_str" => 'upravit činnost',
367 "form.activity.del_str" => 'smazat činnost',
368 "form.activity.name" => 'název činnosti',
369 "form.activity.project" => 'projekt',
370 "form.activity.th.name" => 'jméno',
371 "form.activity.th.project" => 'projekt',
372 "form.activity.th.edit" => 'upravit',
373 "form.activity.th.del" => 'smazat',
374
375 // report attributes
376 "form.report.title" => 'sestavy',
377 "form.report.from" => 'počáteční datum',
378 "form.report.to" => 'koncové datum',
379 "form.report.groupby_user" => 'uživatel',
380 "form.report.groupby_project" => 'projekt',
381 "form.report.groupby_activity" => 'činnost',
382 "form.report.duration" => 'trvání',
383 "form.report.start" => 'počátek',
384 "form.report.activity" => 'činnost',
385 "form.report.show_idle" => 'ukázat nečinné',
386 "form.report.finish" => 'konec',
387 "form.report.note" => 'poznámka',
388 "form.report.project" => 'projekt',
389 "form.report.totals_only" => 'pouze součty',
390 "form.report.total" => 'součty hodin',
391 "form.report.th.empllist" => 'uzivatel',
392 "form.report.th.date" => 'datum',
393 "form.report.th.project" => 'projekt',
394 "form.report.th.activity" => 'činnost',
395 "form.report.th.start" => 'počátek',
396 "form.report.th.finish" => 'konec',
397 "form.report.th.duration" => 'trvání',
398 "form.report.th.note" => 'poznámka',
399
400 // mail form attributes
401 "form.mail.from" => 'od',
402 "form.mail.to" => 'komu',
403 "form.mail.comment" => 'komentář',
404 "form.mail.above" => 'poslat sestavu e-mailem',
405 // Note to translators: this string needs to be translated.
406 // "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.',
407 "form.mail.sending_str" => '<b>zpráva odeslána</b>',
408
409 // invoice attributes
410 "form.invoice.title" => 'faktura',
411 "form.invoice.caption" => 'faktura',
412 "form.invoice.above" => 'fakturační informace',
413 "form.invoice.select_cust" => 'výběr firmy',
414 "form.invoice.fillform" => 'vyplňte pole',
415 "form.invoice.date" => 'datum',
416 "form.invoice.number" => 'faktura číslo',
417 "form.invoice.tax" => 'DPH',
418 "form.invoice.comment" => 'komentář ',
419 "form.invoice.th.username" => 'osoba',
420 "form.invoice.th.time" => 'hodin',
421 "form.invoice.th.rate" => 'sazba',
422 "form.invoice.th.summ" => 'množství',
423 "form.invoice.subtotal" => 'subtotal',
424 "form.invoice.customer" => 'zákazník',
425 "form.invoice.mailinv_above" => 'poslat fakturu e-mailem',
426 "form.invoice.sending_str" => '<b>faktura odeslána</b>',
427
428 "form.migration.zip" => 'komprese',
429 "form.migration.file" => 'výběr souboru',
430 "form.migration.import.title" => 'importovat data',
431 "form.migration.import.success" => 'import byl úspěšně dokončen',
432 "form.migration.import.text" => 'importovat týmová data z xml souboru',
433 "form.migration.export.title" => 'exportovat data',
434 "form.migration.export.success" => 'export byl úspěšně dokončen',
435 "form.migration.export.text" => 'můžete exportova týmová data do xml souboru. může se to hodit pro přesun na jiný server.',
436 // Note to translators: the string below is missing in the translation and must be added
437 // "form.migration.compression.none" => 'none',
438 "form.migration.compression.gzip" => 'gzip',
439 "form.migration.compression.bzip" => 'bzip',
440
441 "form.client.title" => 'zákazníci',
442 "form.client.add_title" => 'přidat zákazníka',
443 "form.client.edit_title" => 'upravit zákazníka',
444 "form.client.del_title" => 'smazat zákazníka',
445 "form.client.th.name" => 'jméno',
446 "form.client.th.edit" => 'upravit',
447 "form.client.th.del" => 'smazat',
448 "form.client.name" => 'jméno',
449 "form.client.tax" => 'DPH',
450 "form.client.comment" => 'poznámka ',
451
452 // miscellaneous strings
453 "forward.forgot_password" => 'zapomenuté heslo?',
454 "forward.edit" => 'upravit',
455 "forward.delete" => 'smazat',
456 "forward.tocsvfile" => 'exportovat data do .csv souboru',
457 "forward.toxmlfile" => 'exportovat data do .xml souboru',
458 "forward.geninvoice" => 'vytvořit fakturu',
459 "forward.change" => 'upravit zákazníky',
460
461 // strings inside contols on forms
462 "controls.select.project" => '--- výběr projektu ---',
463 "controls.select.activity" => '--- výběr činnosti ---',
464 "controls.select.client" => '--- výběr zákazníka ---',
465 "controls.project_bind" => '--- všechny ---',
466 "controls.all" => '--- vše ---',
467 "controls.notbind" => '--- nic ---',
468 "controls.per_tm" => 'tento měsíc',
469 "controls.per_lm" => 'minulý měsíc',
470 "controls.per_tw" => 'tento týden',
471 "controls.per_lw" => 'minulý týden',
472 "controls.per_td" => 'dnes',
473 "controls.per_at" => 'od počátku',
474 "controls.per_ty" => 'letos',
475 "controls.sel_period" => '--- výběr období ---',
476 "controls.sel_groupby" => '--- vše dohromady ---',
477 "controls.inc_billable" => 'k fakturaci',
478 "controls.inc_nbillable" => 'mimo fakturaci',
479 // Note to translators: the string below must be translated
480 // "controls.default" => '--- default ---',
481
482 // labels
483 "label.chart.title1" => 'činnosti uživatele',
484 "label.chart.title2" => 'projekty uživatele',
485 "label.chart.period" => 'přehled za období',
486
487 "label.pinfo" => '%s, %s',
488 "label.pinfo2" => '%s',
489 // Note to translators: the string below must be translated
490 // "label.pbehalf_info" => '%s %s <b>on behalf of %s</b>',
491 "label.pminfo" => ' (manažer)',
492 "label.pcminfo" => ' (co-manažer)',
493 "label.painfo" => ' (administrator)',
494 "label.time_noentry" => 'žádné záznamy',
495 "label.today" => 'dnes',
496 "label.req_fields" => '* nutno vyplnit',
497 "label.sel_project" => 'výběr projektu',
498 "label.sel_activity" => 'výběr činnosti',
499 "label.sel_tp" => 'výberte období',
500 "label.set_tp" => 'nebo určete dny',
501 "label.fields" => 'zobrazit pole',
502 "label.group_title" => 'seskupit podle',
503 "label.include_title" => 'včetně záznamů',
504 "label.inv_str" => 'faktura',
505 "label.set_empl" => 'výběr uživatelů',
506 "label.sel_all" => 'vybrat všechno',
507 "label.sel_none" => 'zrušit výběr',
508 "label.or" => 'nebo',
509 "label.disable" => 'zakázat',
510 "label.enable" => 'povolit',
511 "label.filter" => 'filtr',
512 "label.timeweek" => 'celkem za týden',
513 "label.hrs" => 'hodin',
514 // Note to translators: the 3 strings below are missing in the translation and must be added
515 // "label.errors" => 'errors',
516 // "label.ldap_hint" => 'Type your <b>Windows login</b> and <b>password</b> in the fields below.',
517
518 // login hello text
519 // Note to translators: the string below is missing in the translation and must be added
520 // "login.hello.text" => "Anuko Time Tracker is a simple, easy to use, open source time tracking system.",
521 );