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.
 
  11 // | There are only two ways to violate the license:
 
  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).
 
  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).
 
  21 // | This license applies to this document only, not any other software
 
  22 // | that it may be combined with.
 
  24 // +----------------------------------------------------------------------+
 
  26 // | https://www.anuko.com/time_tracker/credits.htm
 
  27 // +----------------------------------------------------------------------+
 
  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.
 
  32 // Note to translators: Use proper capitalization rules for your language.
 
  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');
 
  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');
 
  41 $i18n_key_words = array(
 
  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',
 
  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.
 
  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.',
 
 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',
 
 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',
 
 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' => 'Celkem za týden',
 
 189 // TODO: translate the following.
 
 190 // 'label.month_total' => 'Month total',
 
 191 'label.today' => 'Dnes',
 
 192 // TODO: translate the following.
 
 193 // 'label.total_hours' => 'Total hours',
 
 194 // 'label.total_cost' => 'Total cost',
 
 195 // 'label.view' => 'View',
 
 196 'label.edit' => 'Upravit',
 
 197 'label.delete' => 'Smazat',
 
 198 // TODO: translate the following.
 
 199 // 'label.configure' => 'Configure',
 
 200 // 'label.select_all' => 'Select all',
 
 201 // 'label.select_none' => 'Deselect all',
 
 202 // 'label.day_view' => 'Day view',
 
 203 // 'label.week_view' => 'Week view',
 
 204 // 'label.id' => 'ID',
 
 205 'label.language' => 'Jazyk',
 
 206 // TODO: translate the following.
 
 207 // 'label.decimal_mark' => 'Decimal mark',
 
 208 // 'label.date_format' => 'Date format',
 
 209 // 'label.time_format' => 'Time format',
 
 210 // 'label.week_start' => 'First day of week',
 
 211 // 'label.comment' => 'Comment',
 
 212 // 'label.status' => 'Status',
 
 213 // 'label.tax' => 'Tax',
 
 214 // 'label.subtotal' => 'Subtotal',
 
 215 'label.total' => 'Celkem',
 
 216 // TODO: translate the following.
 
 217 // 'label.client_name' => 'Client name',
 
 218 // 'label.client_address' => 'Client address',
 
 219 // 'label.or' => 'or',
 
 220 // 'label.error' => 'Error',
 
 221 // 'label.ldap_hint' => 'Type your <b>Windows login</b> and <b>password</b> in the fields below.',
 
 222 'label.required_fields' => '* nutno vyplnit',
 
 223 // TODO: translate the following.
 
 224 // 'label.on_behalf' => 'on behalf of',
 
 225 'label.role_manager' => '(manažer)',
 
 226 'label.role_comanager' => '(co-manažer)',
 
 227 'label.role_admin' => '(administrator)',
 
 228 // TODO: translate the following.
 
 229 // 'label.page' => 'Page',
 
 230 // 'label.condition' => 'Condition',
 
 231 // 'label.yes' => 'yes',
 
 232 // 'label.no' => 'no',
 
 233 // Labels for plugins (extensions to Time Tracker that provide additional features).
 
 234 // TODO: translate the following.
 
 235 // 'label.custom_fields' => 'Custom fields',
 
 236 // 'label.monthly_quotas' => 'Monthly quotas',
 
 237 // 'label.type' => 'Type',
 
 238 // 'label.type_dropdown' => 'dropdown',
 
 239 // 'label.type_text' => 'text',
 
 240 // 'label.required' => 'Required',
 
 241 'label.fav_report' => 'Oblíbená sestava',
 
 242 // TODO: translate the following.
 
 243 // 'label.cron_schedule' => 'Cron schedule',
 
 244 // 'label.what_is_it' => 'What is it?',
 
 245 // 'label.expense' => 'Expense',
 
 246 // 'label.quantity' => 'Quantity',
 
 247 // 'label.paid_status' => 'Paid status',
 
 248 // 'label.paid' => 'Paid',
 
 249 // 'label.mark_paid' => 'Mark paid',
 
 250 // 'label.week_note' => 'Week note',
 
 251 // 'label.week_list' => 'Week list',
 
 254 'title.login' => 'Přihlásit',
 
 255 // TODO: translate the following.
 
 256 // 'title.teams' => 'Teams',
 
 257 // 'title.create_team' => 'Creating Team',
 
 258 // 'title.edit_team' => 'Editing Team',
 
 259 // 'title.delete_team' => 'Deleting Team',
 
 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' => 'Editing Time Record',
 
 265 // 'title.delete_time_record' => 'Deleting Time Record',
 
 266 // 'title.expenses' => 'Expenses',
 
 267 // 'title.edit_expense' => 'Editing Expense Item',
 
 268 // 'title.delete_expense' => 'Deleting Expense Item',
 
 269 // 'title.predefined_expenses' => 'Predefined Expenses',
 
 270 // 'title.add_predefined_expense' => 'Adding Predefined Expense',
 
 271 // 'title.edit_predefined_expense' => 'Editing Predefined Expense',
 
 272 // 'title.delete_predefined_expense' => 'Deleting Predefined Expense',
 
 273 'title.reports' => 'Sestavy',
 
 274 // TODO: translate the following.
 
 275 // 'title.report' => 'Report',
 
 276 // 'title.send_report' => 'Sending Report',
 
 277 // 'title.invoice' => 'Invoice',
 
 278 // 'title.send_invoice' => 'Sending Invoice',
 
 279 // 'title.charts' => 'Charts',
 
 280 'title.projects' => 'Projekty',
 
 281 // TODO: translate the following.
 
 282 // 'title.add_project' => 'Adding Project',
 
 283 // 'title.edit_project' => 'Editing Project',
 
 284 // 'title.delete_project' => 'Deleting Project',
 
 285 // 'title.tasks' => 'Tasks',
 
 286 // 'title.add_task' => 'Adding Task',
 
 287 // 'title.edit_task' => 'Editing Task',
 
 288 // 'title.delete_task' => 'Deleting Task',
 
 289 // 'title.users' => 'Users',
 
 290 // 'title.add_user' => 'Adding User',
 
 291 // 'title.edit_user' => 'Editing User',
 
 292 // 'title.delete_user' => 'Deleting User',
 
 293 // 'title.clients' => 'Clients',
 
 294 // 'title.add_client' => 'Adding Client',
 
 295 // 'title.edit_client' => 'Editing Client',
 
 296 // 'title.delete_client' => 'Deleting Client',
 
 297 // 'title.invoices' => 'Invoices',
 
 298 // 'title.add_invoice' => 'Adding Invoice',
 
 299 // 'title.view_invoice' => 'Viewing Invoice',
 
 300 // 'title.delete_invoice' => 'Deleting Invoice',
 
 301 // 'title.notifications' => 'Notifications',
 
 302 // 'title.add_notification' => 'Adding Notification',
 
 303 // 'title.edit_notification' => 'Editing Notification',
 
 304 // 'title.delete_notification' => 'Deleting Notification',
 
 305 // 'title.monthly_quotas' => 'Monthly Quotas',
 
 306 // 'title.export' => 'Exporting Team Data',
 
 307 // 'title.import' => 'Importing Team Data',
 
 308 // 'title.options' => 'Options',
 
 309 // 'title.profile' => 'Profile',
 
 310 // 'title.cf_custom_fields' => 'Custom Fields',
 
 311 // 'title.cf_add_custom_field' => 'Adding Custom Field',
 
 312 // 'title.cf_edit_custom_field' => 'Editing Custom Field',
 
 313 // 'title.cf_delete_custom_field' => 'Deleting Custom Field',
 
 314 // 'title.cf_dropdown_options' => 'Dropdown Options',
 
 315 // 'title.cf_add_dropdown_option' => 'Adding Option',
 
 316 // 'title.cf_edit_dropdown_option' => 'Editing Option',
 
 317 // 'title.cf_delete_dropdown_option' => 'Deleting Option',
 
 318 // NOTE TO TRANSLATORS: Locking is a feature to lock records from modifications (ex: weekly on Mondays we lock all previous weeks).
 
 319 // It is also a name for the Locking plugin on the Team profile page.
 
 320 // 'title.locking' => 'Locking',
 
 321 // 'title.week_view' => 'Week View',
 
 323 // Section for common strings inside combo boxes on forms. Strings shared between forms shall be placed here.
 
 324 // Strings that are used in a single form must go to the specific form section.
 
 325 // TODO: translate the following.
 
 326 // 'dropdown.all' => '--- all ---',
 
 327 // 'dropdown.no' => '--- no ---',
 
 328 // 'dropdown.current_day' => 'today',
 
 329 // 'dropdown.previous_day' => 'yesterday',
 
 330 // 'dropdown.selected_day' => 'day',
 
 331 // 'dropdown.current_week' => 'this week',
 
 332 // 'dropdown.previous_week' => 'previous week',
 
 333 // 'dropdown.selected_week' => 'week',
 
 334 // 'dropdown.current_month' => 'this month',
 
 335 // 'dropdown.previous_month' => 'previous month',
 
 336 // 'dropdown.selected_month' => 'month',
 
 337 // 'dropdown.current_year' => 'this year',
 
 338 // 'dropdown.previous_year' => 'previous year',
 
 339 // 'dropdown.selected_year' => 'year',
 
 340 // 'dropdown.all_time' => 'all time',
 
 341 'dropdown.projects' => 'projekty',
 
 342 // TODO: translate the following.
 
 343 // 'dropdown.tasks' => 'tasks',
 
 344 // 'dropdown.clients' => 'clients',
 
 345 // 'dropdown.select' => '--- select ---',
 
 346 // 'dropdown.select_invoice' => '--- select invoice ---',
 
 347 // 'dropdown.status_active' => 'active',
 
 348 // 'dropdown.status_inactive' => 'inactive',
 
 349 // 'dropdown.delete'=>'delete',
 
 350 // 'dropdown.do_not_delete'=>'do not delete',
 
 351 // 'dropdown.paid' => 'paid',
 
 352 // 'dropdown.not_paid' => 'not paid',
 
 354 // Login form. See example at https://timetracker.anuko.com/login.php.
 
 355 // TODO: translate the following.
 
 356 // 'form.login.forgot_password' => 'Forgot password?',
 
 357 // '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.',
 
 359 // Resetting Password form. See example at https://timetracker.anuko.com/password_reset.php.
 
 360 // TODO: translate the following.
 
 361 // 'form.reset_password.message' => 'Password reset request sent by email.',
 
 362 // 'form.reset_password.email_subject' => 'Anuko Time Tracker password reset request',
 
 363 // '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",
 
 365 // Changing Password form. See example at https://timetracker.anuko.com/password_change.php?ref=1.
 
 366 // TODO: translate the following.
 
 367 // 'form.change_password.tip' => 'Type new password and click on Save.',
 
 369 // Time form. See example at https://timetracker.anuko.com/time.php.
 
 370 // TODO: translate the following.
 
 371 // 'form.time.duration_format' => '(hh:mm or 0.0h)',
 
 372 // 'form.time.billable' => 'Billable',
 
 373 // 'form.time.uncompleted' => 'Uncompleted',
 
 374 // 'form.time.remaining_quota' => 'Remaining quota',
 
 375 // 'form.time.over_quota' => 'Over quota',
 
 377 // Editing Time Record form. See example at https://timetracker.anuko.com/time_edit.php (get there by editing an uncompleted time record).
 
 378 // TODO: translate the following.
 
 379 // 'form.time_edit.uncompleted' => 'This record was saved with only start time. It is not an error.',
 
 381 // Week view form. See example at https://timetracker.anuko.com/week.php.
 
 382 // TODO: translate the following.
 
 383 // 'form.week.new_entry' => 'New entry',
 
 385 // Reports form. See example at https://timetracker.anuko.com/reports.php
 
 386 // TODO: translate the following.
 
 387 // 'form.reports.save_as_favorite' => 'Save as favorite',
 
 388 'form.reports.confirm_delete' => 'Opravdu chceš vymazat tuto položku z oblíbených?',
 
 389 // TODO: translate the following.
 
 390 // 'form.reports.include_billable' => 'billable',
 
 391 // 'form.reports.include_not_billable' => 'not billable',
 
 392 // 'form.reports.include_invoiced' => 'invoiced',
 
 393 // 'form.reports.include_not_invoiced' => 'not invoiced',
 
 394 // 'form.reports.select_period' => 'Select time period',
 
 395 // 'form.reports.set_period' => 'or set dates',
 
 396 // 'form.reports.show_fields' => 'Show fields',
 
 397 // 'form.reports.group_by' => 'Group by',
 
 398 // 'form.reports.group_by_no' => '--- no grouping ---',
 
 399 // 'form.reports.group_by_date' => 'date',
 
 400 // 'form.reports.group_by_user' => 'user',
 
 401 // 'form.reports.group_by_client' => 'client',
 
 402 // 'form.reports.group_by_project' => 'project',
 
 403 // 'form.reports.group_by_task' => 'task',
 
 404 // 'form.reports.totals_only' => 'Totals only',
 
 407 // TODO: refactoring ongoing down from here.
 
 409 // password reminder form attributes
 
 410 "form.fpass.title" => 'resetovat heslo',
 
 411 "form.fpass.login" => 'přihlásit',
 
 412 "form.fpass.send_pass_str" => 'zaslán požadavek k vymazání hesla',
 
 413 "form.fpass.send_pass_subj" => 'Anuko Time Tracker požadavek na vymazání hesla',
 
 414 // Note to translators: this string needs to be translated.
 
 415 // "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",
 
 416 "form.fpass.reset_comment" => "pro změnu hesla jej napište a zvolte uložit",
 
 418 // administrator form
 
 419 "form.admin.title" => 'administrator',
 
 420 "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!).',
 
 422 "form.admin.change_pass" => 'změna hesla účtu administrator',
 
 423 "form.admin.profile.title" => 'týmy',
 
 424 "form.admin.profile.noprofiles" => 'vaše databáze je prázdná. přihlašte se jako admin a vytvořte nový tým.',
 
 425 "form.admin.profile.comment" => 'smazat tým',
 
 426 "form.admin.profile.th.id" => 'id',
 
 427 "form.admin.profile.th.active" => 'aktovní',
 
 428 // Note to translators: the strings below are missing in the translation and must be added
 
 429 // "form.admin.custom_date_format" => "date format",
 
 430 // "form.admin.custom_time_format" => "time format",
 
 431 // "form.admin.start_week" => "first day of week",
 
 433 // my time form attributes
 
 434 "form.mytime.title" => 'můj deník',
 
 435 "form.mytime.edit_title" => 'upravit časový záznam',
 
 436 "form.mytime.del_str" => 'smazat časový záznam',
 
 437 // Note to translators: "form.mytime.time_form" => ' (hh:mm)', // the string must be translated
 
 438 "form.mytime.date" => 'datum',
 
 439 "form.mytime.project" => 'projekt',
 
 440 "form.mytime.start" => 'začátek',
 
 441 "form.mytime.finish" => 'konec',
 
 442 "form.mytime.duration" => 'trvání',
 
 443 "form.mytime.note" => 'poznámka',
 
 444 "form.mytime.daily" => 'denní práce',
 
 445 "form.mytime.total" => 'součet hodin: ',
 
 446 "form.mytime.th.project" => 'projekt',
 
 447 "form.mytime.th.start" => 'začátek',
 
 448 "form.mytime.th.finish" => 'konec',
 
 449 "form.mytime.th.duration" => 'trvání',
 
 450 "form.mytime.th.note" => 'poznámka',
 
 451 "form.mytime.del_yes" => 'časový záznam úspěšně odstraněn',
 
 452 "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.',
 
 453 "form.mytime.billable" => 'k fakturaci',
 
 454 "form.mytime.warn_tozero_rec" => 'tento záznam musí být smazán, neboť období je uzamčeno',
 
 455 // Note to translators: the string below is missing in the translation and must be added
 
 456 // "form.mytime.uncompleted" => 'uncompleted',
 
 458 // profile form attributes
 
 459 // Note to translators: we need a more accurate translation of form.profile.create_title
 
 460 "form.profile.create_title" => 'vytvořit nový manažerský účet',
 
 461 "form.profile.edit_title" => 'upravit profil',
 
 462 "form.profile.login" => 'přihlásit',
 
 464 "form.profile.showchart" => 'zobrazuj grafy',
 
 466 // people form attributes
 
 467 "form.people.ppl_str" => 'pracovnící',
 
 468 "form.people.createu_str" => 'vytváření nového uživatele',
 
 469 "form.people.edit_str" => 'nastavení uživatele',
 
 470 "form.people.del_str" => 'smazat uživatele',
 
 471 "form.people.th.login" => 'přihlásit',
 
 472 "form.people.th.role" => 'role',
 
 473 "form.people.th.status" => 'status',
 
 474 "form.people.th.project" => 'projekt',
 
 475 "form.people.th.rate" => 'sazba',
 
 476 "form.people.manager" => 'manažer',
 
 477 "form.people.comanager" => 'spolumanažer',
 
 478 "form.people.empl" => 'uživatel',
 
 479 "form.people.login" => 'přihlásit',
 
 481 "form.people.rate" => 'hodinová sazba',
 
 482 "form.people.comanager" => 'spolumanažer',
 
 483 "form.people.projects" => 'projekty',
 
 485 // projects form attributes
 
 486 "form.project.proj_title" => 'projekty',
 
 487 "form.project.edit_str" => 'upravit projekt',
 
 488 "form.project.add_str" => 'pridat nový projekt',
 
 489 "form.project.del_str" => 'smazat projekt',
 
 491 // activities form attributes
 
 492 "form.activity.project" => 'projekt',
 
 495 "form.report.from" => 'počáteční datum',
 
 496 "form.report.to" => 'koncové datum',
 
 497 "form.report.groupby_user" => 'uživatel',
 
 498 "form.report.groupby_project" => 'projekt',
 
 499 "form.report.duration" => 'trvání',
 
 500 "form.report.start" => 'počátek',
 
 501 "form.report.finish" => 'konec',
 
 502 "form.report.note" => 'poznámka',
 
 503 "form.report.project" => 'projekt',
 
 504 "form.report.totals_only" => 'pouze součty',
 
 505 "form.report.total" => 'součty hodin',
 
 506 "form.report.th.empllist" => 'uzivatel',
 
 507 "form.report.th.date" => 'datum',
 
 508 "form.report.th.project" => 'projekt',
 
 509 "form.report.th.start" => 'počátek',
 
 510 "form.report.th.finish" => 'konec',
 
 511 "form.report.th.duration" => 'trvání',
 
 512 "form.report.th.note" => 'poznámka',
 
 514 // mail form attributes
 
 515 "form.mail.from" => 'od',
 
 516 "form.mail.to" => 'komu',
 
 517 "form.mail.comment" => 'komentář',
 
 518 "form.mail.above" => 'poslat sestavu e-mailem',
 
 519 // Note to translators: this string needs to be translated.
 
 520 // "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.',
 
 521 "form.mail.sending_str" => '<b>zpráva odeslána</b>',
 
 523 // invoice attributes
 
 524 "form.invoice.title" => 'faktura',
 
 525 "form.invoice.caption" => 'faktura',
 
 526 "form.invoice.above" => 'fakturační informace',
 
 527 "form.invoice.select_cust" => 'výběr firmy',
 
 528 "form.invoice.fillform" => 'vyplňte pole',
 
 529 "form.invoice.date" => 'datum',
 
 530 "form.invoice.number" => 'faktura číslo',
 
 531 "form.invoice.tax" => 'DPH',
 
 532 "form.invoice.comment" => 'komentář ',
 
 533 "form.invoice.th.username" => 'osoba',
 
 534 "form.invoice.th.time" => 'hodin',
 
 535 "form.invoice.th.rate" => 'sazba',
 
 536 "form.invoice.th.summ" => 'množství',
 
 537 "form.invoice.subtotal" => 'subtotal',
 
 538 "form.invoice.customer" => 'zákazník',
 
 539 "form.invoice.mailinv_above" => 'poslat fakturu e-mailem',
 
 540 "form.invoice.sending_str" => '<b>faktura odeslána</b>',
 
 542 "form.migration.zip" => 'komprese',
 
 543 "form.migration.file" => 'výběr souboru',
 
 544 "form.migration.import.title" => 'importovat data',
 
 545 "form.migration.import.success" => 'import byl úspěšně dokončen',
 
 546 "form.migration.import.text" => 'importovat týmová data z xml souboru',
 
 547 "form.migration.export.title" => 'exportovat data',
 
 548 "form.migration.export.success" => 'export byl úspěšně dokončen',
 
 549 "form.migration.export.text" => 'můžete exportova týmová data do xml souboru. může se to hodit pro přesun na jiný server.',
 
 550 // Note to translators: the string below is missing in the translation and must be added
 
 551 // "form.migration.compression.none" => 'none',
 
 552 "form.migration.compression.gzip" => 'gzip',
 
 553 "form.migration.compression.bzip" => 'bzip',
 
 555 "form.client.title" => 'zákazníci',
 
 556 "form.client.add_title" => 'přidat zákazníka',
 
 557 "form.client.edit_title" => 'upravit zákazníka',
 
 558 "form.client.del_title" => 'smazat zákazníka',
 
 559 "form.client.tax" => 'DPH',
 
 560 "form.client.comment" => 'poznámka ',
 
 562 // miscellaneous strings
 
 563 "forward.forgot_password" => 'zapomenuté heslo?',
 
 564 "forward.tocsvfile" => 'exportovat data do .csv souboru',
 
 565 "forward.toxmlfile" => 'exportovat data do .xml souboru',
 
 566 "forward.geninvoice" => 'vytvořit fakturu',
 
 567 "forward.change" => 'upravit zákazníky',
 
 569 // strings inside contols on forms
 
 570 "controls.select.project" => '--- výběr projektu ---',
 
 571 "controls.select.client" => '--- výběr zákazníka ---',
 
 572 "controls.project_bind" => '--- všechny ---',
 
 573 "controls.all" => '--- vše ---',
 
 574 "controls.notbind" => '--- nic ---',
 
 575 "controls.per_tm" => 'tento měsíc',
 
 576 "controls.per_lm" => 'minulý měsíc',
 
 577 "controls.per_tw" => 'tento týden',
 
 578 "controls.per_lw" => 'minulý týden',
 
 579 "controls.per_td" => 'dnes',
 
 580 "controls.per_at" => 'od počátku',
 
 581 "controls.per_ty" => 'letos',
 
 582 "controls.sel_period" => '--- výběr období ---',
 
 583 "controls.sel_groupby" => '--- vše dohromady ---',
 
 584 "controls.inc_billable" => 'k fakturaci',
 
 585 "controls.inc_nbillable" => 'mimo fakturaci',
 
 588 "label.chart.title1" => 'činnosti uživatele',
 
 589 "label.chart.title2" => 'projekty uživatele',
 
 590 "label.chart.period" => 'přehled za období',
 
 592 "label.sel_tp" => 'výberte období',
 
 593 "label.set_tp" => 'nebo určete dny',
 
 594 "label.fields" => 'zobrazit pole',
 
 595 "label.group_title" => 'seskupit podle',
 
 596 "label.inv_str" => 'faktura',
 
 597 "label.set_empl" => 'výběr uživatelů',
 
 598 "label.sel_all" => 'vybrat všechno',
 
 599 "label.sel_none" => 'zrušit výběr',
 
 600 "label.or" => 'nebo',
 
 601 "label.disable" => 'zakázat',
 
 602 "label.enable" => 'povolit',
 
 603 "label.hrs" => 'hodin',