1<?php
2//
3// ZoneMinder web UK English language file, $Date$, $Revision$
4// Copyright (C) 2001-2008 Philip Coombes
5//
6// This program is free software; you can redistribute it and/or
7// modify it under the terms of the GNU General Public License
8// as published by the Free Software Foundation; either version 2
9// of the License, or (at your option) any later version.
10//
11// This program is distributed in the hope that it will be useful,
12// but WITHOUT ANY WARRANTY; without even the implied warranty of
13// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14// GNU General Public License for more details.
15//
16// You should have received a copy of the GNU General Public License
17// along with this program; if not, write to the Free Software
18// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19//
20
21// ZoneMinder Czech Translation by Lukas Pokorny/Mlada Boleslav
22
23// Notes for Translators
24// 0. Get some credit, put your name in the line above (optional)
25// 1. When composing the language tokens in your language you should try and keep to roughly the
26//   same length text if possible. Abbreviate where necessary as spacing is quite close in a number of places.
27// 2. There are four types of string replacement
28//   a) Simple replacements are words or short phrases that are static and used directly. This type of
29//     replacement can be used 'as is'.
30//   b) Complex replacements involve some dynamic element being included and so may require substitution
31//     or changing into a different order. The token listed in this file will be passed through sprintf as
32//     a formatting string. If the dynamic element is a number you will usually need to use a variable
33//     replacement also as described below.
34//   c) Variable replacements are used in conjunction with complex replacements and involve the generation
35//     of a singular or plural noun depending on the number passed into the zmVlang function. See the
36//     the zmVlang section below for a further description of this.
37//   d) Optional strings which can be used to replace the prompts and/or help text for the Options section
38//     of the web interface. These are not listed below as they are quite large and held in the database
39//     so that they can also be used by the zmconfig.pl script. However you can build up your own list
40//     quite easily from the Config table in the database if necessary.
41// 3. The tokens listed below are not used to build up phrases or sentences from single words. Therefore
42//   you can safely assume that a single word token will only be used in that context.
43// 4. In new language files, or if you are changing only a few words or phrases it makes sense from a
44//   maintenance point of view to include the original language file and override the old definitions rather
45//   than copy all the language tokens across. To do this change the line below to whatever your base language
46//   is and uncomment it.
47//require_once( 'zm_lang_en_gb.php' );
48
49// You may need to change the character set here, if your web server does not already
50// do this by default, uncomment this if required.
51//
52// Example
53//header( "Content-Type: text/html; charset=iso-8859-2" );
54
55// You may need to change your locale here if your default one is incorrect for the
56// language described in this file, or if you have multiple languages supported.
57// If you do need to change your locale, be aware that the format of this function
58// is subtlely different in versions of PHP before and after 4.3.0, see
59// http://uk2.php.net/manual/en/function.setlocale.php for details.
60// Also be aware that changing the whole locale may affect some floating point or decimal
61// arithmetic in the database, if this is the case change only the individual locale areas
62// that don't affect this rather than all at once. See the examples below.
63// Finally, depending on your setup, PHP may not enjoy have multiple locales in a shared
64// threaded environment, if you get funny errors it may be this.
65//
66// Examples
67//setlocale( 'LC_ALL', 'cs_CZ' ); All locale settings pre-4.3.0
68// setlocale( LC_ALL, 'en_GB' ); All locale settings 4.3.0 and after
69// setlocale( LC_CTYPE, 'en_GB' ); Character class settings 4.3.0 and after
70// setlocale( LC_TIME, 'en_GB' ); Date and time formatting 4.3.0 and after
71
72// Simple String Replacements
73$SLANG = array(
74    '24BitColour'          => '24 bit barevná',
75    '32BitColour'          => '32 bit barevná',          // Added - 2011-06-15
76    '8BitGrey'             => '8 bit šedá škála',
77    'Action'               => 'Akce',
78    'Actual'               => 'Skutečná',
79    'AddNewControl'        => 'Přidat nové řízení',
80    'AddNewMonitor'        => 'Přidat kameru',
81    'AddNewServer'         => 'Add New Server',         // Added - 2018-08-30
82    'AddNewStorage'        => 'Add New Storage',        // Added - 2018-08-30
83    'AddNewUser'           => 'Přidat uživatele',
84    'AddNewZone'           => 'Přidat zónu',
85    'Alarm'                => 'Alarm',
86    'AlarmBrFrames'        => 'Alarm<br/>Snímky',
87    'AlarmFrame'           => 'Alarm snímek',
88    'AlarmFrameCount'      => 'Počet alarm snímků',
89    'AlarmLimits'          => 'Limity alarmu',
90    'AlarmMaximumFPS'      => 'Alarm Maximum FPS',
91    'AlarmPx'              => 'Alarm Px',
92    'AlarmRGBUnset'        => 'You must set an alarm RGB colour',
93    'AlarmRefImageBlendPct'=> 'Alarm Reference Image Blend %ge', // Added - 2015-04-18
94    'Alert'                => 'Pozor',
95    'All'                  => 'Všechny',
96    'AnalysisFPS'          => 'Analysis FPS',           // Added - 2015-07-22
97    'AnalysisUpdateDelay'  => 'Analysis Update Delay',  // Added - 2015-07-23
98    'Apply'                => 'Použít',
99    'ApplyingStateChange'  => 'Aplikuji změnu stavu',
100    'ArchArchived'         => 'Pouze archivované',
101    'ArchUnarchived'       => 'Pouze nearchivované',
102    'Archive'              => 'Archiv',
103    'Archived'             => 'Archivován',
104    'Area'                 => 'Area',
105    'AreaUnits'            => 'Area (px/%)',
106    'AttrAlarmFrames'      => 'Alarm snímky',
107    'AttrArchiveStatus'    => 'Archiv status',
108    'AttrAvgScore'         => 'Prům. skóre',
109    'AttrCause'            => 'Příčina',
110    'AttrDiskBlocks'       => 'Bloky disku',
111    'AttrDiskPercent'      => 'Zaplnění disku',
112    'AttrDiskSpace'        => 'Disk Space',             // Added - 2018-08-30
113    'AttrDuration'         => 'Průběh',
114    'AttrEndDate'          => 'End Date',               // Added - 2018-08-30
115    'AttrEndDateTime'      => 'End Date/Time',          // Added - 2018-08-30
116    'AttrEndTime'          => 'End Time',               // Added - 2018-08-30
117    'AttrEndWeekday'       => 'End Weekday',            // Added - 2018-08-30
118    'AttrFilterServer'     => 'Server Filter is Running On', // Added - 2018-08-30
119    'AttrFrames'           => 'Snímky',
120    'AttrId'               => 'Id',
121    'AttrMaxScore'         => 'Max. skóre',
122    'AttrMonitorId'        => 'Kamera Id',
123    'AttrMonitorName'      => 'Jméno kamery',
124    'AttrMonitorServer'    => 'Server Monitor is Running On', // Added - 2018-08-30
125    'AttrName'             => 'Jméno',
126    'AttrNotes'            => 'Notes',
127    'AttrStartDate'        => 'Start Date',             // Added - 2018-08-30
128    'AttrStartDateTime'    => 'Start Date/Time',        // Added - 2018-08-30
129    'AttrStartTime'        => 'Start Time',             // Added - 2018-08-30
130    'AttrStartWeekday'     => 'Start Weekday',          // Added - 2018-08-30
131    'AttrStateId'          => 'Run State',              // Added - 2018-08-30
132    'AttrStorageArea'      => 'Storage Area',           // Added - 2018-08-30
133    'AttrStorageServer'    => 'Server Hosting Storage', // Added - 2018-08-30
134    'AttrSystemLoad'       => 'System Load',
135    'AttrTotalScore'       => 'Celkové skóre',
136    'Auto'                 => 'Auto',
137    'AutoStopTimeout'      => 'Časový limit pro vypršení',
138    'Available'            => 'Available',              // Added - 2009-03-31
139    'AvgBrScore'           => 'Prům.<br/>Skóre',
140    'Background'           => 'Background',
141    'BackgroundFilter'     => 'Run filter in background',
142    'BadAlarmFrameCount'   => 'Alarm frame count must be an integer of one or more',
143    'BadAlarmMaxFPS'       => 'Alarm Maximum FPS must be a positive integer or floating point value',
144    'BadAnalysisFPS'       => 'Analysis FPS must be a positive integer or floating point value', // Added - 2015-07-22
145    'BadAnalysisUpdateDelay'=> 'Analysis update delay must be set to an integer of zero or more', // Added - 2015-07-23
146    'BadChannel'           => 'Channel must be set to an integer of zero or more',
147    'BadColours'           => 'Target colour must be set to a valid value', // Added - 2011-06-15
148    'BadDevice'            => 'Device must be set to a valid value',
149    'BadFPSReportInterval' => 'FPS report interval buffer count must be an integer of 0 or more',
150    'BadFormat'            => 'Format must be set to an integer of zero or more',
151    'BadFrameSkip'         => 'Frame skip count must be an integer of zero or more',
152    'BadHeight'            => 'Height must be set to a valid value',
153    'BadHost'              => 'Host must be set to a valid ip address or hostname, do not include http://',
154    'BadImageBufferCount'  => 'Image buffer size must be an integer of 2 or more',
155    'BadLabelX'            => 'Label X co-ordinate must be set to an integer of zero or more',
156    'BadLabelY'            => 'Label Y co-ordinate must be set to an integer of zero or more',
157    'BadMaxFPS'            => 'Maximum FPS must be a positive integer or floating point value',
158    'BadMotionFrameSkip'   => 'Motion Frame skip count must be an integer of zero or more',
159    'BadNameChars'         => 'Jména moho obsahovat pouze alfanumerické znaky a podtržítko či pomlčku',
160    'BadPalette'           => 'Palette must be set to a valid value', // Added - 2009-03-31
161    'BadPath'              => 'Path must be set to a valid value',
162    'BadPort'              => 'Port must be set to a valid number',
163    'BadPostEventCount'    => 'Post event image count must be an integer of zero or more',
164    'BadPreEventCount'     => 'Pre event image count must be at least zero, and less than image buffer size',
165    'BadRefBlendPerc'      => 'Reference blend percentage must be a positive integer',
166    'BadSectionLength'     => 'Section length must be an integer of 30 or more',
167    'BadSignalCheckColour' => 'Signal check colour must be a valid RGB colour string',
168    'BadSourceType'        => 'Source Type \"Web Site\" requires the Function to be set to \"Monitor\"', // Added - 2018-08-30
169    'BadStreamReplayBuffer'=> 'Stream replay buffer must be an integer of zero or more',
170    'BadWarmupCount'       => 'Warmup frames must be an integer of zero or more',
171    'BadWebColour'         => 'Web colour must be a valid web colour string',
172    'BadWebSitePath'       => 'Please enter a complete website url, including the http:// or https:// prefix.', // Added - 2018-08-30
173    'BadWidth'             => 'Width must be set to a valid value',
174    'Bandwidth'            => 'Rychlost sítě',
175    'BandwidthHead'        => 'Bandwidth',	// This is the end of the bandwidth status on the top of the console, different in many language due to phrasing
176    'BlobPx'               => 'Značka Px',
177    'BlobSizes'            => 'Velikost značky',
178    'Blobs'                => 'Značky',
179    'Brightness'           => 'Světlost',
180    'Buffer'               => 'Buffer',                 // Added - 2015-04-18
181    'Buffers'              => 'Bufery',
182    'CSSDescription'       => 'Change the default css for this computer', // Added - 2015-04-18
183    'CanAutoFocus'         => 'Umí automaticky zaostřit',
184    'CanAutoGain'          => 'Umí automatický zisk',
185    'CanAutoIris'          => 'Umí auto iris',
186    'CanAutoWhite'         => 'Umí automaticky vyvážit bílou',
187    'CanAutoZoom'          => 'Umí automaticky zoomovat',
188    'CanFocus'             => 'Umí zaostřit',
189    'CanFocusAbs'          => 'Umí zaostřit absolutně',
190    'CanFocusCon'          => 'Umí průběžně zaostřit',
191    'CanFocusRel'          => 'Umí relativně zaostřit',
192    'CanGain'              => 'Umí zisk',
193    'CanGainAbs'           => 'Umí absolutní zisk',
194    'CanGainCon'           => 'Umí průběžný zisk',
195    'CanGainRel'           => 'Umí relativní zisk',
196    'CanIris'              => 'Umí iris',
197    'CanIrisAbs'           => 'Umí absolutní iris',
198    'CanIrisCon'           => 'Umí průběžný iris',
199    'CanIrisRel'           => 'Umí relativní iris',
200    'CanMove'              => 'Umí pohyb',
201    'CanMoveAbs'           => 'Umí absoultní pohyb',
202    'CanMoveCon'           => 'Umí průběžný pohyb',
203    'CanMoveDiag'          => 'Umí diagonální pohyb',
204    'CanMoveMap'           => 'Umí mapovaný pohyb',
205    'CanMoveRel'           => 'Umí relativní pohyb',
206    'CanPan'               => 'Umí otáčení',
207    'CanReset'             => 'Umí reset',
208	'CanReboot'             => 'Can Reboot',
209    'CanSetPresets'        => 'Umí navolit předvolby',
210    'CanSleep'             => 'Může spát',
211    'CanTilt'              => 'Umí náklon',
212    'CanWake'              => 'Lze vzbudit',
213    'CanWhite'             => 'Umí vyvážení bílé',
214    'CanWhiteAbs'          => 'Umí absolutní vyvážení bílé',
215    'CanWhiteBal'          => 'Umí vyvážení bílé',
216    'CanWhiteCon'          => 'Umí průběžné vyvážení bílé',
217    'CanWhiteRel'          => 'Umí relativní vyvážení bílé',
218    'CanZoom'              => 'Umí zoom',
219    'CanZoomAbs'           => 'Umí absolutní zoom',
220    'CanZoomCon'           => 'Umí průběžný zoom',
221    'CanZoomRel'           => 'Umí relativní zoom',
222    'Cancel'               => 'Zrušit',
223    'CancelForcedAlarm'    => 'Zastavit spuštěný alarm',
224    'CaptureHeight'        => 'Výška zdrojového snímku',
225    'CaptureMethod'        => 'Capture Method',         // Added - 2009-02-08
226    'CapturePalette'       => 'Paleta zdrojového snímku',
227    'CaptureResolution'    => 'Capture Resolution',     // Added - 2015-04-18
228    'CaptureWidth'         => 'Šířka zdrojového snímku',
229    'Cause'                => 'Příčina',
230    'CheckMethod'          => 'Metoda značkování alarmem',
231    'ChooseDetectedCamera' => 'Choose Detected Camera', // Added - 2009-03-31
232    'ChooseFilter'         => 'Vybrat filtr',
233    'ChooseLogFormat'      => 'Choose a log format',    // Added - 2011-06-17
234    'ChooseLogSelection'   => 'Choose a log selection', // Added - 2011-06-17
235    'ChoosePreset'         => 'Choose Preset',
236    'Clear'                => 'Clear',                  // Added - 2011-06-16
237    'CloneMonitor'         => 'Clone',                  // Added - 2018-08-30
238    'Close'                => 'Zavřít',
239    'Colour'               => 'Barva',
240    'Command'              => 'Příkaz',
241    'Component'            => 'Component',              // Added - 2011-06-16
242    'ConcurrentFilter'     => 'Run filter concurrently', // Added - 2018-08-30
243    'Config'               => 'Nastavení',
244    'ConfiguredFor'        => 'Nastaveno pro',
245    'ConfirmDeleteEvents'  => 'Are you sure you wish to delete the selected events?',
246    'ConfirmPassword'      => 'Potvrdit heslo',
247    'ConjAnd'              => 'a',
248    'ConjOr'               => 'nebo',
249    'Console'              => 'Konzola',
250    'ContactAdmin'         => 'Pro detailní info kontaktujte Vašeho administrátora.',
251    'Continue'             => 'Pokračovat',
252    'Contrast'             => 'Kontrast',
253    'Control'              => 'Řízení',
254    'ControlAddress'       => 'Adresa řízení',
255    'ControlCap'           => 'Schopnosti řízení',
256    'ControlCaps'          => 'Typy řízení',
257    'ControlDevice'        => 'Zařízení řízení',
258    'ControlType'          => 'Typ řízení',
259    'Controllable'         => 'Říditelná',
260    'Current'              => 'Current',                // Added - 2015-04-18
261    'Cycle'                => 'Cyklus',
262    'CycleWatch'           => 'Cyklické prohlížení',
263    'DateTime'             => 'Date/Time',              // Added - 2011-06-16
264    'Day'                  => 'Den',
265    'Debug'                => 'Debug',
266    'DefaultRate'          => 'Default Rate',
267    'DefaultScale'         => 'Přednastavená velikost',
268    'DefaultView'          => 'Default View',
269    'Deinterlacing'        => 'Deinterlacing',          // Added - 2015-04-18
270    'Delay'                => 'Delay',                  // Added - 2015-04-18
271    'Delete'               => 'Smazat',
272    'DeleteAndNext'        => 'Smazat &amp; Další',
273    'DeleteAndPrev'        => 'Smazat &amp; Předchozí',
274    'DeleteSavedFilter'    => 'Smazat filtr',
275    'Description'          => 'Popis',
276    'DetectedCameras'      => 'Detected Cameras',       // Added - 2009-03-31
277    'DetectedProfiles'     => 'Detected Profiles',      // Added - 2015-04-18
278    'Device'               => 'Device',                 // Added - 2009-02-08
279    'DeviceChannel'        => 'Kanál zařízení',
280    'DeviceFormat'         => 'Formát zařízení',
281    'DeviceNumber'         => 'Číslo zarízení',
282    'DevicePath'           => 'Cesta k zařízení',
283    'Devices'              => 'Devices',
284    'Dimensions'           => 'Rozměry',
285    'DisableAlarms'        => 'Zakázat alarmy',
286    'Disk'                 => 'Disk',
287    'Display'              => 'Display',                // Added - 2011-01-30
288    'Displaying'           => 'Displaying',             // Added - 2011-06-16
289    'DoNativeMotionDetection'=> 'Do Native Motion Detection',
290    'Donate'               => 'Prosím podpořte',
291    'DonateAlready'        => 'Ne, už jsem podpořil',
292    'DonateEnticement'     => 'Již nějakou dobu používáte software ZoneMinder k ochraně svého majetku a předpokládám, že jej shledáváte užitečným. Přestože je ZoneMinder, znovu připomínám, zdarma a volně šířený software, stojí jeho vývoj a podpora nějaké peníze. Pokud byste chtěl/a podpořit budoucí vývoj a nové možnosti softwaru, prosím zvažte darování finanční pomoci. Darování je, samozřejmě, dobrovolné, ale zato velmi ceněné můžete přispět jakou částkou chcete.<br><br>Pokud máte zájem podpořit náš tým, prosím, vyberte níže uvedenou možnost, nebo navštivte https://zoneminder.com/donate/.<br><br>Děkuji Vám že jste si vybral/a software ZoneMinder a nezapomeňte navštívit fórum na ZoneMinder.com pro podporu a návrhy jak udělat ZoneMinder ještě lepším než je dnes.',
293    'DonateRemindDay'      => 'Nyní ne, připomenout za 1 den',
294    'DonateRemindHour'     => 'Nyní ne, připomenout za hodinu',
295    'DonateRemindMonth'    => 'Nyní ne, připomenout za měsíc',
296    'DonateRemindNever'    => 'Ne, nechci podpořit ZoneMinder, nepřipomínat',
297    'DonateRemindWeek'     => 'Nyní ne, připomenout za týden',
298    'DonateYes'            => 'Ano, chcit podpořit ZoneMinder nyní',
299    'Download'             => 'Stáhnout',
300    'DownloadVideo'        => 'Download Video',         // Added - 2018-08-30
301    'DuplicateMonitorName' => 'Duplicate Monitor Name', // Added - 2009-03-31
302    'Duration'             => 'Průběh',
303    'Edit'                 => 'Editovat',
304    'EditLayout'           => 'Edit Layout',            // Added - 2018-08-30
305    'Email'                => 'Email',
306    'EnableAlarms'         => 'Povolit alarmy',
307    'Enabled'              => 'Povoleno',
308    'EnterNewFilterName'   => 'Zadejte nové jméno filtru',
309    'Error'                => 'Chyba',
310    'ErrorBrackets'        => 'Chyba, zkontrolujte prosím závorky',
311    'ErrorValidValue'      => 'Chyba, zkontrolujte že podmínky mají správné hodnoty',
312    'Etc'                  => 'atd',
313    'Event'                => 'Záznam',
314    'EventFilter'          => 'Filtr záznamů',
315    'EventId'              => 'Id záznamu',
316    'EventName'            => 'Jméno záznamu',
317    'EventPrefix'          => 'Prefix záznamu',
318    'Events'               => 'Záznamy',
319    'Exclude'              => 'Vyjmout',
320    'Execute'              => 'Execute',
321    'Exif'                 => 'Embed EXIF data into image', // Added - 2018-08-30
322    'Export'               => 'Exportovat',
323    'ExportDetails'        => 'Exportovat detaily záznamu',
324    'ExportFailed'         => 'Chyba při exportu',
325    'ExportFormat'         => 'Formát exportovaného souboru',
326    'ExportFormatTar'      => 'Tar',
327    'ExportFormatZip'      => 'Zip',
328    'ExportFrames'         => 'Exportovat detaily snímku',
329    'ExportImageFiles'     => 'Exportovat obrazové soubory',
330    'ExportLog'            => 'Export Log',             // Added - 2011-06-17
331    'ExportMiscFiles'      => 'Exportovat ostatní soubory (jestli existují)',
332    'ExportOptions'        => 'Možnosti exportu',
333    'ExportSucceeded'      => 'Export Succeeded',       // Added - 2009-02-08
334    'ExportVideoFiles'     => 'Exportovat video soubory (jestli existují)',
335    'Exporting'            => 'Exportuji',
336    'FPS'                  => 'fps',
337    'FPSReportInterval'    => 'FPS Interval pro report',
338    'FTP'                  => 'FTP',
339    'Far'                  => 'Daleko',
340    'FastForward'          => 'Fast Forward',
341    'Feed'                 => 'Nasytit',
342    'Ffmpeg'               => 'Ffmpeg',                 // Added - 2009-02-08
343    'File'                 => 'Soubor',
344    'Filter'               => 'Filter',                 // Added - 2015-04-18
345    'FilterArchiveEvents'  => 'Archivovat všechny nalezené',
346    'FilterDeleteEvents'   => 'Smazat všechny nalezené',
347    'FilterEmailEvents'    => 'Poslat email s detaily nalezených',
348    'FilterExecuteEvents'  => 'Spustit příkaz na všech nalezených',
349    'FilterLog'            => 'Filter log',             // Added - 2015-04-18
350    'FilterMessageEvents'  => 'Podat zprávu o všech nalezených',
351    'FilterMoveEvents'     => 'Move all matches',       // Added - 2018-08-30
352    'FilterPx'             => 'Filtr Px',
353    'FilterUnset'          => 'You must specify a filter width and height',
354    'FilterUpdateDiskSpace'=> 'Update used disk space', // Added - 2018-08-30
355    'FilterUploadEvents'   => 'Uploadovat nalezené',
356    'FilterVideoEvents'    => 'Create video for all matches',
357    'Filters'              => 'Filtry',
358    'First'                => 'První',
359    'FlippedHori'          => 'Překlopený vodorovně',
360    'FlippedVert'          => 'Překlopený svisle',
361    'FnMocord'              => 'Mocord',            // Added 2013.08.16.
362    'FnModect'              => 'Modect',            // Added 2013.08.16.
363    'FnMonitor'             => 'Monitor',            // Added 2013.08.16.
364    'FnNodect'              => 'Nodect',            // Added 2013.08.16.
365    'FnNone'                => 'None',            // Added 2013.08.16.
366    'FnRecord'              => 'Record',            // Added 2013.08.16.
367    'Focus'                => 'Zaostření',
368    'ForceAlarm'           => 'Spustit alarm',
369    'Format'               => 'Formát',
370    'Frame'                => 'Snímek',
371    'FrameId'              => 'Snímek Id',
372    'FrameRate'            => 'Rychlost snímků',
373    'FrameSkip'            => 'Vynechat snímek',
374    'Frames'               => 'Snímky',
375    'Func'                 => 'Funkce',
376    'Function'             => 'Funkce',
377    'Gain'                 => 'Zisk',
378    'General'              => 'General',
379    'GenerateDownload'     => 'Generate Download',      // Added - 2018-08-30
380    'GenerateVideo'        => 'Generovat video',
381    'GeneratingVideo'      => 'Generuji video',
382    'GoToZoneMinder'       => 'Jít na ZoneMinder.com',
383    'Grey'                 => 'Šedá',
384    'Group'                => 'Group',
385    'Groups'               => 'Skupiny',
386    'HasFocusSpeed'        => 'Má rychlost zaostření',
387    'HasGainSpeed'         => 'Má rychlost zisku',
388    'HasHomePreset'        => 'Má Home volbu',
389    'HasIrisSpeed'         => 'Má rychlost irisu',
390    'HasPanSpeed'          => 'Má rychlost otáčení',
391    'HasPresets'           => 'Má předvolby',
392    'HasTiltSpeed'         => 'Má rychlost náklonu',
393    'HasTurboPan'          => 'Má Turbo otáčení',
394    'HasTurboTilt'         => 'Má Turbo náklon',
395    'HasWhiteSpeed'        => 'Má rychlost vyvážení bílé',
396    'HasZoomSpeed'         => 'Má rychlost zoomu',
397    'High'                 => 'Rychlá',
398    'HighBW'               => 'Rychlá&nbsp;B/W',
399    'Home'                 => 'Domů',
400    'Hostname'             => 'Hostname',               // Added - 2018-08-30
401    'Hour'                 => 'Hodina',
402    'Hue'                  => 'Odstín',
403    'Id'                   => 'Id',
404    'Idle'                 => 'Připraven',
405    'Ignore'               => 'Ignorovat',
406    'Image'                => 'Obraz',
407    'ImageBufferSize'      => 'Velikost buferu snímků',
408    'Images'               => 'Images',
409    'In'                   => 'Dovnitř',
410    'Include'              => 'Vložit',
411    'Inverted'             => 'Převráceně',
412    'Iris'                 => 'Iris',
413    'KeyString'            => 'Key String',
414    'Label'                => 'Label',
415    'Language'             => 'Jazyk',
416    'Last'                 => 'Poslední',
417    'Layout'               => 'Layout',                 // Added - 2009-02-08
418    'Level'                => 'Level',                  // Added - 2011-06-16
419    'Libvlc'               => 'Libvlc',
420    'LimitResultsPost'     => 'výsledků', // This is used at the end of the phrase 'Limit to first N results only'
421    'LimitResultsPre'      => 'Zobrazit pouze prvních', // This is used at the beginning of the phrase 'Limit to first N results only'
422    'Line'                 => 'Line',                   // Added - 2011-06-16
423    'LinkedMonitors'       => 'Linked Monitors',
424    'List'                 => 'Seznam',
425    'ListMatches'          => 'List Matches',           // Added - 2018-08-30
426    'Load'                 => 'Load',
427    'Local'                => 'Lokální',
428    'Log'                  => 'Log',                    // Added - 2011-06-16
429    'LoggedInAs'           => 'Přihlášen jako',
430    'Logging'              => 'Logging',                // Added - 2011-06-16
431    'LoggingIn'            => 'Přihlašuji',
432    'Login'                => 'Přihlásit',
433    'Logout'               => 'Odhlásit',
434    'Logs'                 => 'Logs',                   // Added - 2011-06-17
435    'Low'                  => 'Pomalá',
436    'LowBW'                => 'Pomalá&nbsp;B/W',
437    'Main'                 => 'Hlavní',
438    'Man'                  => 'Man',
439    'Manual'               => 'Manuál',
440    'Mark'                 => 'Označit',
441    'Max'                  => 'Max',
442    'MaxBandwidth'         => 'Max bandwidth',
443    'MaxBrScore'           => 'Max.<br/>skóre',
444    'MaxFocusRange'        => 'Max rozsah zaostření',
445    'MaxFocusSpeed'        => 'Max rychlost zaostření',
446    'MaxFocusStep'         => 'Max krok zaostření',
447    'MaxGainRange'         => 'Max rozsah zisku',
448    'MaxGainSpeed'         => 'Max rychlost zisku',
449    'MaxGainStep'          => 'Max krok zisku',
450    'MaxIrisRange'         => 'Max rozsah iris',
451    'MaxIrisSpeed'         => 'Max rychlost iris',
452    'MaxIrisStep'          => 'Max krok iris',
453    'MaxPanRange'          => 'Max rozsah otáčení',
454    'MaxPanSpeed'          => 'Max rychlost otáčení',
455    'MaxPanStep'           => 'Max krok otáčení',
456    'MaxTiltRange'         => 'Max rozsah náklonu',
457    'MaxTiltSpeed'         => 'Max rychlost náklonu',
458    'MaxTiltStep'          => 'Max krok náklonu',
459    'MaxWhiteRange'        => 'Max rozsah vyvážení bílé',
460    'MaxWhiteSpeed'        => 'Max rychlost vyvážení bílé',
461    'MaxWhiteStep'         => 'Max krok vyvážení bílé',
462    'MaxZoomRange'         => 'Max rozsah zoomu',
463    'MaxZoomSpeed'         => 'Max rychlost zoomu',
464    'MaxZoomStep'          => 'Max krok zoomu',
465    'MaximumFPS'           => 'Maximum FPS',
466    'Medium'               => 'Střední',
467    'MediumBW'             => 'Střední&nbsp;B/W',
468    'Message'              => 'Message',                // Added - 2011-06-16
469    'MinAlarmAreaLtMax'    => 'Minimum alarm area should be less than maximum',
470    'MinAlarmAreaUnset'    => 'You must specify the minimum alarm pixel count',
471    'MinBlobAreaLtMax'     => 'Minimum značkované oblasti by mělo být menší než maximum',
472    'MinBlobAreaUnset'     => 'You must specify the minimum blob pixel count',
473    'MinBlobLtMinFilter'   => 'Minimum blob area should be less than or equal to minimum filter area',
474    'MinBlobsLtMax'        => 'Minimum značek by mělo být menší než maximum',
475    'MinBlobsUnset'        => 'You must specify the minimum blob count',
476    'MinFilterAreaLtMax'   => 'Minimum filter area should be less than maximum',
477    'MinFilterAreaUnset'   => 'You must specify the minimum filter pixel count',
478    'MinFilterLtMinAlarm'  => 'Minimum filter area should be less than or equal to minimum alarm area',
479    'MinFocusRange'        => 'Min rozsah zaostření',
480    'MinFocusSpeed'        => 'Min rychlost zaostření',
481    'MinFocusStep'         => 'Min krok zaostření',
482    'MinGainRange'         => 'Min rozsah zisku',
483    'MinGainSpeed'         => 'Min rychlost zisku',
484    'MinGainStep'          => 'Min krok zisku',
485    'MinIrisRange'         => 'Min rozsah iris',
486    'MinIrisSpeed'         => 'Min rychlost iris',
487    'MinIrisStep'          => 'Min krok iris',
488    'MinPanRange'          => 'Min rozsah otáčení',
489    'MinPanSpeed'          => 'Min rychlost otáčení',
490    'MinPanStep'           => 'Min krok otáčení',
491    'MinPixelThresLtMax'   => 'Minimální práh pixelu by měl být menší než  maximumální',
492    'MinPixelThresUnset'   => 'You must specify a minimum pixel threshold',
493    'MinTiltRange'         => 'Min rozsah náklonu',
494    'MinTiltSpeed'         => 'Min rychlost náklonu',
495    'MinTiltStep'          => 'Min krok náklonu',
496    'MinWhiteRange'        => 'Min rozsah vyvážení bílé',
497    'MinWhiteSpeed'        => 'Min rychlost vyvážení bílé',
498    'MinWhiteStep'         => 'Min krok vyvážení bílé',
499    'MinZoomRange'         => 'Min rozsah zoomu',
500    'MinZoomSpeed'         => 'Min rychlost zoomu',
501    'MinZoomStep'          => 'Min krok zoomu',
502    'Misc'                 => 'Ostatní',
503    'Mode'                 => 'Mode',                   // Added - 2015-04-18
504    'Monitor'              => 'Kamera',
505    'MonitorIds'           => 'Id&nbsp;kamer',
506    'MonitorPreset'        => 'Monitor Preset',
507    'MonitorPresetIntro'   => 'Select an appropriate preset from the list below.<br><br>Please note that this may overwrite any values you already have configured for this monitor.<br><br>',
508    'MonitorProbe'         => 'Monitor Probe',          // Added - 2009-03-31
509    'MonitorProbeIntro'    => 'The list below shows detected analog and network cameras and whether they are already being used or available for selection.<br/><br/>Select the desired entry from the list below.<br/><br/>Please note that not all cameras may be detected and that choosing a camera here may overwrite any values you already have configured for the current monitor.<br/><br/>', // Added - 2009-03-31
510    'Monitors'             => 'Kamery',
511    'Montage'              => 'Sestřih',
512    'MontageReview'        => 'Montage Review',         // Added - 2018-08-30
513    'Month'                => 'Měsíc',
514    'More'                 => 'More',                   // Added - 2011-06-16
515    'MotionFrameSkip'      => 'Motion Frame Skip',
516    'Move'                 => 'Pohyb',
517    'Mtg2widgrd'           => '2-wide grid',              // Added 2013.08.15.
518    'Mtg3widgrd'           => '3-wide grid',              // Added 2013.08.15.
519    'Mtg3widgrx'           => '3-wide grid, scaled, enlarge on alarm',              // Added 2013.08.15.
520    'Mtg4widgrd'           => '4-wide grid',              // Added 2013.08.15.
521    'MtgDefault'           => 'Default',              // Added 2013.08.15.
522    'MustBeGe'             => 'musí být větší nebo rovno než',
523    'MustBeLe'             => 'musí být menší nebo rovno než',
524    'MustConfirmPassword'  => 'Musíte potvrdit heslo',
525    'MustSupplyPassword'   => 'Musíte zadat heslo',
526    'MustSupplyUsername'   => 'Musíte zadat uživatelské jméno',
527    'Name'                 => 'Jméno',
528    'Near'                 => 'Blízko',
529    'Network'              => 'Síť',
530    'New'                  => 'Nový',
531    'NewGroup'             => 'Nová skupina',
532    'NewLabel'             => 'New Label',
533    'NewPassword'          => 'Nové heslo',
534    'NewState'             => 'Nový stav',
535    'NewUser'              => 'Nový uživatel',
536    'Next'                 => 'Další',
537    'No'                   => 'Ne',
538    'NoDetectedCameras'    => 'No Detected Cameras',    // Added - 2009-03-31
539    'NoDetectedProfiles'   => 'No Detected Profiles',   // Added - 2018-08-30
540    'NoFramesRecorded'     => 'Pro tento snímek nejsou žádné záznamy',
541    'NoGroup'              => 'No Group',
542    'NoSavedFilters'       => 'Žádné uložené filtry',
543    'NoStatisticsRecorded' => 'Pro tento záznam/snímek nejsou zaznamenány žádné statistiky',
544    'None'                 => 'Zakázat',
545    'NoneAvailable'        => 'Žádná není dostupná',
546    'Normal'               => 'Normalní',
547    'Notes'                => 'Poznámky',
548    'NumPresets'           => 'Počet předvoleb',
549    'Off'                  => 'Off',
550    'On'                   => 'On',
551    'OnvifCredentialsIntro'=> 'Please supply user name and password for the selected camera.<br/>If no user has been created for the camera then the user given here will be created with the given password.<br/><br/>', // Added - 2015-04-18
552    'OnvifProbe'           => 'ONVIF',                  // Added - 2015-04-18
553    'OnvifProbeIntro'      => 'The list below shows detected ONVIF cameras and whether they are already being used or available for selection.<br/><br/>Select the desired entry from the list below.<br/><br/>Please note that not all cameras may be detected and that choosing a camera here may overwrite any values you already have configured for the current monitor.<br/><br/>', // Added - 2015-04-18
554    'OpEq'                 => 'rovno',
555    'OpGt'                 => 'větší',
556    'OpGtEq'               => 'větší nebo rovno',
557    'OpIn'                 => 'nin set',
558    'OpIs'                 => 'is',                     // Added - 2018-08-30
559    'OpIsNot'              => 'is not',                 // Added - 2018-08-30
560    'OpLt'                 => 'menší',
561    'OpLtEq'               => 'menší nebo rovno',
562    'OpMatches'            => 'obsahuje',
563    'OpNe'                 => 'nerovná se',
564    'OpNotIn'              => 'nnot in set',
565    'OpNotMatches'         => 'neobsahuje',
566    'Open'                 => 'Otevřít',
567    'OptionHelp'           => 'MožnostHelp',
568    'OptionRestartWarning' => 'Tyto změny se neprojeví\ndokud systém běží. Jakmile\ndokončíte provádění změn prosím\nrestartujte ZoneMinder.',
569    'OptionalEncoderParam' => 'Optional Encoder Parameters', // Added - 2018-08-30
570    'Options'              => 'Možnosti',
571    'OrEnterNewName'       => 'nebo vložte nové jméno',
572    'Order'                => 'Pořadí',
573    'Orientation'          => 'Orientace',
574    'Out'                  => 'Ven',
575    'OverwriteExisting'    => 'Přepsat existující',
576    'Paged'                => 'Strákově',
577    'Pan'                  => 'Otáčení',
578    'PanLeft'              => 'Posunout vlevo',
579    'PanRight'             => 'Posunout vpravo',
580    'PanTilt'              => 'Otáčení/Náklon',
581    'Parameter'            => 'Parametr',
582    'Password'             => 'Heslo',
583    'PasswordsDifferent'   => 'Hesla se neshodují',
584    'Paths'                => 'Cesty',
585    'Pause'                => 'Pause',
586    'Phone'                => 'Modem',
587    'PhoneBW'              => 'Modem&nbsp;B/W',
588    'Pid'                  => 'PID',                    // Added - 2011-06-16
589    'PixelDiff'            => 'Pixel Diff',
590    'Pixels'               => 'pixely',
591    'Play'                 => 'Play',
592    'PlayAll'              => 'Přehrát vše',
593    'PleaseWait'           => 'Prosím čekejte',
594    'Plugins'              => 'Plugins',
595    'Point'                => 'Point',
596    'PostEventImageBuffer' => 'Pozáznamový bufer',
597    'PreEventImageBuffer'  => 'Předzáznamový bufer',
598    'PreserveAspect'       => 'Preserve Aspect Ratio',
599    'Preset'               => 'Předvolba',
600    'Presets'              => 'Předvolby',
601    'Prev'                 => 'Zpět',
602    'Probe'                => 'Probe',                  // Added - 2009-03-31
603    'ProfileProbe'         => 'Stream Probe',           // Added - 2015-04-18
604    'ProfileProbeIntro'    => 'The list below shows the existing stream profiles of the selected camera .<br/><br/>Select the desired entry from the list below.<br/><br/>Please note that ZoneMinder cannot configure additional profiles and that choosing a camera here may overwrite any values you already have configured for the current monitor.<br/><br/>', // Added - 2015-04-18
605    'Progress'             => 'Progress',               // Added - 2015-04-18
606    'Protocol'             => 'Protocol',
607    'RTSPDescribe'         => 'Use RTSP Response Media URL', // Added - 2018-08-30
608    'RTSPTransport'        => 'RTSP Transport Protocol', // Added - 2018-08-30
609    'Rate'                 => 'Rychlost',
610    'Real'                 => 'Skutečná',
611    'RecaptchaWarning'     => 'Your reCaptcha secret key is invalid. Please correct it, or reCaptcha will not work', // Added - 2018-08-30
612    'Record'               => 'Nahrávat',
613    'RecordAudio'          => 'Whether to store the audio stream when saving an event.', // Added - 2018-08-30
614    'RefImageBlendPct'     => 'Reference Image Blend %ge',
615    'Refresh'              => 'Obnovit',
616    'Remote'               => 'Síťová',
617    'RemoteHostName'       => 'Adresa',
618    'RemoteHostPath'       => 'Cesta',
619    'RemoteHostPort'       => 'Port',
620    'RemoteHostSubPath'    => 'Remote Host SubPath',    // Added - 2009-02-08
621    'RemoteImageColours'   => 'Barvy',
622    'RemoteMethod'         => 'Remote Method',          // Added - 2009-02-08
623    'RemoteProtocol'       => 'Remote Protocol',        // Added - 2009-02-08
624    'Rename'               => 'Přejmenovat',
625    'Replay'               => 'Replay',
626    'ReplayAll'            => 'All Events',
627    'ReplayGapless'        => 'Gapless Events',
628    'ReplaySingle'         => 'Single Event',
629    'ReportEventAudit'     => 'Audit Events Report',    // Added - 2018-08-30
630    'Reset'                => 'Reset',
631    'ResetEventCounts'     => 'Resetovat počty záznamů',
632    'Restart'              => 'Restartovat',
633    'Restarting'           => 'Restartuji',
634    'RestrictedCameraIds'  => 'Povolené id kamer',
635    'RestrictedMonitors'   => 'Restricted Monitors',
636    'ReturnDelay'          => 'Prodleva vracení',
637    'ReturnLocation'       => 'Lokace vrácení',
638    'Rewind'               => 'Rewind',
639    'RotateLeft'           => 'Otočit vlevo',
640    'RotateRight'          => 'Otočit vpravo',
641    'RunLocalUpdate'       => 'Please run zmupdate.pl to update', // Added - 2011-05-25
642    'RunMode'              => 'Režim',
643    'RunState'             => 'Stav',
644    'Running'              => 'Běží',
645    'Save'                 => 'Uložit',
646    'SaveAs'               => 'Uložit jako',
647    'SaveFilter'           => 'Uložit filtr',
648    'SaveJPEGs'            => 'Save JPEGs',             // Added - 2018-08-30
649    'Scale'                => 'Velikost',
650    'Score'                => 'Skóre',
651    'Secs'                 => 'Délka(s)',
652    'Sectionlength'        => 'Délka sekce',
653    'Select'               => 'Vybrat',
654    'SelectFormat'         => 'Select Format',          // Added - 2011-06-17
655    'SelectLog'            => 'Select Log',             // Added - 2011-06-17
656    'SelectMonitors'       => 'Select Monitors',
657    'SelfIntersecting'     => 'Polygon edges must not intersect',
658    'Set'                  => 'Nastavit',
659    'SetNewBandwidth'      => 'Nastavit novou rychlost sítě',
660    'SetPreset'            => 'Nastavit předvolbu',
661    'Settings'             => 'Nastavení',
662    'ShowFilterWindow'     => 'Zobrazit filtr',
663    'ShowTimeline'         => 'Zobrazit časovou linii ',
664    'SignalCheckColour'    => 'Signal Check Colour',
665    'SignalCheckPoints'    => 'Signal Check Points',    // Added - 2018-08-30
666    'Size'                 => 'Velikost',
667    'SkinDescription'      => 'Change the default skin for this computer', // Added - 2011-01-30
668    'Sleep'                => 'Spát',
669    'SortAsc'              => 'Vzestupně',
670    'SortBy'               => 'Řadit dle',
671    'SortDesc'             => 'Sestupně',
672    'Source'               => 'Zdroj',
673    'SourceColours'        => 'Source Colours',         // Added - 2009-02-08
674    'SourcePath'           => 'Source Path',            // Added - 2009-02-08
675    'SourceType'           => 'Typ zdroje',
676    'Speed'                => 'Rychlost',
677    'SpeedHigh'            => 'Vysoká rychlost',
678    'SpeedLow'             => 'Nízká rychlost',
679    'SpeedMedium'          => 'Střední rychlost',
680    'SpeedTurbo'           => 'Turbo rychlost',
681    'Start'                => 'Start',
682    'State'                => 'Stav',
683    'Stats'                => 'Statistiky',
684    'Status'               => 'Status',
685    'StatusConnected'      => 'Capturing',              // Added - 2018-08-30
686    'StatusNotRunning'     => 'Not Running',            // Added - 2018-08-30
687    'StatusRunning'        => 'Not Capturing',          // Added - 2018-08-30
688    'StatusUnknown'        => 'Unknown',                // Added - 2018-08-30
689    'Step'                 => 'Krok',
690    'StepBack'             => 'Step Back',
691    'StepForward'          => 'Step Forward',
692    'StepLarge'            => 'Velký krok',
693    'StepMedium'           => 'Střední krok',
694    'StepNone'             => 'Žádný krok',
695    'StepSmall'            => 'Malý krok',
696    'Stills'               => 'Snímky',
697    'Stop'                 => 'Zastavit',
698    'Stopped'              => 'Zastaven',
699    'StorageArea'          => 'Storage Area',           // Added - 2018-08-30
700    'StorageScheme'        => 'Scheme',                 // Added - 2018-08-30
701    'Stream'               => 'Stream',
702    'StreamReplayBuffer'   => 'Stream Replay Image Buffer',
703    'Submit'               => 'Potvrdit',
704    'System'               => 'System',
705    'SystemLog'            => 'System Log',             // Added - 2011-06-16
706    'TargetColorspace'     => 'Target colorspace',      // Added - 2015-04-18
707    'Tele'                 => 'Přiblížit',
708    'Thumbnail'            => 'Miniatura',
709    'Tilt'                 => 'Náklon',
710    'Time'                 => 'Čas',
711    'TimeDelta'            => 'Delta času',
712    'TimeStamp'            => 'Časové razítko',
713    'Timeline'             => 'Časová linie',
714    'TimelineTip1'          => 'Pass your mouse over the graph to view a snapshot image and event details.',              // Added 2013.08.15.
715    'TimelineTip2'          => 'Click on the coloured sections of the graph, or the image, to view the event.',              // Added 2013.08.15.
716    'TimelineTip3'          => 'Click on the background to zoom in to a smaller time period based around your click.',              // Added 2013.08.15.
717    'TimelineTip4'          => 'Use the controls below to zoom out or navigate back and forward through the time range.',              // Added 2013.08.15.
718    'Timestamp'            => 'Razítko',
719    'TimestampLabelFormat' => 'Formát časového razítka',
720    'TimestampLabelSize'   => 'Font Size',              // Added - 2018-08-30
721    'TimestampLabelX'      => 'Časové razítko X',
722    'TimestampLabelY'      => 'Časové razítko Y',
723    'Today'                => 'Dnes',
724    'Tools'                => 'Nástroje',
725    'Total'                => 'Total',                  // Added - 2011-06-16
726    'TotalBrScore'         => 'Celkové<br/>skóre',
727    'TrackDelay'           => 'Prodleva dráhy',
728    'TrackMotion'          => 'Pohyb po dráze',
729    'Triggers'             => 'Trigery',
730    'TurboPanSpeed'        => 'Rychlost Turbo otáčení',
731    'TurboTiltSpeed'       => 'Rychlost Turbo náklonu',
732    'Type'                 => 'Typ',
733    'Unarchive'            => 'Vyjmout z archivu',
734    'Undefined'            => 'Undefined',              // Added - 2009-02-08
735    'Units'                => 'Jednotky',
736    'Unknown'              => 'Neznámý',
737    'Update'               => 'Update',
738    'UpdateAvailable'      => 'Je dostupný nový update ZoneMinder.',
739    'UpdateNotNecessary'   => 'Update není potřeba.',
740    'Updated'              => 'Updated',                // Added - 2011-06-16
741    'Upload'               => 'Upload',                 // Added - 2011-08-23
742    'UseFilter'            => 'Použít filtr',
743    'UseFilterExprsPost'   => '&nbsp;výrazů', // This is used at the end of the phrase 'use N filter expressions'
744    'UseFilterExprsPre'    => 'Použít&nbsp;', // This is used at the beginning of the phrase 'use N filter expressions'
745    'UsedPlugins'	   => 'Used Plugins',
746    'User'                 => 'Uživatel',
747    'Username'             => 'Uživatelské jméno',
748    'Users'                => 'Uživatelé',
749    'V4L'                  => 'V4L',                    // Added - 2015-04-18
750    'V4LCapturesPerFrame'  => 'Captures Per Frame',     // Added - 2015-04-18
751    'V4LMultiBuffer'       => 'Multi Buffering',        // Added - 2015-04-18
752    'Value'                => 'Hodnota',
753    'Version'              => 'Verze',
754    'VersionIgnore'        => 'Ignorovat tuto verzi',
755    'VersionRemindDay'     => 'Připomenout za 1 den',
756    'VersionRemindHour'    => 'Připomenout za hodinu',
757    'VersionRemindNever'   => 'Nepřipomínat nové veze',
758    'VersionRemindWeek'    => 'Připomenout za týden',
759    'Video'                => 'Video',
760    'VideoFormat'          => 'Video formát',
761    'VideoGenFailed'       => 'Chyba při generování videa!',
762    'VideoGenFiles'        => 'Existující video soubory',
763    'VideoGenNoFiles'      => 'Žádné video soubory nenalezeny',
764    'VideoGenParms'        => 'Parametry generování videa',
765    'VideoGenSucceeded'    => 'Video vygenerováno úspěšně!',
766    'VideoSize'            => 'Velikost videa',
767    'VideoWriter'          => 'Video Writer',           // Added - 2018-08-30
768    'View'                 => 'Zobrazit',
769    'ViewAll'              => 'Zobrazit všechny',
770    'ViewEvent'            => 'Zobrazit záznam',
771    'ViewPaged'            => 'Zobrazit strákově',
772    'Wake'                 => 'Vzbudit',
773    'WarmupFrames'         => 'Zahřívací snímky',
774    'Watch'                => 'Sledovat',
775    'Web'                  => 'Web',
776    'WebColour'            => 'Webová barva',
777    'WebSiteUrl'           => 'Website URL',            // Added - 2018-08-30
778    'Week'                 => 'Týden',
779    'White'                => 'Bílá',
780    'WhiteBalance'         => 'Vyvážení bílé',
781    'Wide'                 => 'Oddálit',
782    'X'                    => 'X',
783    'X10'                  => 'X10',
784    'X10ActivationString'  => 'X10 aktivační řetězec',
785    'X10InputAlarmString'  => 'X10 input alarm řetězec',
786    'X10OutputAlarmString' => 'X10 output alarm řetězec',
787    'Y'                    => 'Y',
788    'Yes'                  => 'Ano',
789    'YouNoPerms'           => 'K tomuto zdroji nemáte oprávnění.',
790    'Zone'                 => 'Zóna',
791    'ZoneAlarmColour'      => 'Barva alarmu (Red/Green/Blue)',
792    'ZoneArea'             => 'Zone Area',
793    'ZoneExtendAlarmFrames' => 'Extend Alarm Frame Count',
794    'ZoneFilterSize'       => 'Filter Width/Height (pixels)',
795    'ZoneMinMaxAlarmArea'  => 'Min/Max Alarmed Area',
796    'ZoneMinMaxBlobArea'   => 'Min/Max Blob Area',
797    'ZoneMinMaxBlobs'      => 'Min/Max Blobs',
798    'ZoneMinMaxFiltArea'   => 'Min/Max Filtered Area',
799    'ZoneMinMaxPixelThres' => 'Min/Max Pixel Threshold (0-255)',
800    'ZoneMinderLog'        => 'ZoneMinder Log',         // Added - 2011-06-17
801    'ZoneOverloadFrames'   => 'Overload Frame Ignore Count',
802    'Zones'                => 'Zóny',
803    'Zoom'                 => 'Zoom',
804    'ZoomIn'               => 'Zvětšit',
805    'ZoomOut'              => 'Zmenšit',
806);
807
808// Complex replacements with formatting and/or placements, must be passed through sprintf
809$CLANG = array(
810    'CurrentLogin'         => 'Právě je přihlášen \'%1$s\'',
811    'EventCount'           => '%1$s %2$s', // For example '37 Events' (from Vlang below)
812    'LastEvents'           => 'Posledních %1$s %2$s', // For example 'Last 37 Events' (from Vlang below)
813    'LatestRelease'        => 'Poslední verze je v%1$s, vy máte v%2$s.',
814    'MonitorCount'         => '%1$s %2$s', // For example '4 Monitors' (from Vlang below)
815    'MonitorFunction'      => 'Funkce %1$s kamery',
816    'RunningRecentVer'     => 'Používáte poslední verzi ZoneMinder, v%s.',
817    'VersionMismatch'      => 'Version mismatch, system is version %1$s, database is %2$s.', // Added - 2011-05-25
818);
819
820// The next section allows you to describe a series of word ending and counts used to
821// generate the correctly conjugated forms of words depending on a count that is associated
822// with that word.
823// This intended to allow phrases such a '0 potatoes', '1 potato', '2 potatoes' etc to
824// conjugate correctly with the associated count.
825// In some languages such as English this is fairly simple and can be expressed by assigning
826// a count with a singular or plural form of a word and then finding the nearest (lower) value.
827// So '0' of something generally ends in 's', 1 of something is singular and has no extra
828// ending and 2 or more is a plural and ends in 's' also. So to find the ending for '187' of
829// something you would find the nearest lower count (2) and use that ending.
830//
831// So examples of this would be
832// $zmVlangPotato = array( 0=>'Potatoes', 1=>'Potato', 2=>'Potatoes' );
833// $zmVlangSheep = array( 0=>'Sheep' );
834//
835// where you can have as few or as many entries in the array as necessary
836// If your language is similar in form to this then use the same format and choose the
837// appropriate zmVlang function below.
838// If however you have a language with a different format of plural endings then another
839// approach is required . For instance in Russian the word endings change continuously
840// depending on the last digit (or digits) of the numerator. In this case then zmVlang
841// arrays could be written so that the array index just represents an arbitrary 'type'
842// and the zmVlang function does the calculation about which version is appropriate.
843//
844// So an example in Russian might be (using English words, and made up endings as I
845// don't know any Russian!!)
846// $zmVlangPotato = array( 1=>'Potati', 2=>'Potaton', 3=>'Potaten' );
847//
848// and the zmVlang function decides that the first form is used for counts ending in
849// 0, 5-9 or 11-19 and the second form when ending in 1 etc.
850//
851
852// Variable arrays expressing plurality, see the zmVlang description above
853$VLANG = array(
854    'Event'                => array( 0=>'Záznamů', 1=>'Záznam', 2=>'Záznamy', 5=>'Záznamů' ),
855    'Monitor'              => array( 0=>'Kamer', 1=>'Kamera', 2=>'Kamery', 5=>'Kamer' ),
856);
857
858// You will need to choose or write a function that can correlate the plurality string arrays
859// with variable counts. This is used to conjugate the Vlang arrays above with a number passed
860// in to generate the correct noun form.
861//
862// In languages such as English this is fairly simple
863// Note this still has to be used with printf etc to get the right formatting
864function zmVlang( $langVarArray, $count )
865{
866    krsort( $langVarArray );
867    foreach ( $langVarArray as $key=>$value )
868    {
869        if ( abs($count) >= $key )
870        {
871            return( $value );
872        }
873    }
874    die( 'Error, unable to correlate variable language string' );
875}
876
877// This is an version that could be used in the Russian example above
878// The rules are that the first word form is used if the count ends in
879// 0, 5-9 or 11-19. The second form is used then the count ends in 1
880// (not including 11 as above) and the third form is used when the
881// count ends in 2-4, again excluding any values ending in 12-14.
882//
883// function zmVlang( $langVarArray, $count )
884// {
885//  $secondlastdigit = substr( $count, -2, 1 );
886//  $lastdigit = substr( $count, -1, 1 );
887//  // or
888//  // $secondlastdigit = ($count/10)%10;
889//  // $lastdigit = $count%10;
890//
891//  // Get rid of the special cases first, the teens
892//  if ( $secondlastdigit == 1 && $lastdigit != 0 )
893//  {
894//      return( $langVarArray[1] );
895//  }
896//  switch ( $lastdigit )
897//  {
898//      case 0 :
899//      case 5 :
900//      case 6 :
901//      case 7 :
902//      case 8 :
903//      case 9 :
904//      {
905//          return( $langVarArray[1] );
906//          break;
907//      }
908//      case 1 :
909//      {
910//          return( $langVarArray[2] );
911//          break;
912//      }
913//      case 2 :
914//      case 3 :
915//      case 4 :
916//      {
917//          return( $langVarArray[3] );
918//          break;
919//      }
920//  }
921//  die( 'Error, unable to correlate variable language string' );
922// }
923
924// This is an example of how the function is used in the code which you can uncomment and
925// use to test your custom function.
926//$monitors = array();
927//$monitors[] = 1; // Choose any number
928//echo sprintf( $zmClangMonitorCount, count($monitors), zmVlang( $zmVlangMonitor, count($monitors) ) );
929
930// In this section you can override the default prompt and help texts for the options area
931// These overrides are in the form show below where the array key represents the option name minus the initial ZM_
932// So for example, to override the help text for ZM_LANG_DEFAULT do
933$OLANG = array(
934	'OPTIONS_FFMPEG' => array(
935		'Help' => "Parameters in this field are passed on to FFmpeg. Multiple parameters can be separated by ,~~ ".
936		          "Examples (do not enter quotes)~~~~".
937		          "\"allowed_media_types=video\" Set datatype to request fromcam (audio, video, data)~~~~".
938		          "\"reorder_queue_size=nnn\" Set number of packets to buffer for handling of reordered packets~~~~".
939		          "\"loglevel=debug\" Set verbosity of FFmpeg (quiet, panic, fatal, error, warning, info, verbose, debug)"
940	),
941	'OPTIONS_LIBVLC' => array(
942		'Help' => "Parameters in this field are passed on to libVLC. Multiple parameters can be separated by ,~~ ".
943		          "Examples (do not enter quotes)~~~~".
944		          "\"--rtp-client-port=nnn\" Set local port to use for rtp data~~~~".
945		          "\"--verbose=2\" Set verbosity of libVLC"
946	),
947
948//    'LANG_DEFAULT' => array(
949//        'Prompt' => "This is a new prompt for this option",
950//        'Help' => "This is some new help for this option which will be displayed in the window when the ? is clicked"
951//    ),
952);
953
954?>
955