1<?php
2//
3// ZoneMinder web Danish 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 Danish Translation by Jørgen Edelbo
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
53header( "Content-Type: text/html; charset=utf-8" );
54// header( "Content-Type: text/html; charset=windows-1252" );
55
56// You may need to change your locale here if your default one is incorrect for the
57// language described in this file, or if you have multiple languages supported.
58// If you do need to change your locale, be aware that the format of this function
59// is subtlely different in versions of PHP before and after 4.3.0, see
60// http://uk2.php.net/manual/en/function.setlocale.php for details.
61// Also be aware that changing the whole locale may affect some floating point or decimal
62// arithmetic in the database, if this is the case change only the individual locale areas
63// that don't affect this rather than all at once. See the examples below.
64// Finally, depending on your setup, PHP may not enjoy have multiple locales in a shared
65// threaded environment, if you get funny errors it may be this.
66//
67// Examples
68// setlocale( 'LC_ALL', 'en_GB' ); All locale settings pre-4.3.0
69// setlocale( LC_ALL, 'en_GB' ); All locale settings 4.3.0 and after
70// setlocale( LC_CTYPE, 'en_GB' ); Character class settings 4.3.0 and after
71// setlocale( LC_TIME, 'en_GB' ); Date and time formatting 4.3.0 and after
72
73// Simple String Replacements
74$SLANG = array(
75    '24BitColour'           => '24 bit farve',
76    '32BitColour'           => '32 bit farve',
77    '8BitGrey'              => '8 bit gråskala',
78    'Action'                => 'Handling',
79    'Actual'                => 'Aktuel',
80    'AddNewControl'         => 'Tilføj Ny Kontrol',
81    'AddNewMonitor'         => 'Tilføj Ny Monitor',
82    'AddNewServer'          => 'Tilføj Ny Server',
83    'AddNewStorage'        => 'Add New Storage',        // Added - 2018-08-30
84    'AddNewUser'            => 'Tilføj Ny Bruger',
85    'AddNewZone'            => 'Tilføj Ny Zone',
86    'Alarm'                 => 'Alarm',
87    'AlarmBrFrames'         => 'Alarm<br/>Rammer',
88    'AlarmFrame'            => 'Alarm Ramme',
89    'AlarmFrameCount'       => 'Antal Alarm Rammer',
90    'AlarmLimits'           => 'Alarm Grænser',
91    'AlarmMaximumFPS'       => 'Alarm Maksimum FPS',
92    'AlarmPx'               => 'Alarm Px',
93    'AlarmRGBUnset'         => 'Du skal vælge en alarm RGB farve',
94    'AlarmRefImageBlendPct' => 'Alarm Reference Billede Blandings %',
95    'Alert'                 => 'Advarsel',
96    'All'                   => 'Alle',
97    'AnalysisFPS'           => 'Analyse FPS',
98    'AnalysisUpdateDelay'   => 'Analyse Opdaterings Forsinkelse',
99    'Apply'                 => 'Udfør',
100    'ApplyingStateChange'   => 'Udfører tilstandsændring',
101    'ArchArchived'          => 'Kun arkiverede',
102    'ArchUnarchived'        => 'Kun ikke-arkiverede',
103    'Archive'               => 'Arkivér',
104    'Archived'              => 'Arkiverede',
105    'Area'                  => 'Område',
106    'AreaUnits'             => 'Område (px/%)',
107    'AttrAlarmFrames'       => 'Alarm Rammer',
108    'AttrArchiveStatus'     => 'Arkiverings Status',
109    'AttrAvgScore'          => 'Middel Score',
110    'AttrCause'             => 'Årsag',
111    'AttrDiskBlocks'        => 'Disk Blokke',
112    'AttrDiskPercent'       => 'Disk Procent',
113    'AttrDiskSpace'        => 'Disk Space',             // Added - 2018-08-30
114    'AttrDuration'          => 'Varighed',
115    'AttrEndDate'          => 'End Date',               // Added - 2018-08-30
116    'AttrEndDateTime'      => 'End Date/Time',          // Added - 2018-08-30
117    'AttrEndTime'          => 'End Time',               // Added - 2018-08-30
118    'AttrEndWeekday'       => 'End Weekday',            // Added - 2018-08-30
119    'AttrFilterServer'     => 'Server Filter is Running On', // Added - 2018-08-30
120    'AttrFrames'            => 'Rammer',
121    'AttrId'                => 'Id',
122    'AttrMaxScore'          => 'Max. Score',
123    'AttrMonitorId'         => 'Monitor Id',
124    'AttrMonitorName'       => 'Monitor Navn',
125    'AttrMonitorServer'    => 'Server Monitor is Running On', // Added - 2018-08-30
126    'AttrName'              => 'Navn',
127    'AttrNotes'             => 'Noter',
128    'AttrStartDate'        => 'Start Date',             // Added - 2018-08-30
129    'AttrStartDateTime'    => 'Start Date/Time',        // Added - 2018-08-30
130    'AttrStartTime'        => 'Start Time',             // Added - 2018-08-30
131    'AttrStartWeekday'     => 'Start Weekday',          // Added - 2018-08-30
132    'AttrStateId'          => 'Run State',              // Added - 2018-08-30
133    'AttrStorageArea'      => 'Storage Area',           // Added - 2018-08-30
134    'AttrStorageServer'    => 'Server Hosting Storage', // Added - 2018-08-30
135    'AttrSystemLoad'        => 'System Belastning',
136    'AttrTotalScore'        => 'Total Score',
137    'Auto'                  => 'Auto',
138    'AutoStopTimeout'       => 'Auto Stop Timeout',
139    'Available'             => 'Tilgængelig',
140    'AvgBrScore'            => 'Middel<br/>Score',
141    'Background'            => 'Baggrund',
142    'BackgroundFilter'      => 'Kør filteret i baggrunden',
143    'BadAlarmFrameCount'    => 'Antal alarm rammer skal være et positivt heltal',
144    'BadAlarmMaxFPS'        => 'Alarm Maximum FPS skal være et positivt heltal eller flydende tal',
145    'BadAnalysisFPS'        => 'Analyse FPS skal være et positivt heltal eller flydende tal',
146    'BadAnalysisUpdateDelay'=> 'Analyse opdaterings forsinkelse skal være et heltal på 0 eller mere',
147    'BadChannel'            => 'Kanal skal sættes til et heltal på 0 eller mere',
148    'BadColours'            => 'Målfarven skal sættes til en gyldig værdi',
149    'BadDevice'             => 'Enhed skal sættes til en gyldig værdi',
150    'BadFPSReportInterval'  => 'Antal FPS report interval buffere skal være et heltal på 0 eller mere',
151    'BadFormat'             => 'Format skal sættes til en gyldig værdi',
152    'BadFrameSkip'          => 'Antal Frame skip skal være et heltal på 0 eller mere',
153    'BadHeight'             => 'Højde skal sættes til en gyldig værdi',
154    'BadHost'               => 'Host skal vare en gyldig IP adresse eller hostname, inkludér ikke http://',
155    'BadImageBufferCount'   => 'Billed buffer størrelse skal være et heltal  2 eller mere',
156    'BadLabelX'             => 'Mærkat X co-ordinaten skal sættes til et heltal  0 eller mere',
157    'BadLabelY'             => 'Mærkat Y co-ordinaten skal sættes til et heltal  0 eller mere',
158    'BadMaxFPS'             => 'Maximum FPS skal være et positivt heltal eller flydende tal',
159    'BadMotionFrameSkip'    => 'Antal Motion Frame skip skal være et heltal  0 eller mere',
160    'BadNameChars'          => 'Navne kan kun indeholde alfanumeriske tegn samt mellemrum, bindestreg og understregning',
161    'BadPalette'            => 'Palette skal sættes til en gyldig værdi',
162    'BadPath'               => 'Sti skal sættes til en gyldig værdi',
163    'BadPort'               => 'Port skal sættes til et gyldigt nummer',
164    'BadPostEventCount'     => 'Antal rammer efter hændelsen skal være et heltal  0 eller mere',
165    'BadPreEventCount'      => 'Antal rammer før hændelsen skal være mindst 0 samt mindre en billedbufferstørrelsen',
166    'BadRefBlendPerc'       => 'Reference blandings procentdelen skal være et positivt heltal',
167    'BadSectionLength'      => 'Sektionslængden skal være et heltal  30 eller mere',
168    'BadSignalCheckColour'  => 'Signal check farve skal være en gyldig RGB farve streng',
169    'BadSourceType'        => 'Source Type \"Web Site\" requires the Function to be set to \"Monitor\"', // Added - 2018-08-30
170    'BadStreamReplayBuffer' => 'Videostrøm genspilsbufferen skal sættes til et heltal på 0 eller mere',
171    'BadWarmupCount'        => 'Opvarmnings rammer skal være et heltal på 0 eller mere',
172    'BadWebColour'          => 'Web farve skal være en gyldigt web farve streng',
173    'BadWebSitePath'       => 'Please enter a complete website url, including the http:// or https:// prefix.', // Added - 2018-08-30
174    'BadWidth'              => 'Bredde skal sættes til en gyldig værdi',
175    'Bandwidth'             => 'Båndbredde',
176    'BandwidthHead'         => 'Båndbredde',	// This is the end of the bandwidth status on the top of the console, different in many language due to phrasing
177    'BlobPx'                => 'Blob Px',
178    'BlobSizes'             => 'Blob Størrelser',
179    'Blobs'                 => 'Blobs',
180    'Brightness'            => 'Lysstyrke',
181    'Buffer'                => 'Buffer',
182    'Buffers'               => 'Buffere',
183    'CSSDescription'        => 'SKift standard css for denne computer',
184    'CanAutoFocus'          => 'Can Auto Focus',
185    'CanAutoGain'           => 'Can Auto Gain',
186    'CanAutoIris'           => 'Can Auto Iris',
187    'CanAutoWhite'          => 'Can Auto White Bal.',
188    'CanAutoZoom'           => 'Can Auto Zoom',
189    'CanFocus'              => 'Can Focus',
190    'CanFocusAbs'           => 'Can Focus Absolute',
191    'CanFocusCon'           => 'Can Focus Continuous',
192    'CanFocusRel'           => 'Can Focus Relative',
193    'CanGain'               => 'Can Gain ',
194    'CanGainAbs'            => 'Can Gain Absolute',
195    'CanGainCon'            => 'Can Gain Continuous',
196    'CanGainRel'            => 'Can Gain Relative',
197    'CanIris'               => 'Can Iris',
198    'CanIrisAbs'            => 'Can Iris Absolute',
199    'CanIrisCon'            => 'Can Iris Continuous',
200    'CanIrisRel'            => 'Can Iris Relative',
201    'CanMove'               => 'Can Move',
202    'CanMoveAbs'            => 'Can Move Absolute',
203    'CanMoveCon'            => 'Can Move Continuous',
204    'CanMoveDiag'           => 'Can Move Diagonally',
205    'CanMoveMap'            => 'Can Move Mapped',
206    'CanMoveRel'            => 'Can Move Relative',
207    'CanPan'                => 'Can Pan' ,
208    'CanReset'              => 'Can Reset',
209	'CanReboot'             => 'Can Reboot',
210    'CanSetPresets'         => 'Can Set Presets',
211    'CanSleep'              => 'Can Sleep',
212    'CanTilt'               => 'Can Tilt',
213    'CanWake'               => 'Can Wake',
214    'CanWhite'              => 'Can White Balance',
215    'CanWhiteAbs'           => 'Can White Bal. Absolute',
216    'CanWhiteBal'           => 'Can White Bal.',
217    'CanWhiteCon'           => 'Can White Bal. Continuous',
218    'CanWhiteRel'           => 'Can White Bal. Relative',
219    'CanZoom'               => 'Can Zoom',
220    'CanZoomAbs'            => 'Can Zoom Absolute',
221    'CanZoomCon'            => 'Can Zoom Continuous',
222    'CanZoomRel'            => 'Can Zoom Relative',
223    'Cancel'                => 'Fortryd',
224    'CancelForcedAlarm'     => 'Fortryd Tvungen Alarm',
225    'CaptureHeight'         => 'Capture Højde',
226    'CaptureMethod'         => 'Capture Metode',
227    'CapturePalette'        => 'Capture Palette',
228    'CaptureResolution'     => 'Capture Opløsning',
229    'CaptureWidth'          => 'Capture Bredde',
230    'Cause'                 => 'Årsag',
231    'CheckMethod'           => 'Alarm Check Metode',
232    'ChooseDetectedCamera'  => 'Vælg Fundet Kamera',
233    'ChooseFilter'          => 'Vælg Filter',
234    'ChooseLogFormat'       => 'Vælg et lognings format',
235    'ChooseLogSelection'    => 'Vælg et lognings udvælgelse',
236    'ChoosePreset'          => 'Vælg Forudindstilling',
237    'Clear'                 => 'Slet',
238    'CloneMonitor'          => 'Klon Monitor',
239    'Close'                 => 'Luk',
240    'Colour'                => 'Farve',
241    'Command'               => 'Kommando',
242    'Component'             => 'Komponent',
243    'ConcurrentFilter'     => 'Run filter concurrently', // Added - 2018-08-30
244    'Config'                => 'Konfigurer',
245    'ConfiguredFor'         => 'Konfigureret for',
246    'ConfirmDeleteEvents'   => 'Er du sikker på, at du vil slette de markerede hændelser?',
247    'ConfirmPassword'       => 'Bekræft Adgangskode',
248    'ConjAnd'               => 'og',
249    'ConjOr'                => 'eller',
250    'Console'               => 'Konsol',
251    'ContactAdmin'          => 'Venligst kontakt din administrator for detaljer.',
252    'Continue'              => 'Fortsæt',
253    'Contrast'              => 'Kontrast',
254    'Control'               => 'Control',
255    'ControlAddress'        => 'Control Address',
256    'ControlCap'            => 'Control Capability',
257    'ControlCaps'           => 'Control Capabilities',
258    'ControlDevice'         => 'Control Device',
259    'ControlType'           => 'Control Type',
260    'Controllable'          => 'Controllable',
261    'Current'               => 'Nuværende',
262    'Cycle'                 => 'Cyklisk',
263    'CycleWatch'            => 'Cyklisk Overvågning',
264    'DateTime'              => 'Dato/Tid',
265    'Day'                   => 'Dag',
266    'Debug'                 => 'Fejlfind',
267    'DefaultRate'           => 'Standard Rate',
268    'DefaultScale'          => 'Standard Skalering',
269    'DefaultView'           => 'Standard Visning',
270    'Deinterlacing'         => 'Deinterlacing',
271    'Delay'                 => 'Forsilkelse',
272    'Delete'                => 'Slet',
273    'DeleteAndNext'         => 'Slet &amp; Næste',
274    'DeleteAndPrev'         => 'Slet &amp; Forrige',
275    'DeleteSavedFilter'     => 'Slet gemt filter',
276    'Description'           => 'Beskrivelse',
277    'DetectedCameras'       => 'Fundne Kameraer',
278    'DetectedProfiles'      => 'Fundne Profiler',
279    'Device'                => 'Enheds',
280    'DeviceChannel'         => 'Enheds Kanal',
281    'DeviceFormat'          => 'Enheds Format',
282    'DeviceNumber'          => 'Enheds Number',
283    'DevicePath'            => 'Sti Til Enhed',
284    'Devices'               => 'Enheder',
285    'Dimensions'            => 'Dimensioner',
286    'DisableAlarms'         => 'Deaktiver Alarmer',
287    'Disk'                  => 'Disk',
288    'Display'               => 'Display',
289    'Displaying'            => 'Displaying',
290    'DoNativeMotionDetection'=> 'Do Native Motion Detection',
291    'Donate'                => 'Venligst Donér',
292    'DonateAlready'         => 'Nej, jeg har allerede doneret',
293    'DonateEnticement'      => 'You\'ve been running ZoneMinder for a while now and hopefully are finding it a useful addition to your home or workplace security. Although ZoneMinder is, and will remain, free and open source, it costs money to develop and support. If you would like to help support future development and new features then please consider donating. 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.',
294    'DonateRemindDay'       => 'Ikke endnu, påmind igen on 1 dag',
295    'DonateRemindHour'      => 'Ikke endnu, påmind igen on 1 time',
296    'DonateRemindMonth'     => 'Ikke endnu, påmind igen on 1 måned',
297    'DonateRemindNever'     => 'Nej, jeg ønsker ikke at donere, påmind ikke igen',
298    'DonateRemindWeek'      => 'Ikke endnu, påmind igen on 1 uge',
299    'DonateYes'             => 'Ja, jeg vil gerne donere nu',
300    'Download'              => 'Download',
301    'DownloadVideo'        => 'Download Video',         // Added - 2018-08-30
302    'DuplicateMonitorName'  => 'Dupliket Monitor Navn',
303    'Duration'              => 'Varighed',
304    'Edit'                  => 'Ret',
305    'EditLayout'           => 'Edit Layout',            // Added - 2018-08-30
306    'Email'                 => 'Email',
307    'EnableAlarms'          => 'Aktivér Alarmer',
308    'Enabled'               => 'Virksom',
309    'EnterNewFilterName'    => 'Indtast nyt filternavn',
310    'Error'                 => 'Fejl',
311    'ErrorBrackets'         => 'Fejl, venligst check, at du har samme antal open og lukke klammer',
312    'ErrorValidValue'       => 'Fejl, venligst check at alle parametre har en gyldig værdi',
313    'Etc'                   => 'etc',
314    'Event'                 => 'Hændelse',
315    'EventFilter'           => 'Hændelses Filter',
316    'EventId'               => 'Hændelses Id',
317    'EventName'             => 'Hændelses Name',
318    'EventPrefix'           => 'Hændelses Prefix',
319    'Events'                => 'Hændelser',
320    'Exclude'               => 'Ekskluder',
321    'Execute'               => 'Udfør',
322    'Exif'                  => 'Indlejre EXIF data i billede',
323    'Export'                => 'Exporter',
324    'ExportDetails'         => 'Exporter Hændelses Detaljer',
325    'ExportFailed'          => 'Export Mislykkedes',
326    'ExportFormat'          => 'Export Fil Format',
327    'ExportFormatTar'       => 'Tar',
328    'ExportFormatZip'       => 'Zip',
329    'ExportFrames'          => 'Exporter Ramme Detaljer',
330    'ExportImageFiles'      => 'Exporter billed filer',
331    'ExportLog'             => 'Export Log',
332    'ExportMiscFiles'       => 'Exporter Andre Filer (hvis tilstede)',
333    'ExportOptions'         => 'Export Indstillinger',
334    'ExportSucceeded'       => 'Export Lykkedes',
335    'ExportVideoFiles'      => 'Exporter Video Filer (hvis tilstede)',
336    'Exporting'             => 'Exporterer',
337    'FPS'                   => 'fps',
338    'FPSReportInterval'     => 'FPS Rapport Interval',
339    'FTP'                   => 'FTP',
340    'Far'                   => 'Fjern',
341    'FastForward'           => 'Hurtigt Frem',
342    'Feed'                  => 'Feed',
343    'Ffmpeg'                => 'Ffmpeg',
344    'File'                  => 'Fil',
345    'Filter'                => 'Filter',
346    'FilterArchiveEvents'   => 'Arkiver alle matchende',
347    'FilterDeleteEvents'    => 'Slet alle matchende',
348    'FilterEmailEvents'     => 'Email detaljer for alle matchende',
349    'FilterExecuteEvents'   => 'Udfør kommando for alle matchende',
350    'FilterLog'             => 'Filter log',
351    'FilterMessageEvents'   => 'Meddel detaljer for alle matchende',
352    'FilterMoveEvents'     => 'Move all matches',       // Added - 2018-08-30
353    'FilterPx'              => 'Filter Px',
354    'FilterUnset'           => 'Du skal angive filter bredde og højde',
355    'FilterUpdateDiskSpace'=> 'Update used disk space', // Added - 2018-08-30
356    'FilterUploadEvents'    => 'Upload alle match',
357    'FilterVideoEvents'     => 'Opret video for alle match',
358    'Filters'               => 'Filtre',
359    'First'                 => 'Første',
360    'FlippedHori'           => 'Spejlet Horizontalt',
361    'FlippedVert'           => 'Spejlet Vertikalt',
362    'FnMocord'              => 'Mocord',            // Added 2013.08.16.
363    'FnModect'              => 'Modect',            // Added 2013.08.16.
364    'FnMonitor'             => 'Monitor',            // Added 2013.08.16.
365    'FnNodect'              => 'Nodect',            // Added 2013.08.16.
366    'FnNone'                => 'None',            // Added 2013.08.16.
367    'FnRecord'              => 'Record',            // Added 2013.08.16.
368    'Focus'                 => 'Focus',
369    'ForceAlarm'            => 'Force Alarm',
370    'Format'                => 'Format',
371    'Frame'                 => 'Ramme',
372    'FrameId'               => 'Ramme Id',
373    'FrameRate'             => 'Billedhastighed',
374    'FrameSkip'             => 'Spring over antal rammer',
375    'Frames'                => 'Rammer',
376    'Func'                  => 'Funk',
377    'Function'              => 'Funktion',
378    'Gain'                  => 'Gain',
379    'General'               => 'Generelt',
380    'GenerateDownload'     => 'Generate Download',      // Added - 2018-08-30
381    'GenerateVideo'         => 'Generer Video',
382    'GeneratingVideo'       => 'Genererer Video',
383    'GoToZoneMinder'        => 'Gå til ZoneMinder.com',
384    'Grey'                  => 'Gråskala',
385    'Group'                 => 'Gruppe',
386    'Groups'                => 'Grupper',
387    'HasFocusSpeed'         => 'Has Focus Speed',
388    'HasGainSpeed'          => 'Has Gain Speed',
389    'HasHomePreset'         => 'Has Home Preset',
390    'HasIrisSpeed'          => 'Has Iris Speed',
391    'HasPanSpeed'           => 'Has Pan Speed',
392    'HasPresets'            => 'Has Presets',
393    'HasTiltSpeed'          => 'Has Tilt Speed',
394    'HasTurboPan'           => 'Has Turbo Pan',
395    'HasTurboTilt'          => 'Has Turbo Tilt',
396    'HasWhiteSpeed'         => 'Has White Bal. Speed',
397    'HasZoomSpeed'          => 'Has Zoom Speed',
398    'High'                  => 'Høj',
399    'HighBW'                => 'High&nbsp;B/W',
400    'Home'                  => 'Hjemme',
401    'Hostname'              => 'Hostname',
402    'Hour'                  => 'Time',
403    'Hue'                   => 'Farvetone',
404    'Id'                    => 'Id',
405    'Idle'                  => 'Afventende',
406    'Ignore'                => 'Ignorer',
407    'Image'                 => 'Billede',
408    'ImageBufferSize'       => 'Billed Buffer Størrelse (rammer)',
409    'Images'                => 'Billeder',
410    'In'                    => 'I',
411    'Include'               => 'Inkluder',
412    'Inverted'              => 'Inverteret',
413    'Iris'                  => 'Blænde',
414    'KeyString'             => 'Nøgle Streng',
415    'Label'                 => 'Mærkat',
416    'Language'              => 'Sprog',
417    'Last'                  => 'Sidste',
418    'Layout'                => 'Layout',
419    'Level'                 => 'Niveau',
420    'Libvlc'                => 'Libvlc',
421    'LimitResultsPost'      => 'resultater', // This is used at the end of the phrase 'Limit to first N results only'
422    'LimitResultsPre'       => 'Begræns til kun de første', // This is used at the beginning of the phrase 'Limit to first N results only'
423    'Line'                  => 'Linie',
424    'LinkedMonitors'        => 'Sammenkædede Monitorer',
425    'List'                  => 'Liste',
426    'ListMatches'          => 'List Matches',           // Added - 2018-08-30
427    'Load'                  => 'Belastning',
428    'Local'                 => 'Lokal',
429    'Log'                   => 'Log',
430    'LoggedInAs'            => 'Logget ind som',
431    'Logging'               => 'Logning',
432    'LoggingIn'             => 'Logger ind',
433    'Login'                 => 'Logind',
434    'Logout'                => 'Logud',
435    'Logs'                  => 'Logs',
436    'Low'                   => 'Lav',
437    'LowBW'                 => 'Lav&nbsp;B/W',
438    'Main'                  => 'Hoved',
439    'Man'                   => 'Man',
440    'Manual'                => 'Manuel',
441    'Mark'                  => 'Markér',
442    'Max'                   => 'Max',
443    'MaxBandwidth'          => 'Max Båndbredde',
444    'MaxBrScore'            => 'Max.<br/>Score',
445    'MaxFocusRange'         => 'Max Focus Range',
446    'MaxFocusSpeed'         => 'Max Focus Speed',
447    'MaxFocusStep'          => 'Max Focus Step',
448    'MaxGainRange'          => 'Max Gain Range',
449    'MaxGainSpeed'          => 'Max Gain Speed',
450    'MaxGainStep'           => 'Max Gain Step',
451    'MaxIrisRange'          => 'Max Iris Range',
452    'MaxIrisSpeed'          => 'Max Iris Speed',
453    'MaxIrisStep'           => 'Max Iris Step',
454    'MaxPanRange'           => 'Max Pan Range',
455    'MaxPanSpeed'           => 'Max Pan Speed',
456    'MaxPanStep'            => 'Max Pan Step',
457    'MaxTiltRange'          => 'Max Tilt Range',
458    'MaxTiltSpeed'          => 'Max Tilt Speed',
459    'MaxTiltStep'           => 'Max Tilt Step',
460    'MaxWhiteRange'         => 'Max White Bal. Range',
461    'MaxWhiteSpeed'         => 'Max White Bal. Speed',
462    'MaxWhiteStep'          => 'Max White Bal. Step',
463    'MaxZoomRange'          => 'Max Zoom Range',
464    'MaxZoomSpeed'          => 'Max Zoom Speed',
465    'MaxZoomStep'           => 'Max Zoom Step',
466    'MaximumFPS'            => 'Maximum FPS',
467    'Medium'                => 'Medium',
468    'MediumBW'              => 'Medium&nbsp;B/W',
469    'Message'               => 'Meddelelse',
470    'MinAlarmAreaLtMax'     => 'Minimum alarm område skal være mindre end maksimum',
471    'MinAlarmAreaUnset'     => 'Du skal angive det minimale antal alarm pixels',
472    'MinBlobAreaLtMax'      => 'Minimum blob område skal være mindre end maksimum',
473    'MinBlobAreaUnset'      => 'Du skal angive det minimale antal blob pixels',
474    'MinBlobLtMinFilter'    => 'Minimum blob område skal være mindre end eller lig med minimum filter område',
475    'MinBlobsLtMax'         => 'Minimum blobs skal være mindre end maksimum',
476    'MinBlobsUnset'         => 'Du skal angive det minimale antal blobs',
477    'MinFilterAreaLtMax'    => 'Minimum filter område skal være mindre end maksimum',
478    'MinFilterAreaUnset'    => 'Du skal angive det minimale antal filter pixels',
479    'MinFilterLtMinAlarm'   => 'Minimum filter område skal være mindre end eller lig med minimum alarm område',
480    'MinFocusRange'         => 'Min Focus Range',
481    'MinFocusSpeed'         => 'Min Focus Speed',
482    'MinFocusStep'          => 'Min Focus Step',
483    'MinGainRange'          => 'Min Gain Range',
484    'MinGainSpeed'          => 'Min Gain Speed',
485    'MinGainStep'           => 'Min Gain Step',
486    'MinIrisRange'          => 'Min Iris Range',
487    'MinIrisSpeed'          => 'Min Iris Speed',
488    'MinIrisStep'           => 'Min Iris Step',
489    'MinPanRange'           => 'Min Pan Range',
490    'MinPanSpeed'           => 'Min Pan Speed',
491    'MinPanStep'            => 'Min Pan Step',
492    'MinPixelThresLtMax'    => 'Minimum pixel grænseværdi skal være mindre end maksimum',
493    'MinPixelThresUnset'    => 'Du skal angive en minimum pixel grænseværdi',
494    'MinTiltRange'          => 'Min Tilt Range',
495    'MinTiltSpeed'          => 'Min Tilt Speed',
496    'MinTiltStep'           => 'Min Tilt Step',
497    'MinWhiteRange'         => 'Min White Bal. Range',
498    'MinWhiteSpeed'         => 'Min White Bal. Speed',
499    'MinWhiteStep'          => 'Min White Bal. Step',
500    'MinZoomRange'          => 'Min Zoom Range',
501    'MinZoomSpeed'          => 'Min Zoom Speed',
502    'MinZoomStep'           => 'Min Zoom Step',
503    'Misc'                  => 'Diverse',
504    'Mode'                  => 'Mode',
505    'Monitor'               => 'Monitor',
506    'MonitorIds'            => 'Monitor&nbsp;Ids',
507    'MonitorPreset'         => 'Monitor Forudindstillinger',
508    'MonitorPresetIntro'    => 'Vælg en passende forudindstilling fra listen herunder.<br/><br/>Vær opmærksom på, at dette kan overskrive værdier, du allerede har angivet for den aktuelle monitor.<br/><br/>',
509    'MonitorProbe'          => 'Monitor Probe',
510    'MonitorProbeIntro'     => 'Listen herunder viser fundne analoge og nætværks kameraer samt hvorvidt de allerede er i brug eller tilgængelige for udvælgelse.<br/><br/>Vælg det ønskede fra listen herunder.<br/><br/>Vær opmærksom på, at muligvis ikke alle kameraer er fundet og at valg af et kamera kan overskrive værdier, du allerede har angivet for den aktuelle monitor.<br/><br/>',
511    'Monitors'              => 'Monitorer',
512    'Montage'               => 'Montage',
513    'MontageReview'         => 'Montage Review',
514    'Month'                 => 'Måned',
515    'More'                  => 'Mere',
516    'MotionFrameSkip'       => 'Spring over antal bevægelsesrammer',
517    'Move'                  => 'Bevæg',
518    'Mtg2widgrd'            => '2-bred gitter',              // Added 2013.08.15.
519    'Mtg3widgrd'            => '3-bred gitter',              // Added 2013.08.15.
520    'Mtg3widgrx'            => '3-bred gitter, skaleret, forstørret ved alarm',              // Added 2013.08.15.
521    'Mtg4widgrd'            => '4-bred gitter',              // Added 2013.08.15.
522    'MtgDefault'            => 'Standard',                 // Added 2013.08.15.
523    'MustBeGe'              => 'Skal være større end eller lig med',
524    'MustBeLe'              => 'Skal være mindre end eller lig med',
525    'MustConfirmPassword'   => 'Du skal bekræfte adgangskoden',
526    'MustSupplyPassword'    => 'Du skal levere en adgangskode',
527    'MustSupplyUsername'    => 'Du skal levere et brugernavn',
528    'Name'                  => 'Navn',
529    'Near'                  => 'Nær',
530    'Network'               => 'Netværk',
531    'New'                   => 'Ny',
532    'NewGroup'              => 'Ny Gruppe',
533    'NewLabel'              => 'Ny Mærkat',
534    'NewPassword'           => 'Ny Adgangskode',
535    'NewState'              => 'Ny Tilstand',
536    'NewUser'               => 'Ny bruger',
537    'Next'                  => 'Næste',
538    'No'                    => 'Nej',
539    'NoDetectedCameras'     => 'Ingen Detected Cameras',
540    'NoDetectedProfiles'    => 'Ingen Fundne Profiler',
541    'NoFramesRecorded'      => 'Der er ingen billeder optaget for denne hændelse',
542    'NoGroup'               => 'Ingen gruppe',
543    'NoSavedFilters'        => 'IngenGemteFiltre',
544    'NoStatisticsRecorded'  => 'Der er ingen statistik noteret for denne hændelse/ramme',
545    'None'                  => 'Ingen',
546    'NoneAvailable'         => 'Ingen tilgængelig',
547    'Normal'                => 'Normalt',
548    'Notes'                 => 'Noter',
549    'NumPresets'            => 'Num Forudinst.',
550    'Off'                   => 'Fra',
551    'On'                    => 'Til',
552    'OnvifCredentialsIntro' => 'Venligst lever brugernavn og adgangskodefor de valgte kamera.<br/>Hvis der ikke er oprettet nogen bruger for kameraet, så vil brugeren givet her blive oprettet med den angivne adgangskode.<br/><br/>',
553    'OnvifProbe'            => 'ONVIF',
554    'OnvifProbeIntro'       => 'Listen nedenfor viser fundne ONVIF kameraer samt hvorvidt de allerede er i brug eller tilgængelige for udvælgelse.<br/><br/>Vælg det ønskede fra listen herunder.<br/><br/>Vær opmærksom på, at muligvis ikke alle kameraer er fundet og at valg af et kamera kan overskrive værdier, du allerede har angivet for den aktuelle monitor.<br/><br/>',
555    'OpEq'                  => 'lig med',
556    'OpGt'                  => 'større end',
557    'OpGtEq'                => 'større end eller lig med',
558    'OpIn'                  => 'indeholdt i',
559    'OpIs'                 => 'is',                     // Added - 2018-08-30
560    'OpIsNot'              => 'is not',                 // Added - 2018-08-30
561    'OpLt'                  => 'mindre end',
562    'OpLtEq'                => 'mindre end eller lig med',
563    'OpMatches'             => 'matcher',
564    'OpNe'                  => 'ikke lig med',
565    'OpNotIn'               => 'ikke indeholdt i',
566    'OpNotMatches'          => 'matcher ikke',
567    'Open'                  => 'Åben',
568    'OptionHelp'            => 'Indstillinger hjælp',
569    'OptionRestartWarning'  => 'Disse ændringer har muligvis ikke fuld effekt\nmens systemet er kørende. Når du har\nafsluttet dine ændringer, skal du huske at\ngenstarte ZoneMinder.',
570    'OptionalEncoderParam'  => 'Optionelle Encoder Parametre',
571    'Options'               => 'Indstillinger',
572    'OrEnterNewName'        => 'eller indtast nyt navn',
573    'Order'                 => 'Rækkefølge',
574    'Orientation'           => 'Orientering',
575    'Out'                   => 'Ud',
576    'OverwriteExisting'     => 'Overskriv Eksisterende',
577    'Paged'                 => 'Sidevis',
578    'Pan'                   => 'Pan',
579    'PanLeft'               => 'Pan Left',
580    'PanRight'              => 'Pan Right',
581    'PanTilt'               => 'Pan/Tilt',
582    'Parameter'             => 'Parameter',
583    'Password'              => 'Adgangskode',
584    'PasswordsDifferent'    => 'Den nye og den bekræftende adgangskode er forskellige',
585    'Paths'                 => 'Stier',
586    'Pause'                 => 'Pause',
587    'Phone'                 => 'Telefon',
588    'PhoneBW'               => 'Telefon&nbsp;B/W',
589    'Pid'                   => 'PID',
590    'PixelDiff'             => 'Pixel Forskel',
591    'Pixels'                => 'pixels',
592    'Play'                  => 'Afspil',
593    'PlayAll'               => 'Afspil Alle',
594    'PleaseWait'            => 'Vent venligst',
595    'Plugins'               => 'Plugins',
596    'Point'                 => 'Point',
597    'PostEventImageBuffer'  => 'Antal Billeder Efter Hændelse',
598    'PreEventImageBuffer'   => 'Antal Billeder Før Hændelse',
599    'PreserveAspect'        => 'Oprethold højde-bredde-forhold',
600    'Preset'                => 'Forudindstilling',
601    'Presets'               => 'Forudindstillinger',
602    'Prev'                  => 'Forrige',
603    'Probe'                 => 'Probe',
604    'ProfileProbe'          => 'Stream Probe',
605    '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/>',
606    'Progress'              => 'Position',
607    'Protocol'              => 'Protokol',
608    'RTSPDescribe'          => 'Brug RTSP Response Media URL',
609    'RTSPTransport'         => 'RTSP Transport Protocol',
610    'Rate'                  => 'Rate',
611    'Real'                  => 'Naturtro',
612    'RecaptchaWarning'      => 'Your reCaptcha secret key is invalid. Please correct it, or reCaptcha will not work', // added Sep 24 2015 - PP
613    'Record'                => 'Optag',
614    'RecordAudio'           => 'Skal lydsporet gemmes sammen med en hændelse.',
615    'RefImageBlendPct'      => 'Reference Billede Blandings %',
616    'Refresh'               => 'Genindlæs',
617    'Remote'                => 'Remote',
618    'RemoteHostName'        => 'Remote Host Name',
619    'RemoteHostPath'        => 'Remote Host Path',
620    'RemoteHostPort'        => 'Remote Host Port',
621    'RemoteHostSubPath'     => 'Remote Host SubPath',
622    'RemoteImageColours'    => 'Remote Image Colours',
623    'RemoteMethod'          => 'Remote Method',
624    'RemoteProtocol'        => 'Remote Protocol',
625    'Rename'                => 'Omdøb',
626    'Replay'                => 'Genafspil',
627    'ReplayAll'             => 'Alle Hændelser',
628    'ReplayGapless'         => 'Hændelser uafbrudt',
629    'ReplaySingle'          => 'Enkelt Hændelse',
630    'ReportEventAudit'     => 'Audit Events Report',    // Added - 2018-08-30
631    'Reset'                 => 'Nulstil',
632    'ResetEventCounts'      => 'Nulstil Hændelses Tæller',
633    'Restart'               => 'Genstart',
634    'Restarting'            => 'Genstarter',
635    'RestrictedCameraIds'   => 'Restricted Camera Ids',
636    'RestrictedMonitors'    => 'Restricted Monitors',
637    'ReturnDelay'           => 'Return Delay',
638    'ReturnLocation'        => 'Return Location',
639    'Rewind'                => 'Hurtigt Tilbage',
640    'RotateLeft'            => 'Roter til venstrte',
641    'RotateRight'           => 'Roter til højre',
642    'RunLocalUpdate'        => 'Kør venligst zmupdate.pl for at opdatere',
643    'RunMode'               => 'Driftsmåde',
644    'RunState'              => 'Drift Tilstand',
645    'Running'               => 'Kørende',
646    'Save'                  => 'Gem',
647    'SaveAs'                => 'Gem som',
648    'SaveFilter'            => 'Gem Filter',
649    'SaveJPEGs'            => 'Save JPEGs',             // Added - 2018-08-30
650    'Scale'                 => 'Skaler',
651    'Score'                 => 'Score',
652    'Secs'                  => 'Sek.',
653    'Sectionlength'         => 'Sektions længde',
654    'Select'                => 'Vælg',
655    'SelectFormat'          => 'Vælg Format',
656    'SelectLog'             => 'Vælg Log',
657    'SelectMonitors'        => 'Vælg Monitorer',
658    'SelfIntersecting'      => 'Polygonens kanter må ikke krydses',
659    'Set'                   => 'Sæt',
660    'SetNewBandwidth'       => 'Vælg ny båndbredde',
661    'SetPreset'             => 'Set Preset',
662    'Settings'              => 'Indstillinger',
663    'ShowFilterWindow'      => 'Vis Filter Vindue',
664    'ShowTimeline'          => 'Vis Tidslinie',
665    'SignalCheckColour'     => 'Signal Check Colour',
666    'SignalCheckPoints'    => 'Signal Check Points',    // Added - 2018-08-30
667    'Size'                  => 'Størrelse',
668    'SkinDescription'       => 'SKift standard skin for denne computer',
669    'Sleep'                 => 'Sover',
670    'SortAsc'               => 'Voksende',
671    'SortBy'                => 'Sortér efter',
672    'SortDesc'              => 'Faldende',
673    'Source'                => 'Kilde',
674    'SourceColours'         => 'Kilde Farver',
675    'SourcePath'            => 'Kilde Sti',
676    'SourceType'            => 'Kilde Type',
677    'Speed'                 => 'Speed',
678    'SpeedHigh'             => 'High Speed',
679    'SpeedLow'              => 'Low Speed',
680    'SpeedMedium'           => 'Medium Speed',
681    'SpeedTurbo'            => 'Turbo Speed',
682    'Start'                 => 'Start',
683    'State'                 => 'Tilstand',
684    'Stats'                 => 'Stats',
685    'Status'                => 'Status',
686    'StatusConnected'      => 'Capturing',              // Added - 2018-08-30
687    'StatusNotRunning'     => 'Not Running',            // Added - 2018-08-30
688    'StatusRunning'        => 'Not Capturing',          // Added - 2018-08-30
689    'StatusUnknown'        => 'Unknown',                // Added - 2018-08-30
690    'Step'                  => 'Skridt',
691    'StepBack'              => 'Skridt Tilbage',
692    'StepForward'           => 'Skridt Frem',
693    'StepLarge'             => 'Langt Skridt',
694    'StepMedium'            => 'Medium Skridt',
695    'StepNone'              => 'Ingen Skridt',
696    'StepSmall'             => 'Lille Skridt',
697    'Stills'                => 'Stilbilleder',
698    'Stop'                  => 'Stop',
699    'Stopped'               => 'Stoppet',
700    'StorageArea'          => 'Storage Area',           // Added - 2018-08-30
701    'StorageScheme'        => 'Scheme',                 // Added - 2018-08-30
702    'Stream'                => 'Stream',
703    'StreamReplayBuffer'    => 'Stream Replay Image Buffer',
704    'Submit'                => 'Påtryk',
705    'System'                => 'System',
706    'SystemLog'             => 'System Log',
707    'TargetColorspace'      => 'Target colorspace',
708    'Tele'                  => 'Tele',
709    'Thumbnail'             => 'Thumbnail',
710    'Tilt'                  => 'Tilt',
711    'Time'                  => 'Tidspunkt',
712    'TimeDelta'             => 'Tidsforskel',
713    'TimeStamp'             => 'Tids stempel',
714    'Timeline'              => 'Tidslinie',
715    'TimelineTip1'          => 'Før musen over grafen for at vise snapshot billede og detaljer om hændelsen.',              // Added 2013.08.15.
716    'TimelineTip2'          => 'Klip på de farvede områder af grafen, eller billedet, for at se hændelsen.',              // Added 2013.08.15.
717    'TimelineTip3'          => 'Klik på baggrunden for at zoome ind på en mindre tidsperiode omkring dit klik.',              // Added 2013.08.15.
718    'TimelineTip4'          => 'Brug kontrollerne nedenfor for at zoome ud eller navigere frem eller tilbage i tiden.',              // Added 2013.08.15.
719    'Timestamp'             => 'Tidsstempel',
720    'TimestampLabelFormat'  => 'Tidsstempel Mærkat Format',
721    'TimestampLabelSize'    => 'Font Størrelse',
722    'TimestampLabelX'       => 'Tidsstempel Mærkat X',
723    'TimestampLabelY'       => 'Tidsstempel Mærkat Y',
724    'Today'                 => 'Idag',
725    'Tools'                 => 'Værktøjer',
726    'Total'                 => 'Total',
727    'TotalBrScore'          => 'Total<br/>Score',
728    'TrackDelay'            => 'Track Delay',
729    'TrackMotion'           => 'Track Motion',
730    'Triggers'              => 'Triggere',
731    'TurboPanSpeed'         => 'Turbo Pan Speed',
732    'TurboTiltSpeed'        => 'Turbo Tilt Speed',
733    'Type'                  => 'Type',
734    'Unarchive'             => 'Ikke Arkiveret',
735    'Undefined'             => 'Udefineret',
736    'Units'                 => 'Enheder',
737    'Unknown'               => 'Ukendt',
738    'Update'                => 'Opdater',
739    'UpdateAvailable'       => 'En opdatering til ZoneMinder er tilgængelig.',
740    'UpdateNotNecessary'    => 'Ingen opdatering er nødvendig.',
741    'Updated'               => 'Opdateret',
742    'Upload'                => 'Upload',
743    'UseFilter'             => 'Anvend Filter',
744    'UseFilterExprsPost'    => '&nbsp;filter&nbsp;udtryk', // This is used at the end of the phrase 'use N filter expressions'
745    'UseFilterExprsPre'     => 'Anvend&nbsp;', // This is used at the beginning of the phrase 'use N filter expressions'
746    'UsedPlugins'           => 'Anvendte Plugins',
747    'User'                  => 'Bruger',
748    'Username'              => 'Brugernavn',
749    'Users'                 => 'Brugere',
750	'V4L'					=> 'V4L',
751	'V4LCapturesPerFrame'	=> 'Captures Per Frame',
752	'V4LMultiBuffer'		=> 'Multi Buffering',
753    'Value'                 => 'Værdi',
754    'Version'               => 'Version',
755    'VersionIgnore'         => 'Ignorer denne værdi',
756    'VersionRemindDay'      => 'Påmind igen om 1 dag',
757    'VersionRemindHour'     => 'Påmind igen om 1 time',
758    'VersionRemindNever'    => 'Påmind ikke om nye versioner',
759    'VersionRemindWeek'     => 'Påmind igen om 1 uge',
760    'Video'                 => 'Video',
761    'VideoFormat'           => 'Video Format',
762    'VideoGenFailed'        => 'Video Generering Fejlede!',
763    'VideoGenFiles'         => 'Existerende Video Filer',
764    'VideoGenNoFiles'       => 'Ingen Video Filer Fundet',
765    'VideoGenParms'         => 'Video Genererings Parametre',
766    'VideoGenSucceeded'     => 'Video Generering Succeeded!',
767    'VideoSize'             => 'Video Størrelse',
768    'VideoWriter'           => 'Video Skriver',
769    'View'                  => 'Vis',
770    'ViewAll'               => 'Vis Alle',
771    'ViewEvent'             => 'Vis Hændelse',
772    'ViewPaged'             => 'Vis Sidevis',
773    'Wake'                  => 'Vågen',
774    'WarmupFrames'          => 'Opvarmningsbilleder',
775    'Watch'                 => 'Ur',
776    'Web'                   => 'Web',
777    'WebColour'             => 'Web Farve',
778    'WebSiteUrl'           => 'Website URL',            // Added - 2018-08-30
779    'Week'                  => 'Uge',
780    'White'                 => 'Hvid',
781    'WhiteBalance'          => 'Hvidbalance',
782    'Wide'                  => 'Bred',
783    'X'                     => 'X',
784    'X10'                   => 'X10',
785    'X10ActivationString'   => 'X10 Activerings Streng',
786    'X10InputAlarmString'   => 'X10 Input Alarm Streng',
787    'X10OutputAlarmString'  => 'X10 Output Alarm Streng',
788    'Y'                     => 'Y',
789    'Yes'                   => 'Ja',
790    'YouNoPerms'            => 'Du har ikke tilladelse til at tilgå denne ressurse.',
791    'Zone'                  => 'Zone',
792    'ZoneAlarmColour'       => 'Alarm Farve (Rød/Grøn/Blå)',
793    'ZoneArea'              => 'Zone Område',
794    'ZoneExtendAlarmFrames' => 'Udvid Antal Alarm Rammer',
795    'ZoneFilterSize'        => 'Filter Bredde/Højde (pixels)',
796    'ZoneMinMaxAlarmArea'   => 'Min/Max Alarmeret Område',
797    'ZoneMinMaxBlobArea'    => 'Min/Max Blob Område',
798    'ZoneMinMaxBlobs'       => 'Min/Max Blobs',
799    'ZoneMinMaxFiltArea'    => 'Min/Max Filtreret Område',
800    'ZoneMinMaxPixelThres'  => 'Min/Max Pixel Grænseværdi (0-255)',
801    'ZoneMinderLog'         => 'ZoneMinder Log',
802    'ZoneOverloadFrames'    => 'Antal Rammer At Ignorere Efter Overload',
803    'Zones'                 => 'Zoner',
804    'Zoom'                  => 'Zoom',
805    'ZoomIn'                => 'Zoom Ind',
806    'ZoomOut'               => 'Zoom Ud',
807);
808
809// Complex replacements with formatting and/or placements, must be passed through sprintf
810$CLANG = array(
811    'CurrentLogin'          => 'Nuværende login er \'%1$s\'',
812    'EventCount'            => '%1$s %2$s', // For example '37 Events' (from Vlang below)
813    'LastEvents'            => 'Sidste %1$s %2$s', // For example 'Last 37 Events' (from Vlang below)
814    'LatestRelease'         => 'Sidste release er v%1$s, du har v%2$s.',
815    'MonitorCount'          => '%1$s %2$s', // For example '4 Monitors' (from Vlang below)
816    'MonitorFunction'       => 'Monitor %1$s Function',
817    'RunningRecentVer'      => 'Du kører den nyeste version af ZoneMinder, v%s.',
818    'VersionMismatch'       => 'Version misforhold, system er version %1$s, database er %2$s.',
819);
820
821// The next section allows you to describe a series of word ending and counts used to
822// generate the correctly conjugated forms of words depending on a count that is associated
823// with that word.
824// This intended to allow phrases such a '0 potatoes', '1 potato', '2 potatoes' etc to
825// conjugate correctly with the associated count.
826// In some languages such as English this is fairly simple and can be expressed by assigning
827// a count with a singular or plural form of a word and then finding the nearest (lower) value.
828// So '0' of something generally ends in 's', 1 of something is singular and has no extra
829// ending and 2 or more is a plural and ends in 's' also. So to find the ending for '187' of
830// something you would find the nearest lower count (2) and use that ending.
831//
832// So examples of this would be
833// $zmVlangPotato = array( 0=>'Potatoes', 1=>'Potato', 2=>'Potatoes' );
834// $zmVlangSheep = array( 0=>'Sheep' );
835//
836// where you can have as few or as many entries in the array as necessary
837// If your language is similar in form to this then use the same format and choose the
838// appropriate zmVlang function below.
839// If however you have a language with a different format of plural endings then another
840// approach is required . For instance in Russian the word endings change continuously
841// depending on the last digit (or digits) of the numerator. In this case then zmVlang
842// arrays could be written so that the array index just represents an arbitrary 'type'
843// and the zmVlang function does the calculation about which version is appropriate.
844//
845// So an example in Russian might be (using English words, and made up endings as I
846// don't know any Russian!!)
847// 'Potato' => array( 1=>'Potati', 2=>'Potaton', 3=>'Potaten' ),
848//
849// and the zmVlang function decides that the first form is used for counts ending in
850// 0, 5-9 or 11-19 and the second form when ending in 1 etc.
851//
852
853// Variable arrays expressing plurality, see the zmVlang description above
854$VLANG = array(
855    'Event'                 => array( 0=>'Hændelser', 1=>'Hændelse', 2=>'Hændelser' ),
856    'Monitor'               => array( 0=>'Monitorer', 1=>'Monitor', 2=>'Monitorer' ),
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( $CLANG['MonitorCount'], count($monitors), zmVlang( $VLANG['VlangMonitor'], 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_RTSPTrans' => array(
942		'Help' => "This sets the RTSP Transport Protocol for FFmpeg.~~ ".
943                          "TCP - Use TCP (interleaving within the RTSP control channel) as transport protocol.~~".
944                          "UDP - Use UDP as transport protocol. Higher resolution cameras have experienced some 'smearing' while using UDP, if so try TCP~~".
945                          "UDP Multicast - Use UDP Multicast as transport protocol~~".
946                          "HTTP - Use HTTP tunneling as transport protocol, which is useful for passing proxies.~~"
947	),
948	'OPTIONS_LIBVLC' => array(
949		'Help' => "Parameters in this field are passed on to libVLC. Multiple parameters can be separated by ,~~ ".
950		          "Examples (do not enter quotes)~~~~".
951		          "\"--rtp-client-port=nnn\" Set local port to use for rtp data~~~~".
952		          "\"--verbose=2\" Set verbosity of libVLC"
953	),
954	'OPTIONS_EXIF' => array(
955		'Help' => "Enable this option to embed EXIF data into each jpeg frame."
956	),
957	'OPTIONS_RTSPDESCRIBE' => array(
958		'Help' => "Sometimes, during the initial RTSP handshake, the camera will send an updated media URL. ".
959		          "Enable this option to tell ZoneMinder to use this URL. Disable this option to ignore the ".
960		          "value from the camera and use the value as entered in the monitor configuration~~~~".
961		          "Generally this should be enabled. However, there are cases where the camera can get its".
962		          "own URL incorrect, such as when the camera is streaming through a firewall"),
963	'OPTIONS_MAXFPS' => array(
964		'Help' => "This field has certain limitations when used for non-local devices.~~ ".
965		          "Failure to adhere to these limitations will cause a delay in live video, irregular frame skipping, ".
966		          "and missed events~~".
967		          "For streaming IP cameras, do not use this field to reduce the frame rate. Set the frame rate in the".
968                          " camera, instead. You can, however, use a value that is slightly higher than the frame rate in the camera. ".
969		          "In this case, this helps keep the cpu from being overtaxed in the event of a network problem.~~".
970		          "Some, mostly older, IP cameras support snapshot mode. In this case ZoneMinder is actively polling the camera ".
971		          "for new images. In this case, it is safe to use the field."
972	),
973
974//    'LANG_DEFAULT' => array(
975//        'Prompt' => "This is a new prompt for this option",
976//        'Help' => "This is some new help for this option which will be displayed in the window when the ? is clicked"
977//    ),
978);
979
980?>
981