1<?php
2//
3// ZoneMinder web US Estonian 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// $Date: 2009-03-31
22// $Revision: 2829
23// ZoneMinder estonian Translation by Seston seston@gmail.com
24// Who would care assistance to help to translate texts, and all this at all. Alone is somehow boring business....
25//Kes viitsiks aidata tõlkida abitekste ja üldse kõike seda.Üksi on kuidagi igav ettevõtmine....
26
27// ZoneMinder Estonian Translation by Hannes hanzese@gmail.com
28// I bother because zoneminder is cool.....    Mina viitsin, sest ZoneMinder on lahe.....
29
30//Notes for Translators
31// 0. Get some credit, put your name in the line above (optional)
32// 1. When composing the language tokens in your language you should try and keep to roughly the
33//   same length text if possible. Abbreviate where necessary as spacing is quite close in a number of places.
34// 2. There are four types of string replacement
35//   a) Simple replacements are words or short phrases that are static and used directly. This type of
36//     replacement can be used 'as is'.
37//   b) Complex replacements involve some dynamic element being included and so may require substitution
38//     or changing into a different order. The token listed in this file will be passed through sprintf as
39//     a formatting string. If the dynamic element is a number you will usually need to use a variable
40//     replacement also as described below.
41//   c) Variable replacements are used in conjunction with complex replacements and involve the generation
42//     of a singular or plural noun depending on the number passed into the zmVlang function. See the
43//     the zmVlang section below for a further description of this.
44//   d) Optional strings which can be used to replace the prompts and/or help text for the Options section
45//     of the web interface. These are not listed below as they are quite large and held in the database
46//     so that they can also be used by the zmconfig.pl script. However you can build up your own list
47//     quite easily from the Config table in the database if necessary.
48// 3. The tokens listed below are not used to build up phrases or sentences from single words. Therefore
49//   you can safely assume that a single word token will only be used in that context.
50// 4. In new language files, or if you are changing only a few words or phrases it makes sense from a
51//   maintenance point of view to include the original language file and override the old definitions rather
52//   than copy all the language tokens across. To do this change the line below to whatever your base language
53//   is and uncomment it.
54//require_once( 'zm_lang_en_GB.php' );
55
56// You may need to change the character set here, if your web server does not already
57// do this by default, uncomment this if required.
58//
59// Example
60// header( "Content-Type: text/html; charset=utf-8' );
61
62// You may need to change your locale here if your default one is incorrect for the
63// language described in this file, or if you have multiple languages supported.
64// If you do need to change your locale, be aware that the format of this function
65// is subtlely different in versions of PHP before and after 4.3.0, see
66// http://uk2.php.net/manual/en/function.setlocale.php for details.
67// Also be aware that changing the whole locale may affect some floating point or decimal
68// arithmetic in the database, if this is the case change only the individual locale areas
69// that don't affect this rather than all at once. See the examples below.
70// Finally, depending on your setup, PHP may not enjoy have multiple locales in a shared
71// threaded environment, if you get funny errors it may be this.
72//
73// Examples
74// setlocale( 'LC_ALL', 'en_GB' ); All locale settings pre-4.3.0
75// setlocale( LC_ALL, 'en_GB' ); All locale settings 4.3.0 and after
76// setlocale( LC_CTYPE, 'en_GB' ); Character class settings 4.3.0 and after
77// setlocale( LC_TIME, 'en_GB' ); Date and time formatting 4.3.0 and after
78
79// Simple String Replacements
80$SLANG = array(
81    '24BitColour'           => '24 bit värvid',
82    '32BitColour'           => '32 bit värvid',          // Added - 2011-06-15
83    '8BitGrey'              => '8 bit mustvalge',
84    'Action'                => 'Action',
85    'Actual'                => 'Aktuaalne',
86    'AddNewControl'         => 'Lisa uus Kontroll',
87    'AddNewMonitor'         => 'Lisa uus Monitor',
88    'AddNewServer'         => 'Add New Server',         // Added - 2018-08-30
89    'AddNewStorage'        => 'Add New Storage',        // Added - 2018-08-30
90    'AddNewUser'            => 'Lisa uus Kasutaja',
91    'AddNewZone'            => 'Lisa uus Tsoon',
92    'Alarm'                 => 'Alarm',
93    'AlarmBrFrames'         => 'Alarmi<br/>kaadrid',
94    'AlarmFrame'            => 'Alarmi kaader',
95    'AlarmFrameCount'       => 'Alarmi kaadri hulk',
96    'AlarmLimits'           => 'Alarmi limiidid',
97    'AlarmMaximumFPS'       => 'Alarmi Maksimaalne FPS',
98    'AlarmPx'               => 'Alarm Px',
99    'AlarmRGBUnset'         => 'Sa pead panema alarmi RGB värvi',
100    'AlarmRefImageBlendPct'=> 'Alarm Reference Image Blend %ge', // Added - 2015-04-18
101    'Alert'                 => 'Hoiatus',
102    'All'                   => 'All',
103    'AnalysisFPS'          => 'Analysis FPS',           // Added - 2015-07-22
104    'AnalysisUpdateDelay'  => 'Analysis Update Delay',  // Added - 2015-07-23
105    'Apply'                 => 'Apply',
106    'ApplyingStateChange'   => 'Applying State Change',
107    'ArchArchived'          => 'Arhiveeritud Ainult',
108    'ArchUnarchived'        => 'Arhiveerimatta Ainult',
109    'Archive'               => 'Arhiiv',
110    'Archived'              => 'Arhiveeritud',
111    'Area'                  => 'Ala',
112    'AreaUnits'             => 'Ala (px/%)',
113    'AttrAlarmFrames'       => 'Alarmi kaadrid',
114    'AttrArchiveStatus'     => 'Arhiivi Staatus',
115    'AttrAvgScore'          => 'Keskm. Skoor',
116    'AttrCause'             => 'Põhjus',
117    'AttrDiskBlocks'        => 'Ketta Blokk',
118    'AttrDiskPercent'       => 'Ketta Protsent',
119    'AttrDiskSpace'        => 'Disk Space',             // Added - 2018-08-30
120    'AttrDuration'          => 'Kestvus',
121    'AttrEndDate'          => 'End Date',               // Added - 2018-08-30
122    'AttrEndDateTime'      => 'End Date/Time',          // Added - 2018-08-30
123    'AttrEndTime'          => 'End Time',               // Added - 2018-08-30
124    'AttrEndWeekday'       => 'End Weekday',            // Added - 2018-08-30
125    'AttrFilterServer'     => 'Server Filter is Running On', // Added - 2018-08-30
126    'AttrFrames'            => 'Kaadrid',
127    'AttrId'                => 'Id',
128    'AttrMaxScore'          => 'Maks. Skoor',
129    'AttrMonitorId'         => 'Monitori Id',
130    'AttrMonitorName'       => 'Monitori Nimi',
131    'AttrMonitorServer'    => 'Server Monitor is Running On', // Added - 2018-08-30
132    'AttrName'              => 'Nimi',
133    'AttrNotes'             => 'Märkmed',
134    'AttrStartDate'        => 'Start Date',             // Added - 2018-08-30
135    'AttrStartDateTime'    => 'Start Date/Time',        // Added - 2018-08-30
136    'AttrStartTime'        => 'Start Time',             // Added - 2018-08-30
137    'AttrStartWeekday'     => 'Start Weekday',          // Added - 2018-08-30
138    'AttrStateId'          => 'Run State',              // Added - 2018-08-30
139    'AttrStorageArea'      => 'Storage Area',           // Added - 2018-08-30
140    'AttrStorageServer'    => 'Server Hosting Storage', // Added - 2018-08-30
141    'AttrSystemLoad'        => 'Süsteemi Koormus',
142    'AttrTotalScore'        => 'Skoor Kokku',
143    'Auto'                  => 'Auto',
144    'AutoStopTimeout'       => 'Auto Stop Ajalimiit',
145    'Available'             => 'Saadaval',
146    'AvgBrScore'            => 'Keskm.<br/>Skoor',
147    'Background'            => 'Taust',
148    'BackgroundFilter'      => 'Käivita filter taustal',
149    'BadAlarmFrameCount'    => 'Alarmi kaadri hulga ühik peab olema integer. Kas üks või rohkem',
150    'BadAlarmMaxFPS'        => 'Alarmi maksimaalne FPS peab olema positiivne integer või floating point väärtus',
151    'BadAnalysisFPS'       => 'Analysis FPS must be a positive integer or floating point value', // Added - 2015-07-22
152    'BadAnalysisUpdateDelay'=> 'Analysis update delay must be set to an integer of zero or more', // Added - 2015-07-23
153    'BadChannel'            => 'Kanal peab olema integer, null või rohkem',
154    'BadColours'            => 'Sihtmärgi värv peab olema pandud õige väärtus', // Added - 2011-06-15
155    'BadDevice'             => 'Seadmel peab olema õige väärtus',
156    'BadFPSReportInterval'  => 'FPS raporteerimise intervall puhvri hulk peab olema integer, null või rohkem',
157    'BadFormat'             => 'Formaadiks peab olema pandud õige väärtus',
158    'BadFrameSkip'          => 'Kaadri vahelejätmise hulk peab olema integer, null või rohkem',
159    'BadHeight'             => 'Kõrguseks peab olema valitud õige väärtus',
160    'BadHost'               => 'Host ipeab olema õige. Ip aadress või hostinimi, ei tohi sisaldada http://',
161    'BadImageBufferCount'   => 'Pildi puhvri suurus peab olema integer, 2 või rohkem',
162    'BadLabelX'             => 'Label X co-ordinate must be set to an integer of zero or more',
163    'BadLabelY'             => 'Label Y co-ordinate must be set to an integer of zero or more',
164    'BadMaxFPS'             => 'Maximum FPS must be a positive integer or floating point value',
165    'BadMotionFrameSkip'    => 'Liikumise kaadri vahelejätmise hulk peab olema integer, null või rohkem',
166    'BadNameChars'          => 'Names may only contain alphanumeric characters plus hyphen and underscore',
167    'BadPalette'            => 'Palette must be set to a valid value',
168    'BadPath'               => 'Path must be set to a valid value',
169    'BadPort'               => 'Port must be set to a valid number',
170    'BadPostEventCount'     => 'Post event image count must be an integer of zero or more',
171    'BadPreEventCount'      => 'Pre event image count must be at least zero, and less than image buffer size',
172    'BadRefBlendPerc'       => 'Reference blend percentage must be a positive integer',
173    'BadSectionLength'      => 'Section length must be an integer of 30 or more',
174    'BadSignalCheckColour'  => 'Signal check colour must be a valid RGB colour string',
175    'BadSourceType'        => 'Source Type \"Web Site\" requires the Function to be set to \"Monitor\"', // Added - 2018-08-30
176    'BadStreamReplayBuffer' => 'Stream replay buffer must be an integer of zero or more',
177    'BadWarmupCount'        => 'Warmup frames must be an integer of zero or more',
178    'BadWebColour'          => 'Web colour must be a valid web colour string',
179    'BadWebSitePath'       => 'Please enter a complete website url, including the http:// or https:// prefix.', // Added - 2018-08-30
180    'BadWidth'              => 'Width must be set to a valid value',
181    'Bandwidth'             => 'Ribalaius',
182    'BandwidthHead'         => 'Ribalaius',	// This is the end of the bandwidth status on the top of the console, different in many language due to phrasing
183    'BlobPx'                => 'Blob Px',
184    'BlobSizes'             => 'Blob Sizes',
185    'Blobs'                 => 'Blobs',
186    'Brightness'            => 'Heledus',
187    'Buffer'               => 'Buffer',                 // Added - 2015-04-18
188    'Buffers'               => 'Puhver',
189    'CSSDescription'       => 'Change the default css for this computer', // Added - 2015-04-18
190    'CanAutoFocus'          => 'Can Auto Focus',
191    'CanAutoGain'           => 'Can Auto Gain',
192    'CanAutoIris'           => 'Can Auto Iris',
193    'CanAutoWhite'          => 'Can Auto White Bal.',
194    'CanAutoZoom'           => 'Can Auto Zoom',
195    'CanFocus'              => 'Can Focus',
196    'CanFocusAbs'           => 'Can Focus Absolute',
197    'CanFocusCon'           => 'Can Focus Continuous',
198    'CanFocusRel'           => 'Can Focus Relative',
199    'CanGain'               => 'Can Gain ',
200    'CanGainAbs'            => 'Can Gain Absolute',
201    'CanGainCon'            => 'Can Gain Continuous',
202    'CanGainRel'            => 'Can Gain Relative',
203    'CanIris'               => 'Can Iris',
204    'CanIrisAbs'            => 'Can Iris Absolute',
205    'CanIrisCon'            => 'Can Iris Continuous',
206    'CanIrisRel'            => 'Can Iris Relative',
207    'CanMove'               => 'Can Move',
208    'CanMoveAbs'            => 'Can Move Absolute',
209    'CanMoveCon'            => 'Can Move Continuous',
210    'CanMoveDiag'           => 'Can Move Diagonally',
211    'CanMoveMap'            => 'Can Move Mapped',
212    'CanMoveRel'            => 'Can Move Relative',
213    'CanPan'                => 'Can Pan' ,
214    'CanReset'              => 'Can Reset',
215	'CanReboot'             => 'Can Reboot',
216    'CanSetPresets'         => 'Can Set Presets',
217    'CanSleep'              => 'Can Sleep',
218    'CanTilt'               => 'Can Tilt',
219    'CanWake'               => 'Can Wake',
220    'CanWhite'              => 'Can White Balance',
221    'CanWhiteAbs'           => 'Can White Bal. Absolute',
222    'CanWhiteBal'           => 'Can White Bal.',
223    'CanWhiteCon'           => 'Can White Bal. Continuous',
224    'CanWhiteRel'           => 'Can White Bal. Relative',
225    'CanZoom'               => 'Can Zoom',
226    'CanZoomAbs'            => 'Can Zoom Absolute',
227    'CanZoomCon'            => 'Can Zoom Continuous',
228    'CanZoomRel'            => 'Can Zoom Relative',
229    'Cancel'                => 'Cancel',
230    'CancelForcedAlarm'     => 'Cancel Forced Alarm',
231    'CaptureHeight'         => 'Capture Height',
232    'CaptureMethod'         => 'Capture Method',
233    'CapturePalette'        => 'Capture Palette',
234    'CaptureResolution'    => 'Capture Resolution',     // Added - 2015-04-18
235    'CaptureWidth'          => 'Capture Width',
236    'Cause'                 => 'Cause',
237    'CheckMethod'           => 'Alarm Check Method',
238    'ChooseDetectedCamera'  => 'Vali tuvastatud kaamera',
239    'ChooseFilter'          => 'Vali Filter',
240    'ChooseLogFormat'       => 'Choose a log format',    // Added - 2011-06-17
241    'ChooseLogSelection'    => 'Choose a log selection', // Added - 2011-06-17
242    'ChoosePreset'          => 'Choose Preset',
243    'Clear'                 => 'Clear',                  // Added - 2011-06-16
244    'CloneMonitor'         => 'Clone',                  // Added - 2018-08-30
245    'Close'                 => 'Sule',
246    'Colour'                => 'Värv',
247    'Command'               => 'Käsk',
248    'Component'             => 'Komponent',              // Added - 2011-06-16
249    'ConcurrentFilter'     => 'Run filter concurrently', // Added - 2018-08-30
250    'Config'                => 'Seadistus',
251    'ConfiguredFor'         => 'Seadistatud',
252    'ConfirmDeleteEvents'   => 'Oled sa kindel kustamaks valitud sündmused?',
253    'ConfirmPassword'       => 'Kinnita salasõna',
254    'ConjAnd'               => 'ja',
255    'ConjOr'                => 'või',
256    'Console'               => 'Konsool',
257    'ContactAdmin'          => 'Võta ühendust adminniga.',
258    'Continue'              => 'Jätka',
259    'Contrast'              => 'Kontrast',
260    'Control'               => 'Control',
261    'ControlAddress'        => 'Control Address',
262    'ControlCap'            => 'Control Capability',
263    'ControlCaps'           => 'Control Capabilities',
264    'ControlDevice'         => 'Control Device',
265    'ControlType'           => 'Control Type',
266    'Controllable'          => 'Controllable',
267    'Current'              => 'Current',                // Added - 2015-04-18
268    'Cycle'                 => 'Cycle',
269    'CycleWatch'            => 'Cycle Watch',
270    'DateTime'              => 'Kuupäev/Aeg',              // Added - 2011-06-16
271    'Day'                   => 'Päevas',
272    'Debug'                 => 'Debug',
273    'DefaultRate'           => 'Default Kiirus',
274    'DefaultScale'          => 'Default Suurus',
275    'DefaultView'           => 'Default Vaade',
276    'Deinterlacing'        => 'Deinterlacing',          // Added - 2015-04-18
277    'Delay'                => 'Delay',                  // Added - 2015-04-18
278    'Delete'                => 'Kustuta',
279    'DeleteAndNext'         => 'Kustuta &amp; Järgmine',
280    'DeleteAndPrev'         => 'Kustuta &amp; Eelmine',
281    'DeleteSavedFilter'     => 'Kustuta salvestatud filter',
282    'Description'           => 'Kirjeldus',
283    'DetectedCameras'       => 'Tuvastatud kaamerad',
284    'DetectedProfiles'     => 'Detected Profiles',      // Added - 2015-04-18
285    'Device'                => 'Seade',
286    'DeviceChannel'         => 'Seadme Kanal',
287    'DeviceFormat'          => 'Seadme Formaat',
288    'DeviceNumber'          => 'Seadme Number',
289    'DevicePath'            => 'Seadme Path',
290    'Devices'               => 'Seadmed',
291    'Dimensions'            => 'Mõõdud',
292    'DisableAlarms'         => 'Keela alarmid',
293    'Disk'                  => 'Ketas',
294    'Display'               => 'Ekraan',                // Added - 2011-03-02
295    'Displaying'            => 'Väljapanek',             // Added - 2011-06-16
296    'DoNativeMotionDetection'=> 'Do Native Motion Detection', // Added - 2015-04-18
297    'Donate'                => 'Palun Anneta',
298    'DonateAlready'         => 'EI, Ma olen juba annetanud',
299    'DonateEnticement'      => 'Sa oled juba kasutanud ZoneMinderit juba mõnda aega. Nüüd kus sa oled leidnud, et see on kasulik lisa sinu kodule  või sinu töökohale. Kuigi ZoneMinder on, jääb alatiseks, vabaks ja avatud lähtekoodiks, siiski selle arendamiseks kulub aega ja raha. Kui sa soovid meid aidata, siis toeta meid tuleviku arendusteks ja uute lisade loomiseks. Palun mõelge annetuse peale. Donating is, of course, optional but very much appreciated and you can donate as much or as little as you like.<br/><br/>If you would like to donate please select the option below or go to https://zoneminder.com/donate/ in your browser.<br/><br/>Thank you for using ZoneMinder and don\'t forget to visit the forums on ZoneMinder.com for support or suggestions about how to make your ZoneMinder experience even better.',
300    'DonateRemindDay'       => 'Ei veel, tuleta meelde ühe päeva pärast',
301    'DonateRemindHour'      => 'Ei veel, tuleta meelde ühe tunni pärast',
302    'DonateRemindMonth'     => 'Ei veel, tuleta meelde ühe kuu pärast',
303    'DonateRemindNever'     => 'EI, Ma ei taha annetada, Vahet pole',
304    'DonateRemindWeek'      => 'EI veel, tuleta meelde nädala pärast',
305    'DonateYes'             => 'Jah, Ma soovin annetada',
306    'Download'              => 'Lae alla',
307    'DownloadVideo'        => 'Download Video',         // Added - 2018-08-30
308    'DuplicateMonitorName'  => 'Dubleeri Monitori Nimi',
309    'Duration'              => 'Kestvus',
310    'Edit'                  => 'Muuda',
311    'EditLayout'           => 'Edit Layout',            // Added - 2018-08-30
312    'Email'                 => 'Email',
313    'EnableAlarms'          => 'Luba Alarmid',
314    'Enabled'               => 'Lubatud',
315    'EnterNewFilterName'    => 'Sisest uue filtri nimi',
316    'Error'                 => 'Viga',
317    'ErrorBrackets'         => 'Viga, please check you have an equal number of opening and closing brackets',
318    'ErrorValidValue'       => 'Viga, please check that all terms have a valid value',
319    'Etc'                   => 'etc',
320    'Event'                 => 'Sündmus',
321    'EventFilter'           => 'Sündmuste filter',
322    'EventId'               => 'Sündmuse Id',
323    'EventName'             => 'Sündmuse nimi',
324    'EventPrefix'           => 'Sündmuse Prefix',
325    'Events'                => 'Sündmuseid',
326    'Exclude'               => 'Jäta välja',
327    'Execute'               => 'Käivita',
328    'Exif'                 => 'Embed EXIF data into image', // Added - 2018-08-30
329    'Export'                => 'Eksport',
330    'ExportDetails'         => 'Ekspordi Sündmuste Detailid',
331    'ExportFailed'          => 'Eksportimine Ebaõnnestus',
332    'ExportFormat'          => 'Ekspordi Faili Formaat',
333    'ExportFormatTar'       => 'Tar',
334    'ExportFormatZip'       => 'Zip',
335    'ExportFrames'          => 'Ekspordi Kaadri Detailid',
336    'ExportImageFiles'      => 'Ekspordi Pildi Failid',
337    'ExportLog'            => 'Ekspordi Logi',             // Added - 2011-06-17
338    'ExportMiscFiles'       => 'Ekspordi Teisi Faile (kui neid on)',
339    'ExportOptions'         => 'Ekspordi Valikud',
340    'ExportSucceeded'       => 'Eksportimine Õnnestus',
341    'ExportVideoFiles'      => 'Export Video Files (kui neid on)',
342    'Exporting'             => 'Eksportimine',
343    'FPS'                   => 'fps',
344    'FPSReportInterval'     => 'FPS Raporteerimise Intervall',
345    'FTP'                   => 'FTP',
346    'Far'                   => 'Far',
347    'FastForward'           => 'Fast Forward',
348    'Feed'                  => 'Feed',
349    'Ffmpeg'                => 'Ffmpeg',
350    'File'                  => 'Fail',
351    'Filter'               => 'Filter',                 // Added - 2015-04-18
352    'FilterArchiveEvents'   => 'Archive all matches',
353    'FilterDeleteEvents'    => 'Delete all matches',
354    'FilterEmailEvents'     => 'Email details of all matches',
355    'FilterExecuteEvents'   => 'Execute command on all matches',
356    'FilterLog'            => 'Filter log',             // Added - 2015-04-18
357    'FilterMessageEvents'   => 'Message details of all matches',
358    'FilterMoveEvents'     => 'Move all matches',       // Added - 2018-08-30
359    'FilterPx'              => 'Filter Px',
360    'FilterUnset'           => 'You must specify a filter width and height',
361    'FilterUpdateDiskSpace'=> 'Update used disk space', // Added - 2018-08-30
362    'FilterUploadEvents'    => 'Upload all matches',
363    'FilterVideoEvents'     => 'Create video for all matches',
364    'Filters'               => 'Filtrid',
365    'First'                 => 'Esimene',
366    'FlippedHori'           => 'Flipped Horizontally',
367    'FlippedVert'           => 'Flipped Vertically',
368    'FnMocord'              => 'Mocord',            // Added 2013.08.16.
369    'FnModect'              => 'Modect',            // Added 2013.08.16.
370    'FnMonitor'             => 'Monitor',            // Added 2013.08.16.
371    'FnNodect'              => 'Nodect',            // Added 2013.08.16.
372    'FnNone'                => 'None',            // Added 2013.08.16.
373    'FnRecord'              => 'Record',            // Added 2013.08.16.
374    'Focus'                 => 'Fookus',
375    'ForceAlarm'            => 'Force Alarm',
376    'Format'                => 'Format',
377    'Frame'                 => 'Kaader',
378    'FrameId'               => 'Frame Id',
379    'FrameRate'             => 'Kaadri Sagedus',
380    'FrameSkip'             => 'Frame Skip',
381    'Frames'                => 'Kaadrid',
382    'Func'                  => 'Func',
383    'Function'              => 'Funktsioon',
384    'Gain'                  => 'Gain',
385    'General'               => 'Peamine',
386    'GenerateDownload'     => 'Generate Download',      // Added - 2018-08-30
387    'GenerateVideo'         => 'Genereeri Video',
388    'GeneratingVideo'       => 'Genereerin Videot',
389    'GoToZoneMinder'        => 'Mine ZoneMinder.com',
390    'Grey'                  => 'Grey',
391    'Group'                 => 'Grupp',
392    'Groups'                => 'Grupid',
393    'HasFocusSpeed'         => 'Has Focus Speed',
394    'HasGainSpeed'          => 'Has Gain Speed',
395    'HasHomePreset'         => 'Has Home Preset',
396    'HasIrisSpeed'          => 'Has Iris Speed',
397    'HasPanSpeed'           => 'Has Pan Speed',
398    'HasPresets'            => 'Has Presets',
399    'HasTiltSpeed'          => 'Has Tilt Speed',
400    'HasTurboPan'           => 'Has Turbo Pan',
401    'HasTurboTilt'          => 'Has Turbo Tilt',
402    'HasWhiteSpeed'         => 'Has White Bal. Speed',
403    'HasZoomSpeed'          => 'Has Zoom Speed',
404    'High'                  => 'Suurim',
405    'HighBW'                => 'High&nbsp;B/W',
406    'Home'                  => 'Koju',
407    'Hostname'             => 'Hostname',               // Added - 2018-08-30
408    'Hour'                  => 'Tunnis',
409    'Hue'                   => 'Hue',
410    'Id'                    => 'Id',
411    'Idle'                  => 'Idle',
412    'Ignore'                => 'Ignoreeri',
413    'Image'                 => 'Pilt',
414    'ImageBufferSize'       => 'Image Buffer Size (frames)',
415    'Images'                => 'Pildid',
416    'In'                    => 'In',
417    'Include'               => 'Include',
418    'Inverted'              => 'Inverted',
419    'Iris'                  => 'Iris',
420    'KeyString'             => 'Key String',
421    'Label'                 => 'Label',
422    'Language'              => 'Keel',
423    'Last'                  => 'Viimane',
424    'Layout'                => 'Layout',
425    'Level'                 => 'Level',                  // Added - 2011-06-16
426    'Libvlc'                => 'Libvlc',
427    'LimitResultsPost'      => 'results only', // This is used at the end of the phrase 'Limit to first N results only'
428    'LimitResultsPre'       => 'Limit to first', // This is used at the beginning of the phrase 'Limit to first N results only'
429    'Line'                  => 'Line',                   // Added - 2011-06-16
430    'LinkedMonitors'        => 'Lingitud monitorid',
431    'List'                  => 'List',
432    'ListMatches'          => 'List Matches',           // Added - 2018-08-30
433    'Load'                  => 'Koormus',
434    'Local'                 => 'Local',
435    'Log'                   => 'Logi',                    // Added - 2011-06-16
436    'LoggedInAs'            => 'Sisse logitud',
437    'Logging'               => 'Logimine',                // Added - 2011-06-16
438    'LoggingIn'             => 'Login sisse',
439    'Login'                 => 'Login',
440    'Logout'                => 'Logi välja',
441    'Logs'                  => 'Logid',                   // Added - 2011-06-17
442    'Low'                   => 'Madal',
443    'LowBW'                 => 'Low&nbsp;B/W',
444    'Main'                  => 'Pea',
445    'Man'                   => 'Man',
446    'Manual'                => 'Juhend',
447    'Mark'                  => 'Märgi',
448    'Max'                   => 'Max',
449    'MaxBandwidth'          => 'Max Ribalaius',
450    'MaxBrScore'            => 'Max.<br/>Score',
451    'MaxFocusRange'         => 'Max Focus Range',
452    'MaxFocusSpeed'         => 'Max Focus Speed',
453    'MaxFocusStep'          => 'Max Focus Step',
454    'MaxGainRange'          => 'Max Gain Range',
455    'MaxGainSpeed'          => 'Max Gain Speed',
456    'MaxGainStep'           => 'Max Gain Step',
457    'MaxIrisRange'          => 'Max Iris Range',
458    'MaxIrisSpeed'          => 'Max Iris Speed',
459    'MaxIrisStep'           => 'Max Iris Step',
460    'MaxPanRange'           => 'Max Pan Range',
461    'MaxPanSpeed'           => 'Max Pan Speed',
462    'MaxPanStep'            => 'Max Pan Step',
463    'MaxTiltRange'          => 'Max Tilt Range',
464    'MaxTiltSpeed'          => 'Max Tilt Speed',
465    'MaxTiltStep'           => 'Max Tilt Step',
466    'MaxWhiteRange'         => 'Max White Bal. Range',
467    'MaxWhiteSpeed'         => 'Max White Bal. Speed',
468    'MaxWhiteStep'          => 'Max White Bal. Step',
469    'MaxZoomRange'          => 'Max Zoom Range',
470    'MaxZoomSpeed'          => 'Max Zoom Speed',
471    'MaxZoomStep'           => 'Max Zoom Step',
472    'MaximumFPS'            => 'Maksimaalne FPS',
473    'Medium'                => 'Keskmine',
474    'MediumBW'              => 'Medium&nbsp;B/W',
475    'Message'               => 'Message',                // Added - 2011-06-16
476    'MinAlarmAreaLtMax'     => 'Minimum alarm area should be less than maximum',
477    'MinAlarmAreaUnset'     => 'You must specify the minimum alarm pixel count',
478    'MinBlobAreaLtMax'      => 'Minimum blob area should be less than maximum',
479    'MinBlobAreaUnset'      => 'You must specify the minimum blob pixel count',
480    'MinBlobLtMinFilter'    => 'Minimum blob area should be less than or equal to minimum filter area',
481    'MinBlobsLtMax'         => 'Minimum blobs should be less than maximum',
482    'MinBlobsUnset'         => 'You must specify the minimum blob count',
483    'MinFilterAreaLtMax'    => 'Minimum filter area should be less than maximum',
484    'MinFilterAreaUnset'    => 'You must specify the minimum filter pixel count',
485    'MinFilterLtMinAlarm'   => 'Minimum filter area should be less than or equal to minimum alarm area',
486    'MinFocusRange'         => 'Min Focus Range',
487    'MinFocusSpeed'         => 'Min Focus Speed',
488    'MinFocusStep'          => 'Min Focus Step',
489    'MinGainRange'          => 'Min Gain Range',
490    'MinGainSpeed'          => 'Min Gain Speed',
491    'MinGainStep'           => 'Min Gain Step',
492    'MinIrisRange'          => 'Min Iris Range',
493    'MinIrisSpeed'          => 'Min Iris Speed',
494    'MinIrisStep'           => 'Min Iris Step',
495    'MinPanRange'           => 'Min Pan Range',
496    'MinPanSpeed'           => 'Min Pan Speed',
497    'MinPanStep'            => 'Min Pan Step',
498    'MinPixelThresLtMax'    => 'Minimum pixel threshold should be less than maximum',
499    'MinPixelThresUnset'    => 'You must specify a minimum pixel threshold',
500    'MinTiltRange'          => 'Min Tilt Range',
501    'MinTiltSpeed'          => 'Min Tilt Speed',
502    'MinTiltStep'           => 'Min Tilt Step',
503    'MinWhiteRange'         => 'Min White Bal. Range',
504    'MinWhiteSpeed'         => 'Min White Bal. Speed',
505    'MinWhiteStep'          => 'Min White Bal. Step',
506    'MinZoomRange'          => 'Min Zoom Range',
507    'MinZoomSpeed'          => 'Min Zoom Speed',
508    'MinZoomStep'           => 'Min Zoom Step',
509    'Misc'                  => 'Misc',
510    'Mode'                 => 'Mode',                   // Added - 2015-04-18
511    'Monitor'               => 'Monitor',
512    'MonitorIds'            => 'Monitor&nbsp;Ids',
513    'MonitorPreset'         => 'Monitor Preset',
514    'MonitorPresetIntro'    => 'Select an appropriate preset from the list below.<br/><br/>Please note that this may overwrite any values you already have configured for the current monitor.<br/><br/>',
515    'MonitorProbe'          => 'Monitor Probe',
516    '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/>',
517    'Monitors'              => 'Monitors',
518    'Montage'               => 'Montage',
519    'MontageReview'        => 'Montage Review',         // Added - 2018-08-30
520    'Month'                 => 'Kuus',
521    'More'                  => 'Veel',                   // Added - 2011-06-16
522    'MotionFrameSkip'       => 'Motion Frame Skip',
523    'Move'                  => 'Liiguta',
524    'Mtg2widgrd'            => '2-pildi ruudustik',              // Added 2013.08.15.
525    'Mtg3widgrd'            => '3-pildi ruudustik',              // Added 2013.08.15.
526    'Mtg3widgrx'            => '3-pildi ruudustik, skaleeritud, suurenda kui on alarm',              // Added 2013.08.15.
527    'Mtg4widgrd'            => '4-pildi ruudustik',              // Added 2013.08.15.
528    'MtgDefault'            => 'Default',              // Added 2013.08.15.
529    'MustBeGe'              => 'peab olema suurem kui või võrdne ',
530    'MustBeLe'              => 'peab olema väiksem kui või võrdne',
531    'MustConfirmPassword'   => 'Sa pead kinnitama parooli',
532    'MustSupplyPassword'    => 'Sa pead panema parooli',
533    'MustSupplyUsername'    => 'Sa pead panema kasutaja nime',
534    'Name'                  => 'Sündmus',
535    'Near'                  => 'Lähedal',
536    'Network'               => 'Võrk',
537    'New'                   => 'Uus',
538    'NewGroup'              => 'Uus Krupp',
539    'NewLabel'              => 'Uus Nimi',
540    'NewPassword'           => 'Uus Parool',
541    'NewState'              => 'Uus Olek',
542    'NewUser'               => 'Uus Kasutaja',
543    'Next'                  => 'Järgmine',
544    'No'                    => 'Ei',
545    'NoDetectedCameras'     => 'Ei leidnud kaameraid',
546    'NoDetectedProfiles'   => 'No Detected Profiles',   // Added - 2018-08-30
547    'NoFramesRecorded'      => 'Ei ole kaadreid salvetatud selles sündmuses',
548    'NoGroup'               => 'Ei krupp',
549    'NoSavedFilters'        => 'EiSalvestatudFiltreid',
550    'NoStatisticsRecorded'  => 'Ei ole statistikat salvestatud selle sündmuse/kaadri kohta',
551    'None'                  => 'None',
552    'NoneAvailable'         => 'None available',
553    'Normal'                => 'Normaalne',
554    'Notes'                 => 'Märkmed',
555    'NumPresets'            => 'Num Presets',
556    'Off'                   => 'Väljas',
557    'On'                    => 'Sees',
558    '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
559    'OnvifProbe'           => 'ONVIF',                  // Added - 2015-04-18
560    '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
561    'OpEq'                  => 'Võrdne',
562    'OpGt'                  => 'Suurem kui',
563    'OpGtEq'                => 'suurem kui või võrdne',
564    'OpIn'                  => 'in set',
565    'OpIs'                 => 'is',                     // Added - 2018-08-30
566    'OpIsNot'              => 'is not',                 // Added - 2018-08-30
567    'OpLt'                  => 'vähem kui',
568    'OpLtEq'                => 'vähem kui või võrdne',
569    'OpMatches'             => 'klapib',
570    'OpNe'                  => 'ei võrdne',
571    'OpNotIn'               => 'not in set',
572    'OpNotMatches'          => 'ei klapi',
573    'Open'                  => 'Ava',
574    'OptionHelp'            => 'Valik Aita',
575    'OptionRestartWarning'  => 'These changes may not come into effect fully\nwhile the system is running. When you have\nfinished making your changes please ensure that\nyou restart ZoneMinder.',
576    'OptionalEncoderParam' => 'Optional Encoder Parameters', // Added - 2018-08-30
577    'Options'               => 'Seaded',
578    'OrEnterNewName'        => 'või sisesta uus nimi',
579    'Order'                 => 'Järjekord',
580    'Orientation'           => 'Orientatsioon',
581    'Out'                   => 'Out',
582    'OverwriteExisting'     => 'Kirjuta üle',
583    'Paged'                 => 'Paged',
584    'Pan'                   => 'Pan',
585    'PanLeft'               => 'Pan Left',
586    'PanRight'              => 'Pan Right',
587    'PanTilt'               => 'Pan/Tilt',
588    'Parameter'             => 'Parameter',
589    'Password'              => 'Password',
590    'PasswordsDifferent'    => 'The new and confirm passwords are different',
591    'Paths'                 => 'Paths',
592    'Pause'                 => 'Pause',
593    'Phone'                 => 'Telefon',
594    'PhoneBW'               => 'Phone&nbsp;B/W',
595    'Pid'                   => 'PID',                    // Added - 2011-06-16
596    'PixelDiff'             => 'Pixel Diff',
597    'Pixels'                => 'pikslid',
598    'Play'                  => 'Play',
599    'PlayAll'               => 'Play Kõike',
600    'PleaseWait'            => 'Palun Oota',
601    'Plugins'               => 'Pluginad',
602    'Point'                 => 'Punkt',
603    'PostEventImageBuffer'  => 'Post Event Image Count',
604    'PreEventImageBuffer'   => 'Pre Event Image Count',
605    'PreserveAspect'        => 'Preserve Aspect Ratio',
606    'Preset'                => 'Eelseatud',
607    'Presets'               => 'Eelseaded',
608    'Prev'                  => 'Prev',
609    'Probe'                 => 'Probe',
610    'ProfileProbe'         => 'Stream Probe',           // Added - 2015-04-18
611    '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
612    'Progress'             => 'Progress',               // Added - 2015-04-18
613    'Protocol'              => 'Protocol',
614    'RTSPDescribe'         => 'Use RTSP Response Media URL', // Added - 2018-08-30
615    'RTSPTransport'        => 'RTSP Transport Protocol', // Added - 2018-08-30
616    'Rate'                  => 'Rate',
617    'Real'                  => 'Reaaalne',
618    'RecaptchaWarning'     => 'Your reCaptcha secret key is invalid. Please correct it, or reCaptcha will not work', // Added - 2018-08-30
619    'Record'                => 'Salvesta',
620    'RecordAudio'          => 'Whether to store the audio stream when saving an event.', // Added - 2018-08-30
621    'RefImageBlendPct'      => 'Reference Image Blend %ge',
622    'Refresh'               => 'Värskenda',
623    'Remote'                => 'Remote',
624    'RemoteHostName'        => 'Remote Host Name',
625    'RemoteHostPath'        => 'Remote Host Path',
626    'RemoteHostPort'        => 'Remote Host Port',
627    'RemoteHostSubPath'     => 'Remote Host SubPath',
628    'RemoteImageColours'    => 'Remote Image Colours',
629    'RemoteMethod'          => 'Remote Method',
630    'RemoteProtocol'        => 'Remote Protocol',
631    'Rename'                => 'Nimeta ümber',
632    'Replay'                => 'Kordus esitus',
633    'ReplayAll'             => 'Kõik sündmused',
634    'ReplayGapless'         => 'Lünkadeta sündmused',
635    'ReplaySingle'          => 'Üksik sündmus',
636    'ReportEventAudit'     => 'Audit Events Report',    // Added - 2018-08-30
637    'Reset'                 => 'Reset',
638    'ResetEventCounts'      => 'Reset Event Counts',
639    'Restart'               => 'Taaskäivita',
640    'Restarting'            => 'Restarting',
641    'RestrictedCameraIds'   => 'Restricted Camera Ids',
642    'RestrictedMonitors'    => 'Restricted Monitors',
643    'ReturnDelay'           => 'Return Delay',
644    'ReturnLocation'        => 'Return Location',
645    'Rewind'                => 'Rewind',
646    'RotateLeft'            => 'Pööra vasakule',
647    'RotateRight'           => 'Pööra paremale',
648    'RunLocalUpdate'        => 'Please run zmupdate.pl to update', // Added - 2011-05-25
649    'RunMode'               => 'Käimis resiim',
650    'RunState'              => 'Käimis olek',
651    'Running'               => 'Töötab',
652    'Save'                  => 'Salvesta',
653    'SaveAs'                => 'Salvesta kui',
654    'SaveFilter'            => 'Salvesta Filter',
655    'SaveJPEGs'            => 'Save JPEGs',             // Added - 2018-08-30
656    'Scale'                 => 'Skaala',
657    'Score'                 => 'Skoor',
658    'Secs'                  => 'Secs',
659    'Sectionlength'         => 'Section length',
660    'Select'                => 'Selekteeri',
661    'SelectFormat'          => 'Selekteeri Formaat',          // Added - 2011-06-17
662    'SelectLog'             => 'Selekteeri logi',             // Added - 2011-06-17
663    'SelectMonitors'        => 'Selekteeri Monitorid',
664    'SelfIntersecting'      => 'Polygon edges must not intersect',
665    'Set'                   => 'Säti',
666    'SetNewBandwidth'       => 'Vali uus riba laius',
667    'SetPreset'             => 'Set Preset',
668    'Settings'              => 'Sätted',
669    'ShowFilterWindow'      => 'Näita Filtri Akent',
670    'ShowTimeline'          => 'Näita Timeline',
671    'SignalCheckColour'     => 'Signaali Kontroll Värv',
672    'SignalCheckPoints'    => 'Signal Check Points',    // Added - 2018-08-30
673    'Size'                  => 'Suurus',
674    'SkinDescription'       => 'Vaheta veebilehe välimus selles arvutis', // Added - 2011-03-02
675    'Sleep'                 => 'Maga',
676    'SortAsc'               => 'Kasvav',
677    'SortBy'                => 'Sorteeri',
678    'SortDesc'              => 'Kahanev',
679    'Source'                => 'Allikas',
680    'SourceColours'         => 'Allika Värvid',
681    'SourcePath'            => 'Allika Path',
682    'SourceType'            => 'Allika tüüp',
683    'Speed'                 => 'Kiirus',
684    'SpeedHigh'             => 'Kiire Kiirus',
685    'SpeedLow'              => 'Madal Kiirus',
686    'SpeedMedium'           => 'Keskmine Kiirus',
687    'SpeedTurbo'            => 'Turbo Kiirus',
688    'Start'                 => 'Start',
689    'State'                 => 'Olek',
690    'Stats'                 => 'Statistika',
691    'Status'                => 'Staatus',
692    'StatusConnected'      => 'Capturing',              // Added - 2018-08-30
693    'StatusNotRunning'     => 'Not Running',            // Added - 2018-08-30
694    'StatusRunning'        => 'Not Capturing',          // Added - 2018-08-30
695    'StatusUnknown'        => 'Unknown',                // Added - 2018-08-30
696    'Step'                  => 'Samm',
697    'StepBack'              => 'Samm tagasi',
698    'StepForward'           => 'Samm edasi',
699    'StepLarge'             => 'Suur Samm',
700    'StepMedium'            => 'Keskmine Samm',
701    'StepNone'              => 'Ei Samm',
702    'StepSmall'             => 'Väike Samm',
703    'Stills'                => 'Stills',
704    'Stop'                  => 'Stop',
705    'Stopped'               => 'Stopitud',
706    'StorageArea'          => 'Storage Area',           // Added - 2018-08-30
707    'StorageScheme'        => 'Scheme',                 // Added - 2018-08-30
708    'Stream'                => 'Striim',
709    'StreamReplayBuffer'    => 'Striimi Replay Pildi Puhver',
710    'Submit'                => 'Submit',
711    'System'                => 'Süsteem',
712    'SystemLog'             => 'Süsteemi Logi',             // Added - 2011-06-16
713    'TargetColorspace'     => 'Target colorspace',      // Added - 2015-04-18
714    'Tele'                  => 'Tele',
715    'Thumbnail'             => 'Thumbnail',
716    'Tilt'                  => 'Tilt',
717    'Time'                  => 'Time',
718    'TimeDelta'             => 'Time Delta',
719    'TimeStamp'             => 'Time Stamp',
720    'Timeline'              => 'Timeline',
721    'TimelineTip1'          => 'Liiguta hiir üle graafiku et näha pildi ja sündmuse detaile.',              // Added 2013.08.15.
722    'TimelineTip2'          => 'Click on the coloured sections of the graph, or the image, to view the event.',              // Added 2013.08.15.
723    'TimelineTip3'          => 'Click on the background to zoom in to a smaller time period based around your click.',              // Added 2013.08.15.
724    'TimelineTip4'          => 'Use the controls below to zoom out or navigate back and forward through the time range.',              // Added 2013.08.15.
725    'Timestamp'             => 'Timestamp',
726    'TimestampLabelFormat'  => 'Timestamp Label Format',
727    'TimestampLabelSize'   => 'Font Size',              // Added - 2018-08-30
728    'TimestampLabelX'       => 'Timestamp Label X',
729    'TimestampLabelY'       => 'Timestamp Label Y',
730    'Today'                 => 'Täna',
731    'Tools'                 => 'Tööriistad',
732    'Total'                 => 'Summa',                  // Added - 2011-06-16
733    'TotalBrScore'          => 'Summa<br/>Skoor',
734    'TrackDelay'            => 'Jälgimise Viide',
735    'TrackMotion'           => 'Jälgi Liikumist',
736    'Triggers'              => 'Trigerid',
737    'TurboPanSpeed'         => 'Turbo Pan Speed',
738    'TurboTiltSpeed'        => 'Turbo Tilt Speed',
739    'Type'                  => 'Tüüp',
740    'Unarchive'             => 'Eemalda Arhiivist',
741    'Undefined'             => 'Defineerimatta',
742    'Units'                 => 'Ühikud',
743    'Unknown'               => 'Tundmatu',
744    'Update'                => 'Uuenda',
745    'UpdateAvailable'       => 'Uuendus ZoneMinder-ile saadaval.',
746    'UpdateNotNecessary'    => 'Uuendus ei ole vajalik.',
747    'Updated'               => 'Uuendatud',                // Added - 2011-06-16
748    'Upload'                => 'Üles laadimine',                 // Added - 2011-08-23
749    'UseFilter'             => 'Kasuta Filtrit',
750    'UseFilterExprsPost'    => '&nbsp;filter&nbsp;expressions', // This is used at the end of the phrase 'use N filter expressions'
751    'UseFilterExprsPre'     => 'Use&nbsp;', // This is used at the beginning of the phrase 'use N filter expressions'
752    'UsedPlugins'          => 'Used Plugins',           // Added - 2015-04-18
753    'User'                  => 'Kasutaja',
754    'Username'              => 'Kasutajanimi',
755    'Users'                 => 'Kasutajad',
756    'V4L'                  => 'V4L',                    // Added - 2015-04-18
757    'V4LCapturesPerFrame'  => 'Captures Per Frame',     // Added - 2015-04-18
758    'V4LMultiBuffer'       => 'Multi Buffering',        // Added - 2015-04-18
759    'Value'                 => 'Väärtus',
760    'Version'               => 'Versioon',
761    'VersionIgnore'         => 'Ignoreeri See Versioon',
762    'VersionRemindDay'      => 'Meenuta uuesti päeva pärast',
763    'VersionRemindHour'     => 'Meenuta uuesti tunni pärast',
764    'VersionRemindNever'    => 'Ära Meenuta Uuest Versioonist',
765    'VersionRemindWeek'     => 'Meenuta uuesti nädalapärast',
766    'Video'                 => 'Video',
767    'VideoFormat'           => 'Video Formaat',
768    'VideoGenFailed'        => 'Video Genereerimine Ebaõnnestus!!!',
769    'VideoGenFiles'         => 'Existing Video Files',
770    'VideoGenNoFiles'       => 'Ei Leitud Video Faile',
771    'VideoGenParms'         => 'Video Genereerimise Parameetrid',
772    'VideoGenSucceeded'     => 'Video Genereerimine Õnnestus!!!',
773    'VideoSize'             => 'Video Suurus',
774    'VideoWriter'          => 'Video Writer',           // Added - 2018-08-30
775    'View'                  => 'Vaata',
776    'ViewAll'               => 'View All',
777    'ViewEvent'             => 'Vaata Sündmust',
778    'ViewPaged'             => 'View Paged',
779    'Wake'                  => 'Wake',
780    'WarmupFrames'          => 'Warmup Frames',
781    'Watch'                 => 'Vaata',
782    'Web'                   => 'Veeb',
783    'WebColour'             => 'Veebi värv',
784    'WebSiteUrl'           => 'Website URL',            // Added - 2018-08-30
785    'Week'                  => 'Nädalas',
786    'White'                 => 'White',
787    'WhiteBalance'          => 'White Balance',
788    'Wide'                  => 'Wide',
789    'X'                     => 'X',
790    'X10'                   => 'X10',
791    'X10ActivationString'   => 'X10 Activation String',
792    'X10InputAlarmString'   => 'X10 Input Alarm String',
793    'X10OutputAlarmString'  => 'X10 Output Alarm String',
794    'Y'                     => 'J',
795    'Yes'                   => 'Jah',
796    'YouNoPerms'            => 'Sul ei ole õigusi kasutada seda ressurssi.',
797    'Zone'                  => 'Tsoon',
798    'ZoneAlarmColour'       => 'Alarmi Värv (Red"Punane"/Green"Roheline"/Blue"Sinine")',
799    'ZoneArea'              => 'Tsooni Ala',
800    'ZoneExtendAlarmFrames' => 'Extend Alarm Frame Count',
801    'ZoneFilterSize'        => 'Filter Width/Height (pixels)',
802    'ZoneMinMaxAlarmArea'   => 'Min/Max Alarmed Area',
803    'ZoneMinMaxBlobArea'    => 'Min/Max Blob Area',
804    'ZoneMinMaxBlobs'       => 'Min/Max Blobs',
805    'ZoneMinMaxFiltArea'    => 'Min/Max Filtered Area',
806    'ZoneMinMaxPixelThres'  => 'Min/Max Pixel Threshold (0-255)',
807    'ZoneMinderLog'         => 'ZoneMinder Log',         // Added - 2011-06-17
808    'ZoneOverloadFrames'    => 'Overload Frame Ignore Count',
809    'Zones'                 => 'Tsoone',
810    'Zoom'                  => 'Suurenda',
811    'ZoomIn'                => 'Suurenda lähemale',
812    'ZoomOut'               => 'Suurenda kaugemale',
813);
814
815// Complex replacements with formatting and/or placements, must be passed through sprintf
816$CLANG = array(
817    'CurrentLogin'          => 'Current login is \'%1$s\'',
818    'EventCount'            => '%1$s %2$s', // For example '37 Events' (from Vlang below)
819    'LastEvents'            => 'Last %1$s %2$s', // For example 'Last 37 Events' (from Vlang below)
820    'LatestRelease'         => 'The latest release is v%1$s, you have v%2$s.',
821    'MonitorCount'          => '%1$s %2$s', // For example '4 Monitors' (from Vlang below)
822    'MonitorFunction'       => 'Monitor %1$s Function',
823    'RunningRecentVer'      => 'You are running the most recent version of ZoneMinder, v%s.',
824    'VersionMismatch'       => 'Version mismatch, system is version %1$s, database is %2$s.', // Added - 2011-05-25
825);
826
827// The next section allows you to describe a series of word ending and counts used to
828// generate the correctly conjugated forms of words depending on a count that is associated
829// with that word.
830// This intended to allow phrases such a '0 potatoes', '1 potato', '2 potatoes' etc to
831// conjugate correctly with the associated count.
832// In some languages such as English this is fairly simple and can be expressed by assigning
833// a count with a singular or plural form of a word and then finding the nearest (lower) value.
834// So '0' of something generally ends in 's', 1 of something is singular and has no extra
835// ending and 2 or more is a plural and ends in 's' also. So to find the ending for '187' of
836// something you would find the nearest lower count (2) and use that ending.
837//
838// So examples of this would be
839// $zmVlangPotato = array( 0=>'Potatoes', 1=>'Potato', 2=>'Potatoes' );
840// $zmVlangSheep = array( 0=>'Sheep' );
841//
842// where you can have as few or as many entries in the array as necessary
843// If your language is similar in form to this then use the same format and choose the
844// appropriate zmVlang function below.
845// If however you have a language with a different format of plural endings then another
846// approach is required . For instance in Russian the word endings change continuously
847// depending on the last digit (or digits) of the numerator. In this case then zmVlang
848// arrays could be written so that the array index just represents an arbitrary 'type'
849// and the zmVlang function does the calculation about which version is appropriate.
850//
851// So an example in Russian might be (using English words, and made up endings as I
852// don't know any Russian!!)
853// 'Potato' => array( 1=>'Potati', 2=>'Potaton', 3=>'Potaten' ),
854//
855// and the zmVlang function decides that the first form is used for counts ending in
856// 0, 5-9 or 11-19 and the second form when ending in 1 etc.
857//
858
859// Variable arrays expressing plurality, see the zmVlang description above
860$VLANG = array(
861    'Event'                 => array( 0=>'Events', 1=>'Event', 2=>'Events' ),
862    'Monitor'               => array( 0=>'Monitors', 1=>'Monitor', 2=>'Monitors' ),
863);
864// You will need to choose or write a function that can correlate the plurality string arrays
865// with variable counts. This is used to conjugate the Vlang arrays above with a number passed
866// in to generate the correct noun form.
867//
868// In languages such as English this is fairly simple
869// Note this still has to be used with printf etc to get the right formatting
870function zmVlang( $langVarArray, $count )
871{
872    krsort( $langVarArray );
873    foreach ( $langVarArray as $key=>$value )
874    {
875        if ( abs($count) >= $key )
876        {
877            return( $value );
878        }
879    }
880    die( 'Error, unable to correlate variable language string' );
881}
882
883// This is an version that could be used in the Russian example above
884// The rules are that the first word form is used if the count ends in
885// 0, 5-9 or 11-19. The second form is used then the count ends in 1
886// (not including 11 as above) and the third form is used when the
887// count ends in 2-4, again excluding any values ending in 12-14.
888//
889// function zmVlang( $langVarArray, $count )
890// {
891//  $secondlastdigit = substr( $count, -2, 1 );
892//  $lastdigit = substr( $count, -1, 1 );
893//  // or
894//  // $secondlastdigit = ($count/10)%10;
895//  // $lastdigit = $count%10;
896//
897//  // Get rid of the special cases first, the teens
898//  if ( $secondlastdigit == 1 && $lastdigit != 0 )
899//  {
900//      return( $langVarArray[1] );
901//  }
902//  switch ( $lastdigit )
903//  {
904//      case 0 :
905//      case 5 :
906//      case 6 :
907//      case 7 :
908//      case 8 :
909//      case 9 :
910//      {
911//          return( $langVarArray[1] );
912//          break;
913//      }
914//      case 1 :
915//      {
916//          return( $langVarArray[2] );
917//          break;
918//      }
919//      case 2 :
920//      case 3 :
921//      case 4 :
922//      {
923//          return( $langVarArray[3] );
924//          break;
925//      }
926//  }
927//  die( 'Error, unable to correlate variable language string' );
928// }
929
930// This is an example of how the function is used in the code which you can uncomment and
931// use to test your custom function.
932//$monitors = array();
933//$monitors[] = 1; // Choose any number
934//echo sprintf( $CLANG['MonitorCount'], count($monitors), zmVlang( $VLANG['VlangMonitor'], count($monitors) ) );
935
936// In this section you can override the default prompt and help texts for the options area
937// These overrides are in the form show below where the array key represents the option name minus the initial ZM_
938// So for example, to override the help text for ZM_LANG_DEFAULT do
939$OLANG = array(
940	'OPTIONS_FFMPEG' => array(
941		'Help' => "Parameters in this field are passed on to FFmpeg. Multiple parameters can be separated by ,~~ ".
942		          "Examples (do not enter quotes)~~~~".
943		          "\"allowed_media_types=video\" Set datatype to request fromcam (audio, video, data)~~~~".
944		          "\"reorder_queue_size=nnn\" Set number of packets to buffer for handling of reordered packets~~~~".
945		          "\"loglevel=debug\" Set verbosity of FFmpeg (quiet, panic, fatal, error, warning, info, verbose, debug)"
946	),
947	'OPTIONS_LIBVLC' => array(
948		'Help' => "Parameters in this field are passed on to libVLC. Multiple parameters can be separated by ,~~ ".
949		          "Examples (do not enter quotes)~~~~".
950		          "\"--rtp-client-port=nnn\" Set local port to use for rtp data~~~~".
951		          "\"--verbose=2\" Set verbosity of libVLC"
952	),
953
954//    'LANG_DEFAULT' => array(
955//        'Prompt' => "This is a new prompt for this option",
956//        'Help' => "This is some new help for this option which will be displayed in the window when the ? is clicked"
957//    ),
958);
959
960?>
961