845 lines
46 KiB
PHP
845 lines
46 KiB
PHP
<?php
|
||
//
|
||
// ZoneMinder web German language file, $Date$, $Revision$
|
||
// Copyright (C) 2001-2008 Philip Coombes
|
||
//
|
||
// This program is free software; you can redistribute it and/or
|
||
// modify it under the terms of the GNU General Public License
|
||
// as published by the Free Software Foundation; either version 2
|
||
// of the License, or (at your option) any later version.
|
||
//
|
||
// This program is distributed in the hope that it will be useful,
|
||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
// GNU General Public License for more details.
|
||
//
|
||
// You should have received a copy of the GNU General Public License
|
||
// along with this program; if not, write to the Free Software
|
||
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||
//
|
||
|
||
// ZoneMinder german Translation by Robert Schumann (rs at core82 dot de)
|
||
|
||
// Notes for Translators
|
||
// 0. Get some credit, put your name in the line above (optional)
|
||
// 1. When composing the language tokens in your language you should try and keep to roughly the
|
||
// same length text if possible. Abbreviate where necessary as spacing is quite close in a number of places.
|
||
// 2. There are four types of string replacement
|
||
// a) Simple replacements are words or short phrases that are static and used directly. This type of
|
||
// replacement can be used 'as is'.
|
||
// b) Complex replacements involve some dynamic element being included and so may require substitution
|
||
// or changing into a different order. The token listed in this file will be passed through sprintf as
|
||
// a formatting string. If the dynamic element is a number you will usually need to use a variable
|
||
// replacement also as described below.
|
||
// c) Variable replacements are used in conjunction with complex replacements and involve the generation
|
||
// of a singular or plural noun depending on the number passed into the zmVlang function. See the
|
||
// the zmVlang section below for a further description of this.
|
||
// d) Optional strings which can be used to replace the prompts and/or help text for the Options section
|
||
// of the web interface. These are not listed below as they are quite large and held in the database
|
||
// so that they can also be used by the zmconfig.pl script. However you can build up your own list
|
||
// quite easily from the Config table in the database if necessary.
|
||
// 3. The tokens listed below are not used to build up phrases or sentences from single words. Therefore
|
||
// you can safely assume that a single word token will only be used in that context.
|
||
// 4. In new language files, or if you are changing only a few words or phrases it makes sense from a
|
||
// maintenance point of view to include the original language file and override the old definitions rather
|
||
// than copy all the language tokens across. To do this change the line below to whatever your base language
|
||
// is and uncomment it.
|
||
// require_once( 'zm_lang_en_gb.php' );
|
||
|
||
// You may need to change the character set here, if your web server does not already
|
||
// do this by default, uncomment this if required.
|
||
//
|
||
// Example
|
||
// header( "Content-Type: text/html; charset=iso-8859-1" );
|
||
|
||
// You may need to change your locale here if your default one is incorrect for the
|
||
// language described in this file, or if you have multiple languages supported.
|
||
// If you do need to change your locale, be aware that the format of this function
|
||
// is subtlely different in versions of PHP before and after 4.3.0, see
|
||
// http://uk2.php.net/manual/en/function.setlocale.php for details.
|
||
// Also be aware that changing the whole locale may affect some floating point or decimal
|
||
// arithmetic in the database, if this is the case change only the individual locale areas
|
||
// that don't affect this rather than all at once. See the examples below.
|
||
// Finally, depending on your setup, PHP may not enjoy have multiple locales in a shared
|
||
// threaded environment, if you get funny errors it may be this.
|
||
//
|
||
// Examples
|
||
// setlocale( 'LC_ALL', 'en_GB' ); All locale settings pre-4.3.0
|
||
// setlocale( LC_ALL, 'en_GB' ); All locale settings 4.3.0 and after
|
||
// setlocale( LC_CTYPE, 'en_GB' ); Character class settings 4.3.0 and after
|
||
// setlocale( LC_TIME, 'en_GB' ); Date and time formatting 4.3.0 and after
|
||
|
||
// Simple String Replacements
|
||
$SLANG = array(
|
||
'24BitColour' => '24-Bit-Farbe',
|
||
'8BitGrey' => '8-Bit-Grau',
|
||
'Action' => 'Aktion',
|
||
'Actual' => 'Original',
|
||
'AddNewControl' => 'Neues Kontrollelement hinzufügen',
|
||
'AddNewMonitor' => 'Neuer Monitor',
|
||
'AddNewUser' => 'Neuer Benutzer',
|
||
'AddNewZone' => 'Neue Zone',
|
||
'Alarm' => 'Alarm',
|
||
'AlarmBrFrames' => 'Alarm-<br />Bilder',
|
||
'AlarmFrame' => 'Alarm-Bilder',
|
||
'AlarmFrameCount' => 'Alarm-Bildanzahl',
|
||
'AlarmLimits' => 'Alarm-Limits',
|
||
'AlarmMaximumFPS' => 'Alarm-Maximum-FPS',
|
||
'AlarmPx' => 'Alarm-Pixel',
|
||
'AlarmRGBUnset' => 'Sie müssen eine RGB-Alarmfarbe setzen',
|
||
'Alert' => 'Alarm',
|
||
'All' => 'Alle',
|
||
'Apply' => 'OK',
|
||
'ApplyingStateChange' => 'Aktiviere neuen Status',
|
||
'ArchArchived' => 'Nur Archivierte',
|
||
'ArchUnarchived' => 'Nur Nichtarchivierte',
|
||
'Archive' => 'Archivieren',
|
||
'Archived' => 'Archivierte',
|
||
'Area' => 'Bereich',
|
||
'AreaUnits' => 'Bereich (px/%)',
|
||
'AttrAlarmFrames' => 'Alarmbilder',
|
||
'AttrArchiveStatus' => 'Archivstatus',
|
||
'AttrAvgScore' => 'Mittlere Punktzahl',
|
||
'AttrCause' => 'Grund',
|
||
'AttrDate' => 'Datum',
|
||
'AttrDateTime' => 'Datum/Zeit',
|
||
'AttrDiskBlocks' => 'Disk-Bloecke',
|
||
'AttrDiskPercent' => 'Disk-Prozent',
|
||
'AttrDuration' => 'Dauer',
|
||
'AttrFrames' => 'Bilder',
|
||
'AttrId' => 'ID',
|
||
'AttrMaxScore' => 'Maximale Punktzahl',
|
||
'AttrMonitorId' => 'Monitor-ID',
|
||
'AttrMonitorName' => 'Monitorname',
|
||
'AttrName' => 'Name',
|
||
'AttrNotes' => 'Bemerkungen',
|
||
'AttrSystemLoad' => 'Systemlast',
|
||
'AttrTime' => 'Zeit',
|
||
'AttrTotalScore' => 'Totale Punktzahl',
|
||
'AttrWeekday' => 'Wochentag',
|
||
'Auto' => 'Auto',
|
||
'AutoStopTimeout' => 'Auto-Stopp-Zeitüberschreitung',
|
||
'Available' => 'Available', // Added - 2009-03-31
|
||
'AvgBrScore' => 'Mittlere<br/>Punktzahl',
|
||
'Background' => 'Hintergrund',
|
||
'BackgroundFilter' => 'Filter im Hintergrund laufen lassen',
|
||
'BadAlarmFrameCount' => 'Die Bildanzahl muss ganzzahlig 1 oder größer sein',
|
||
'BadAlarmMaxFPS' => 'Alarm-Maximum-FPS muss eine positive Ganzzahl oder eine Gleitkommazahl sein',
|
||
'BadChannel' => 'Der Kanal muss ganzzahlig 0 oder größer sein',
|
||
'BadDevice' => 'Das Gerät muss eine gültige Systemresource sein',
|
||
'BadFPSReportInterval' => 'Der FPS-Intervall-Puffer-Zähler muss ganzzahlig 0 oder größer sein',
|
||
'BadFormat' => 'Das Format muss ganzzahlig 0 oder größer sein',
|
||
'BadFrameSkip' => 'Der Auslasszähler für Frames muss ganzzahlig 0 oder größer sein',
|
||
'BadHeight' => 'Die Höhe muss auf einen gültigen Wert eingestellt sein',
|
||
'BadHost' => 'Der Host muss auf eine gültige IP-Adresse oder einen Hostnamen (ohne http://) eingestellt sein',
|
||
'BadImageBufferCount' => 'Die Größe des Bildpuffers muss ganzzahlig 10 oder größer sein',
|
||
'BadLabelX' => 'Die x-Koordinate der Bezeichnung muss ganzzahlig 0 oder größer sein',
|
||
'BadLabelY' => 'Die y-Koordinate der Bezeichnung muss ganzzahlig 0 oder größer sein',
|
||
'BadMaxFPS' => 'Maximum-FPS muss eine positive Ganzzahl oder eine Gleitkommazahl sein',
|
||
'BadNameChars' => 'Namen dürfen nur aus Buchstaben, Zahlen und Trenn- oder Unterstrichen bestehen',
|
||
'BadPalette' => 'Palette must be set to a valid value', // Added - 2009-03-31
|
||
'BadPath' => 'Der Pfad muss auf einen gültigen Wert eingestellt sein',
|
||
'BadPort' => 'Der Port muss auf eine gültige Zahl eingestellt sein',
|
||
'BadPostEventCount' => 'Der Zähler für die Ereignisfolgebilder muss ganzzahlig 0 oder größer sein',
|
||
'BadPreEventCount' => 'Der Zähler für die Ereignisvorlaufbilder muss mindestens ganzzahlig 0 und kleiner als die Bildpuffergröße sein',
|
||
'BadRefBlendPerc' => 'Der Referenz-Blenden-Prozentwert muss ganzzahlig 0 oder größer sein',
|
||
'BadSectionLength' => 'Die Bereichslänge muss ganzzahlig 0 oder größer sein',
|
||
'BadSignalCheckColour' => 'Die Signalprüffarbe muss auf einen gültigen Farbwert eingestellt sein',
|
||
'BadStreamReplayBuffer'=> 'Der Wiedergabestrompuffer tream replay buffer must be an integer of zero or more',
|
||
'BadWarmupCount' => 'Die Anzahl der Vorw<72>rmbilder muss ganzzahlig 0 oder größer sein',
|
||
'BadWebColour' => 'Die Webfarbe muss auf einen gültigen Farbwert eingestellt sein',
|
||
'BadWidth' => 'Die Breite muss auf einen gültigen Wert eingestellt sein',
|
||
'Bandwidth' => 'Bandbreite',
|
||
'BlobPx' => 'Blob-Pixel',
|
||
'BlobSizes' => 'Blobgröße',
|
||
'Blobs' => 'Blobs',
|
||
'Brightness' => 'Helligkeit',
|
||
'Buffers' => 'Puffer',
|
||
'CanAutoFocus' => 'Kann Autofokus',
|
||
'CanAutoGain' => 'Kann Auto-Verstärkung',
|
||
'CanAutoIris' => 'Kann Auto-Iris',
|
||
'CanAutoWhite' => 'Kann Auto-Weiß-Abgleich',
|
||
'CanAutoZoom' => 'Kann Auto-Zoom',
|
||
'CanFocus' => 'Kann Fokus',
|
||
'CanFocusAbs' => 'Kann absoluten Fokus',
|
||
'CanFocusCon' => 'Kann kontinuierlichen Fokus',
|
||
'CanFocusRel' => 'Kann relativen Fokus',
|
||
'CanGain' => 'Kann Verstärkung',
|
||
'CanGainAbs' => 'Kann absolute Verstärkung',
|
||
'CanGainCon' => 'Kann kontinuierliche Verstärkung',
|
||
'CanGainRel' => 'Kann relative Verstäkung',
|
||
'CanIris' => 'Kann Iris',
|
||
'CanIrisAbs' => 'Kann absolute Iris',
|
||
'CanIrisCon' => 'Kann kontinuierliche Iris',
|
||
'CanIrisRel' => 'Kann relative Iris',
|
||
'CanMove' => 'Kann Bewegung',
|
||
'CanMoveAbs' => 'Kann absolute Bewegung',
|
||
'CanMoveCon' => 'Kann kontinuierliche Bewegung',
|
||
'CanMoveDiag' => 'Kann diagonale Bewegung',
|
||
'CanMoveMap' => 'Kann Mapped-Bewegung',
|
||
'CanMoveRel' => 'Kann relative Bewegung',
|
||
'CanPan' => 'Kann Pan' ,
|
||
'CanReset' => 'Kann Reset',
|
||
'CanSetPresets' => 'Kann Voreinstellungen setzen',
|
||
'CanSleep' => 'Kann Sleep',
|
||
'CanTilt' => 'Kann Neigung',
|
||
'CanWake' => 'Kann Wake',
|
||
'CanWhite' => 'Kann Weiß-Abgleich',
|
||
'CanWhiteAbs' => 'Kann absoluten Weiß-Abgleich',
|
||
'CanWhiteBal' => 'Kann Weiß-Abgleich',
|
||
'CanWhiteCon' => 'Kann kontinuierlichen Weiß-Abgleich',
|
||
'CanWhiteRel' => 'Kann relativen Weiß-Abgleich',
|
||
'CanZoom' => 'Kann Zoom',
|
||
'CanZoomAbs' => 'Kann absoluten Zoom',
|
||
'CanZoomCon' => 'Kann kontinuierlichen Zoom',
|
||
'CanZoomRel' => 'Kann relativen Zoom',
|
||
'Cancel' => 'Abbruch',
|
||
'CancelForcedAlarm' => 'Abbruch des unbedingten Alarms',
|
||
'CaptureHeight' => 'Erfasse Höhe',
|
||
'CaptureMethod' => 'Capture Method', // Added - 2009-02-08
|
||
'CapturePalette' => 'Erfasse Farbpalette',
|
||
'CaptureWidth' => 'Erfasse Breite',
|
||
'Cause' => 'Grund',
|
||
'CheckMethod' => 'Alarm-Prüfmethode',
|
||
'ChooseDetectedCamera' => 'Choose Detected Camera', // Added - 2009-03-31
|
||
'ChooseFilter' => 'Filterauswahl',
|
||
'ChooseLogFormat' => 'Choose a log format', // Added - 2011-06-17
|
||
'ChooseLogSelection' => 'Choose a log selection', // Added - 2011-06-17
|
||
'ChoosePreset' => 'Voreinstellung auswählen',
|
||
'Clear' => 'Clear', // Added - 2011-06-16
|
||
'Close' => 'Schließen',
|
||
'Colour' => 'Farbe',
|
||
'Command' => 'Kommando',
|
||
'Component' => 'Component', // Added - 2011-06-16
|
||
'Config' => 'Konfig.',
|
||
'ConfiguredFor' => 'Konfiguriert für',
|
||
'ConfirmDeleteEvents' => 'Sind Sie sicher, dass Sie die ausgewählten Ereignisse löschen wollen?',
|
||
'ConfirmPassword' => 'Passwortbestätigung',
|
||
'ConjAnd' => 'und',
|
||
'ConjOr' => 'oder',
|
||
'Console' => 'Konsole',
|
||
'ContactAdmin' => 'Bitte kontaktieren Sie den Administrator für weitere Details',
|
||
'Continue' => 'Weiter',
|
||
'Contrast' => 'Kontrast',
|
||
'Control' => 'Kontrolle',
|
||
'ControlAddress' => 'Kontrolladresse',
|
||
'ControlCap' => 'Kontrollmöglichkeit',
|
||
'ControlCaps' => 'Kontrollmöglichkeiten',
|
||
'ControlDevice' => 'Kontrollgerät',
|
||
'ControlType' => 'Kontrolltyp',
|
||
'Controllable' => 'Kontrollierbar',
|
||
'Cycle' => 'Zyklus',
|
||
'CycleWatch' => 'Zeitzyklus',
|
||
'DateTime' => 'Date/Time', // Added - 2011-06-16
|
||
'Day' => 'Tag',
|
||
'Debug' => 'Debug',
|
||
'DefaultRate' => 'Standardrate',
|
||
'DefaultScale' => 'Standardskalierung',
|
||
'DefaultView' => 'Standardansicht',
|
||
'Delete' => 'Löschen',
|
||
'DeleteAndNext' => 'Löschen & Nächstes',
|
||
'DeleteAndPrev' => 'Löschen & Vorheriges',
|
||
'DeleteSavedFilter' => 'Lösche gespeichertes Filter',
|
||
'Description' => 'Beschreibung',
|
||
'DetectedCameras' => 'Detected Cameras', // Added - 2009-03-31
|
||
'Device' => 'Device', // Added - 2009-02-08
|
||
'DeviceChannel' => 'Gerätekanal',
|
||
'DeviceFormat' => 'Geräteformat',
|
||
'DeviceNumber' => 'Gerätenummer',
|
||
'DevicePath' => 'Gerätepfad',
|
||
'Devices' => 'Geräte',
|
||
'Dimensions' => 'Abmessungen',
|
||
'DisableAlarms' => 'Alarme abschalten',
|
||
'Disk' => 'Disk',
|
||
'Display' => 'Display', // Added - 2011-01-30
|
||
'Displaying' => 'Displaying', // Added - 2011-06-16
|
||
'Donate' => 'Bitte spenden Sie.',
|
||
'DonateAlready' => 'Nein, ich habe schon gespendet',
|
||
'DonateEnticement' => 'Sie benutzen ZoneMinder nun schon eine Weile und es ist hoffentlich eine nützliche Applikation zur Verbesserung Ihrer Heim- oder Arbeitssicherheit. Obwohl ZoneMinder eine freie Open-Source-Software ist und bleiben wird, entstehen Kosten bei der Entwicklung und dem Support.<br><br>Falls Sie ZoneMinder f<>r Weiterentwicklung in der Zukunft unterstützen möchten, denken Sie bitte <20>ber eine Spende für das Projekt unter der Webadresse http://www.zoneminder.com/donate.html oder über nachfolgend stehende Option nach. Spenden sind, wie der Name schon sagt, immer freiwillig. Dem Projekt helfen kleine genauso wie größere Spenden sehr weiter und ein herzlicher Dank ist jedem Spender sicher.<br><br>Vielen Dank dafür, dass sie ZoneMinder benutzen. Vergessen Sie nicht die Foren unter ZoneMinder.com, um Support zu erhalten und Ihre Erfahrung mit ZoneMinder zu verbessern!',
|
||
'DonateRemindDay' => 'Noch nicht, erinnere mich in einem Tag noch mal.',
|
||
'DonateRemindHour' => 'Noch nicht, erinnere mich in einer Stunde noch mal.',
|
||
'DonateRemindMonth' => 'Noch nicht, erinnere mich in einem Monat noch mal.',
|
||
'DonateRemindNever' => 'Nein, ich möchte nicht spenden, niemals erinnern.',
|
||
'DonateRemindWeek' => 'Noch nicht, erinnere mich in einer Woche noch mal.',
|
||
'DonateYes' => 'Ja, ich möchte jetzt spenden.',
|
||
'Download' => 'Download',
|
||
'DuplicateMonitorName' => 'Duplicate Monitor Name', // Added - 2009-03-31
|
||
'Duration' => 'Dauer',
|
||
'Edit' => 'Bearbeiten',
|
||
'Email' => 'E-Mail',
|
||
'EnableAlarms' => 'Alarme aktivieren',
|
||
'Enabled' => 'Aktiviert',
|
||
'EnterNewFilterName' => 'Neuen Filternamen eingeben',
|
||
'Error' => 'Fehler',
|
||
'ErrorBrackets' => 'Fehler. Bitte nur gleiche Anzahl offener und geschlossener Klammern.',
|
||
'ErrorValidValue' => 'Fehler. Bitte alle Werte auf richtige Eingabe prüfen',
|
||
'Etc' => 'etc.',
|
||
'Event' => 'Ereignis',
|
||
'EventFilter' => 'Ereignisfilter',
|
||
'EventId' => 'Ereignis-ID',
|
||
'EventName' => 'Ereignisname',
|
||
'EventPrefix' => 'Ereignis-Präfix',
|
||
'Events' => 'Ereignisse',
|
||
'Exclude' => 'Ausschluss;',
|
||
'Execute' => 'Ausführen',
|
||
'Export' => 'Exportieren',
|
||
'ExportDetails' => 'Exportiere Ereignis-Details',
|
||
'ExportFailed' => 'Exportieren fehlgeschlagen',
|
||
'ExportFormat' => 'Exportiere Dateiformat',
|
||
'ExportFormatTar' => 'TAR (Bandarchiv)',
|
||
'ExportFormatZip' => 'ZIP (Komprimiert)',
|
||
'ExportFrames' => 'Exportiere Bilddetails',
|
||
'ExportImageFiles' => 'Exportiere Bilddateien',
|
||
'ExportLog' => 'Export Log', // Added - 2011-06-17
|
||
'ExportMiscFiles' => 'Exportiere andere Dateien (falls vorhanden)',
|
||
'ExportOptions' => 'Exportierungsoptionen',
|
||
'ExportSucceeded' => 'Export Succeeded', // Added - 2009-02-08
|
||
'ExportVideoFiles' => 'Exportiere Videodateien (falls vorhanden)',
|
||
'Exporting' => 'Exportiere',
|
||
'FPS' => 'fps',
|
||
'FPSReportInterval' => 'fps-Meldeintervall',
|
||
'FTP' => 'FTP',
|
||
'Far' => 'Weit',
|
||
'FastForward' => 'Schnell vorwärts',
|
||
'Feed' => 'Eingabe',
|
||
'Ffmpeg' => 'Ffmpeg', // Added - 2009-02-08
|
||
'File' => 'Datei',
|
||
'FilterArchiveEvents' => 'Archivierung aller Treffer',
|
||
'FilterDeleteEvents' => 'Löschen aller Treffer',
|
||
'FilterEmailEvents' => 'Detaillierte E-Mail zu allen Treffern',
|
||
'FilterExecuteEvents' => 'Ausführen bei allen Treffern',
|
||
'FilterMessageEvents' => 'Detaillierte Nachricht zu allen Treffern',
|
||
'FilterPx' => 'Filter-Pixel',
|
||
'FilterUnset' => 'Sie müssen eine Breite und Höhe für das Filter angeben',
|
||
'FilterUploadEvents' => 'Hochladen aller Treffer',
|
||
'FilterVideoEvents' => 'Video für alle Treffer erstellen',
|
||
'Filters' => 'Filter',
|
||
'First' => 'Erstes',
|
||
'FlippedHori' => 'Horizontal gespiegelt',
|
||
'FlippedVert' => 'Vertikal gespiegelt',
|
||
'Focus' => 'Fokus',
|
||
'ForceAlarm' => 'Unbedingter Alarm',
|
||
'Format' => 'Format',
|
||
'Frame' => 'Bild',
|
||
'FrameId' => 'Bild-ID',
|
||
'FrameRate' => 'Abspielgeschwindigkeit',
|
||
'FrameSkip' => 'Bilder auslassen',
|
||
'Frames' => 'Bilder',
|
||
'Func' => 'Fkt.',
|
||
'Function' => 'Funktion',
|
||
'Gain' => 'Verstärkung',
|
||
'General' => 'Allgemeines',
|
||
'GenerateVideo' => 'Erzeuge Video',
|
||
'GeneratingVideo' => 'Erzeuge Video...',
|
||
'GoToZoneMinder' => 'Gehe zu ZoneMinder.com',
|
||
'Grey' => 'Grau',
|
||
'Group' => 'Gruppe',
|
||
'Groups' => 'Gruppen',
|
||
'HasFocusSpeed' => 'Hat Fokus-Geschwindigkeit',
|
||
'HasGainSpeed' => 'Hat Verstäkungs-Geschwindigkeit',
|
||
'HasHomePreset' => 'Hat Standardvoreinstellungen',
|
||
'HasIrisSpeed' => 'Hat Irisgeschwindigkeit',
|
||
'HasPanSpeed' => 'Hat Pan-Geschwindigkeit',
|
||
'HasPresets' => 'Hat Voreinstellungen',
|
||
'HasTiltSpeed' => 'Hat Neigungsgeschwindigkeit',
|
||
'HasTurboPan' => 'Hat Turbo-Pan',
|
||
'HasTurboTilt' => 'Hat Turbo-Neigung',
|
||
'HasWhiteSpeed' => 'Hat Weiß-Abgleichgeschwindigkeit',
|
||
'HasZoomSpeed' => 'Hat Zoom-Geschwindigkeit',
|
||
'High' => 'hohe',
|
||
'HighBW' => 'Hohe B/W',
|
||
'Home' => 'Home',
|
||
'Hour' => 'Stunde',
|
||
'Hue' => 'Farbton',
|
||
'Id' => 'ID',
|
||
'Idle' => 'Leerlauf',
|
||
'Ignore' => 'Ignoriere',
|
||
'Image' => 'Bild',
|
||
'ImageBufferSize' => 'Bildpuffergröße',
|
||
'Images' => 'Bilder',
|
||
'In' => 'In',
|
||
'Include' => 'Einschluss',
|
||
'Inverted' => 'Invertiert',
|
||
'Iris' => 'Iris',
|
||
'KeyString' => 'Schlüsselwort',
|
||
'Label' => 'Bezeichnung',
|
||
'Language' => 'Sprache',
|
||
'Last' => 'Letztes',
|
||
'Layout' => 'Layout', // Added - 2009-02-08
|
||
'Level' => 'Level', // Added - 2011-06-16
|
||
'LimitResultsPost' => 'Ergebnisse;', // This is used at the end of the phrase 'Limit to first N results only'
|
||
'LimitResultsPre' => 'Begrenze nur auf die ersten', // This is used at the beginning of the phrase 'Limit to first N results only'
|
||
'Line' => 'Line', // Added - 2011-06-16
|
||
'LinkedMonitors' => 'Verbundene Monitore',
|
||
'List' => 'Liste',
|
||
'Load' => 'Last',
|
||
'Local' => 'Lokal',
|
||
'Log' => 'Log', // Added - 2011-06-16
|
||
'LoggedInAs' => 'Angemeldet als',
|
||
'Logging' => 'Logging', // Added - 2011-06-16
|
||
'LoggingIn' => 'Anmelden',
|
||
'Login' => 'Anmeldung',
|
||
'Logout' => 'Abmelden',
|
||
'Logs' => 'Logs', // Added - 2011-06-17
|
||
'Low' => 'niedrige',
|
||
'LowBW' => 'Niedrige B/W',
|
||
'Main' => 'Haupt',
|
||
'Man' => 'Man',
|
||
'Manual' => 'Manual',
|
||
'Mark' => 'Markieren',
|
||
'Max' => 'Max',
|
||
'MaxBandwidth' => 'Maximale Bandbreite',
|
||
'MaxBrScore' => 'Maximale<br />Punktzahl',
|
||
'MaxFocusRange' => 'Maximaler Fokusbereich',
|
||
'MaxFocusSpeed' => 'Maximale Fokusgeschwindigkeit',
|
||
'MaxFocusStep' => 'Maximale Fokusstufe',
|
||
'MaxGainRange' => 'Maximaler Verstärkungsbereich',
|
||
'MaxGainSpeed' => 'Maximale Verstärkungsgeschwindigkeit',
|
||
'MaxGainStep' => 'Maximale Verstärkungsstufe',
|
||
'MaxIrisRange' => 'Maximaler Irisbereich',
|
||
'MaxIrisSpeed' => 'Maximale Irisgeschwindigkeit',
|
||
'MaxIrisStep' => 'Maximale Irisstufe',
|
||
'MaxPanRange' => 'Maximaler Pan-Bereich',
|
||
'MaxPanSpeed' => 'Maximale Pan-Geschw.',
|
||
'MaxPanStep' => 'Maximale Pan-Stufe',
|
||
'MaxTiltRange' => 'Maximaler Neig.-Bereich',
|
||
'MaxTiltSpeed' => 'Maximale Neig.-Geschw.',
|
||
'MaxTiltStep' => 'Maximale Neig.-Stufe',
|
||
'MaxWhiteRange' => 'Maximaler Weiß-Abgl.bereich',
|
||
'MaxWhiteSpeed' => 'Maximale Weiß-Abgl.geschw.',
|
||
'MaxWhiteStep' => 'Maximale Weiß-Abgl.stufe',
|
||
'MaxZoomRange' => 'Maximaler Zoom-Bereich',
|
||
'MaxZoomSpeed' => 'Maximale Zoom-Geschw.',
|
||
'MaxZoomStep' => 'Maximale Zoom-Stufe',
|
||
'MaximumFPS' => 'Maximale FPS',
|
||
'Medium' => 'mittlere',
|
||
'MediumBW' => 'Mittlere B/W',
|
||
'Message' => 'Message', // Added - 2011-06-16
|
||
'MinAlarmAreaLtMax' => 'Der minimale Alarmbereich sollte kleiner sein als der maximale',
|
||
'MinAlarmAreaUnset' => 'Sie müssen einen Minimumwert an Alarmflächenpixeln angeben',
|
||
'MinBlobAreaLtMax' => 'Die minimale Blob-Fläche muss kleiner sein als die maximale',
|
||
'MinBlobAreaUnset' => 'Sie müssen einen Minimumwert an Blobflächenpixeln angeben',
|
||
'MinBlobLtMinFilter' => 'Die minimale Blob-Fläche sollte kleiner oder gleich der minimalen Filterfläche sein',
|
||
'MinBlobsLtMax' => 'Die minimalen Blobs müssen kleiner sein als die maximalen',
|
||
'MinBlobsUnset' => 'Sie müssen einen Minimumwert an Blobs angeben',
|
||
'MinFilterAreaLtMax' => 'Die minimale Filterfläche sollte kleiner sein als die maximale',
|
||
'MinFilterAreaUnset' => 'Sie müssen einen Minimumwert an Filterpixeln angeben',
|
||
'MinFilterLtMinAlarm' => 'Die minimale Filterfläche sollte kleiner oder gleich der minimalen Alarmfläche sein',
|
||
'MinFocusRange' => 'Min. Fokusbereich',
|
||
'MinFocusSpeed' => 'Min. Fokusgeschw.',
|
||
'MinFocusStep' => 'Min. Fokusstufe',
|
||
'MinGainRange' => 'Min. Verstärkungsbereich',
|
||
'MinGainSpeed' => 'Min. Verstärkungsgeschwindigkeit',
|
||
'MinGainStep' => 'Min. Verstärkungsstufe',
|
||
'MinIrisRange' => 'Min. Irisbereich',
|
||
'MinIrisSpeed' => 'Min. Irisgeschwindigkeit',
|
||
'MinIrisStep' => 'Min. Irisstufe',
|
||
'MinPanRange' => 'Min. Pan-Bereich',
|
||
'MinPanSpeed' => 'Min. Pan-Geschwindigkeit',
|
||
'MinPanStep' => 'Min. Pan-Stufe',
|
||
'MinPixelThresLtMax' => 'Der minimale Pixelschwellwert muss kleiner sein als der maximale',
|
||
'MinPixelThresUnset' => 'Sie müssen einen minimalen Pixel-Schwellenwert angeben',
|
||
'MinTiltRange' => 'Min. Neigungsbereich',
|
||
'MinTiltSpeed' => 'Min. Neigungsgeschwindigkeit',
|
||
'MinTiltStep' => 'Min. Neigungsstufe',
|
||
'MinWhiteRange' => 'Min. Weiß-Abgleichbereich',
|
||
'MinWhiteSpeed' => 'Min. Weiß-Abgleichgeschwindigkeit',
|
||
'MinWhiteStep' => 'Min. Weiß-Abgleichstufe',
|
||
'MinZoomRange' => 'Min. Zoom-Bereich',
|
||
'MinZoomSpeed' => 'Min. Zoom-Geschwindigkeit',
|
||
'MinZoomStep' => 'Min. Zoom-Stufe',
|
||
'Misc' => 'Verschiedenes',
|
||
'Monitor' => 'Monitor',
|
||
'MonitorIds' => 'Monitor-ID',
|
||
'MonitorPreset' => 'Monitor-Voreinstellung',
|
||
'MonitorPresetIntro' => 'Wählen Sie eine geeignete Voreinstellung aus der folgenden Liste.<br><br>Bitte beachten Sie, dass dies mögliche Einstellungen von Ihnen am Monitor überschreiben kann.<br><br>',
|
||
'MonitorProbe' => 'Monitor Probe', // Added - 2009-03-31
|
||
'MonitorProbeIntro' => 'The list below shows detected analog and network cameras and whether they are already being used or available for selection.<br/><br/>Select the desired entry from the list below.<br/><br/>Please note that not all cameras may be detected and that choosing a camera here may overwrite any values you already have configured for the current monitor.<br/><br/>', // Added - 2009-03-31
|
||
'Monitors' => 'Monitore',
|
||
'Montage' => 'Montage',
|
||
'Month' => 'Monat',
|
||
'More' => 'More', // Added - 2011-06-16
|
||
'Move' => 'Bewegung',
|
||
'MustBeGe' => 'muss groesser oder gleich sein wie',
|
||
'MustBeLe' => 'muss kleiner oder gleich sein wie',
|
||
'MustConfirmPassword' => 'Sie müssen das Passwort bestätigen.',
|
||
'MustSupplyPassword' => 'Sie müssen ein Passwort vergeben.',
|
||
'MustSupplyUsername' => 'Sie müssen einen Usernamen vergeben.',
|
||
'Name' => 'Name',
|
||
'Near' => 'Nah',
|
||
'Network' => 'Netzwerk',
|
||
'New' => 'Neu',
|
||
'NewGroup' => 'Neue Gruppe',
|
||
'NewLabel' => 'Neuer Bezeichner',
|
||
'NewPassword' => 'Neues Passwort',
|
||
'NewState' => 'Neuer Status',
|
||
'NewUser' => 'Neuer Benutzer',
|
||
'Next' => 'Nächstes',
|
||
'No' => 'Nein',
|
||
'NoDetectedCameras' => 'No Detected Cameras', // Added - 2009-03-31
|
||
'NoFramesRecorded' => 'Es gibt keine Aufnahmen von diesem Ereignis.',
|
||
'NoGroup' => 'Keine Gruppe',
|
||
'NoSavedFilters' => 'Keine gespeicherten Filter',
|
||
'NoStatisticsRecorded' => 'Keine Statistik für dieses Ereignis/diese Bilder',
|
||
'None' => 'ohne',
|
||
'NoneAvailable' => 'Nichts verfügbar',
|
||
'Normal' => 'Normal',
|
||
'Notes' => 'Bemerkungen',
|
||
'NumPresets' => 'Nummerierte Voreinstellungen',
|
||
'Off' => 'Aus',
|
||
'On' => 'An',
|
||
'OpEq' => 'gleich zu',
|
||
'OpGt' => 'groesser als',
|
||
'OpGtEq' => 'groesser oder gleich wie',
|
||
'OpIn' => 'in Satz',
|
||
'OpLt' => 'kleiner als',
|
||
'OpLtEq' => 'kleiner oder gleich wie',
|
||
'OpMatches' => 'zutreffend',
|
||
'OpNe' => 'nicht gleich',
|
||
'OpNotIn' => 'nicht im Satz',
|
||
'OpNotMatches' => 'nicht zutreffend',
|
||
'Open' => 'Öffnen',
|
||
'OptionHelp' => 'Hilfe',
|
||
'OptionRestartWarning' => 'Veränderungen werden erst nach einem Neustart des Programms aktiv.\nFür eine sofortige Änderung starten Sie das Programm bitte neu.',
|
||
'Options' => 'Optionen',
|
||
'OrEnterNewName' => 'oder neuen Namen eingeben',
|
||
'Order' => 'Reihenfolge',
|
||
'Orientation' => 'Ausrichtung',
|
||
'Out' => 'Aus',
|
||
'OverwriteExisting' => 'Überschreibe bestehende',
|
||
'Paged' => 'Seitennummeriert',
|
||
'Pan' => 'Pan',
|
||
'PanLeft' => 'Pan-Left',
|
||
'PanRight' => 'Pan-Right',
|
||
'PanTilt' => 'Pan/Neigung',
|
||
'Parameter' => 'Parameter',
|
||
'Password' => 'Passwort',
|
||
'PasswordsDifferent' => 'Die Passwörter sind unterschiedlich',
|
||
'Paths' => 'Pfade',
|
||
'Pause' => 'Pause',
|
||
'Phone' => 'Telefon',
|
||
'PhoneBW' => 'Tel. B/W',
|
||
'Pid' => 'PID', // Added - 2011-06-16
|
||
'PixelDiff' => 'Pixel-Differenz',
|
||
'Pixels' => 'Pixel',
|
||
'Play' => 'Abspielen',
|
||
'PlayAll' => 'Alle zeigen',
|
||
'PleaseWait' => 'Bitte warten',
|
||
'Point' => 'Punkt',
|
||
'PostEventImageBuffer' => 'Nachereignispuffer',
|
||
'PreEventImageBuffer' => 'Vorereignispuffer',
|
||
'PreserveAspect' => 'Seitenverhältnis beibehalten',
|
||
'Preset' => 'Voreinstellung',
|
||
'Presets' => 'Voreinstellungen',
|
||
'Prev' => 'Vorheriges',
|
||
'Probe' => 'Probe', // Added - 2009-03-31
|
||
'Protocol' => 'Protokoll',
|
||
'Rate' => 'Abspielgeschwindigkeit',
|
||
'Real' => 'Real',
|
||
'Record' => 'Aufnahme',
|
||
'RefImageBlendPct' => 'Referenz-Bildblende',
|
||
'Refresh' => 'Aktualisieren',
|
||
'Remote' => 'Entfernt',
|
||
'RemoteHostName' => 'Entfernter Hostname',
|
||
'RemoteHostPath' => 'Entfernter Hostpfad',
|
||
'RemoteHostPort' => 'Entfernter Hostport',
|
||
'RemoteHostSubPath' => 'Remote Host SubPath', // Added - 2009-02-08
|
||
'RemoteImageColours' => 'Entfernte Bildfarbe',
|
||
'RemoteMethod' => 'Remote Method', // Added - 2009-02-08
|
||
'RemoteProtocol' => 'Remote Protocol', // Added - 2009-02-08
|
||
'Rename' => 'Umbenennen',
|
||
'Replay' => 'Wiederholung',
|
||
'ReplayAll' => 'Alle Ereignisse',
|
||
'ReplayGapless' => 'Lückenlose Ereignisse',
|
||
'ReplaySingle' => 'Einzelereignis',
|
||
'Reset' => 'Zurücksetzen',
|
||
'ResetEventCounts' => 'Lösche Ereignispunktzahl',
|
||
'Restart' => 'Neustart',
|
||
'Restarting' => 'Neustarten',
|
||
'RestrictedCameraIds' => 'Verbotene Kamera-ID',
|
||
'RestrictedMonitors' => 'Eingeschränkte Monitore',
|
||
'ReturnDelay' => 'Rückkehr-Verzögerung',
|
||
'ReturnLocation' => 'Rückkehrpunkt',
|
||
'Rewind' => 'Zurückspulen',
|
||
'RotateLeft' => 'Drehung links',
|
||
'RotateRight' => 'Drehung rechts',
|
||
'RunLocalUpdate' => 'Please run zmupdate.pl to update', // Added - 2011-05-25
|
||
'RunMode' => 'Betriebsmodus',
|
||
'RunState' => 'Laufender Status',
|
||
'Running' => 'In Betrieb',
|
||
'Save' => 'OK',
|
||
'SaveAs' => 'Speichere als',
|
||
'SaveFilter' => 'Speichere Filter',
|
||
'Scale' => 'Skalierung',
|
||
'Score' => 'Punktzahl',
|
||
'Secs' => 'Sekunden',
|
||
'Sectionlength' => 'Sektionslänge',
|
||
'Select' => 'Auswahl',
|
||
'SelectFormat' => 'Select Format', // Added - 2011-06-17
|
||
'SelectLog' => 'Select Log', // Added - 2011-06-17
|
||
'SelectMonitors' => 'Wähle Monitore',
|
||
'SelfIntersecting' => 'Die Polygonränder dürfen sich nicht überschneiden.',
|
||
'Set' => 'Setze',
|
||
'SetNewBandwidth' => 'Setze neue Bandbreite',
|
||
'SetPreset' => 'Setze Voreinstellung',
|
||
'Settings' => 'Einstellungen',
|
||
'ShowFilterWindow' => 'Zeige Filterfenster',
|
||
'ShowTimeline' => 'Zeige Zeitlinie',
|
||
'SignalCheckColour' => 'Farbe des Signalchecks',
|
||
'Size' => 'Größe',
|
||
'SkinDescription' => 'Change the default skin for this computer', // Added - 2011-01-30
|
||
'Sleep' => 'Schlaf',
|
||
'SortAsc' => 'aufsteigend',
|
||
'SortBy' => 'Sortieren nach',
|
||
'SortDesc' => 'absteigend',
|
||
'Source' => 'Quelle',
|
||
'SourceColours' => 'Source Colours', // Added - 2009-02-08
|
||
'SourcePath' => 'Source Path', // Added - 2009-02-08
|
||
'SourceType' => 'Quellentyp',
|
||
'Speed' => 'Geschwindigkeit',
|
||
'SpeedHigh' => 'Hohe Geschwindigkeit',
|
||
'SpeedLow' => 'Niedrige Geschwindigkeit',
|
||
'SpeedMedium' => 'Mittlere Geschwindigkeit',
|
||
'SpeedTurbo' => 'Turbo-Geschwindigkeit',
|
||
'Start' => 'Start',
|
||
'State' => 'Status',
|
||
'Stats' => 'Status',
|
||
'Status' => 'Status',
|
||
'Step' => 'Stufe',
|
||
'StepBack' => 'Einen Schritt rückwärts',
|
||
'StepForward' => 'Einen Schritt vorwärts',
|
||
'StepLarge' => 'Große Stufe',
|
||
'StepMedium' => 'Mittlere Stufe',
|
||
'StepNone' => 'Keine Stufe',
|
||
'StepSmall' => 'Kleine Stufe',
|
||
'Stills' => 'Bilder',
|
||
'Stop' => 'Stop',
|
||
'Stopped' => 'Gestoppt',
|
||
'Stream' => 'Stream',
|
||
'StreamReplayBuffer' => 'Stream-Wiedergabe-Bildpuffer',
|
||
'Submit' => 'Absenden',
|
||
'System' => 'System',
|
||
'SystemLog' => 'System Log', // Added - 2011-06-16
|
||
'Tele' => 'Tele',
|
||
'Thumbnail' => 'Miniatur',
|
||
'Tilt' => 'Neigung',
|
||
'Time' => 'Zeit',
|
||
'TimeDelta' => 'Zeitdifferenz',
|
||
'TimeStamp' => 'Zeitstempel',
|
||
'Timeline' => 'Zeitlinie',
|
||
'Timestamp' => 'Zeitstempel',
|
||
'TimestampLabelFormat' => 'Format des Zeitstempels',
|
||
'TimestampLabelX' => 'Zeitstempel-X',
|
||
'TimestampLabelY' => 'Zeitstempel-Y',
|
||
'Today' => 'Heute',
|
||
'Tools' => 'Werkzeuge',
|
||
'Total' => 'Total', // Added - 2011-06-16
|
||
'TotalBrScore' => 'Totale<br/>Punktzahl',
|
||
'TrackDelay' => 'Nachführungsverzögerung',
|
||
'TrackMotion' => 'Bewegungs-Nachführung',
|
||
'Triggers' => 'Auslöser',
|
||
'TurboPanSpeed' => 'Turbo-Pan-Geschwindigkeit',
|
||
'TurboTiltSpeed' => 'Turbo-Neigungsgeschwindigkeit',
|
||
'Type' => 'Typ',
|
||
'Unarchive' => 'Aus Archiv entfernen',
|
||
'Undefined' => 'Undefined', // Added - 2009-02-08
|
||
'Units' => 'Einheiten',
|
||
'Unknown' => 'Unbekannt',
|
||
'Update' => 'Aktualisieren',
|
||
'UpdateAvailable' => 'Eine Aktualisierung für ZoneMinder ist verfügbar.',
|
||
'UpdateNotNecessary' => 'Es ist keine Aktualisierung verfügbar.',
|
||
'Updated' => 'Updated', // Added - 2011-06-16
|
||
'Upload' => 'Upload', // Added - 2011-08-23
|
||
'UseFilter' => 'Benutze Filter',
|
||
'UseFilterExprsPost' => ' Filter Ausdrücke', // This is used at the end of the phrase 'use N filter expressions'
|
||
'UseFilterExprsPre' => 'Benutze ', // This is used at the beginning of the phrase 'use N filter expressions'
|
||
'User' => 'Benutzer',
|
||
'Username' => 'Benutzername',
|
||
'Users' => 'Benutzer',
|
||
'Value' => 'Wert',
|
||
'Version' => 'Version',
|
||
'VersionIgnore' => 'Ignoriere diese Version',
|
||
'VersionRemindDay' => 'Erinnere mich wieder in 1 Tag.',
|
||
'VersionRemindHour' => 'Erinnere mich wieder in 1 Stunde.',
|
||
'VersionRemindNever' => 'Informiere mich nicht mehr über neue Versionen.',
|
||
'VersionRemindWeek' => 'Erinnere mich wieder in 1 Woche.',
|
||
'Video' => 'Video',
|
||
'VideoFormat' => 'Videoformat',
|
||
'VideoGenFailed' => 'Videoerzeugung fehlgeschlagen!',
|
||
'VideoGenFiles' => 'Existierende Videodateien',
|
||
'VideoGenNoFiles' => 'Keine Videodateien gefunden.',
|
||
'VideoGenParms' => 'Parameter der Videoerzeugung',
|
||
'VideoGenSucceeded' => 'Videoerzeugung erfolgreich!',
|
||
'VideoSize' => 'Videogröße',
|
||
'View' => 'Ansicht',
|
||
'ViewAll' => 'Alles ansehen',
|
||
'ViewEvent' => 'Zeige Ereignis',
|
||
'ViewPaged' => 'Seitenansicht',
|
||
'Wake' => 'Aufwachen',
|
||
'WarmupFrames' => 'Aufwärmbilder',
|
||
'Watch' => 'Beobachte',
|
||
'Web' => 'Web',
|
||
'WebColour' => 'Webfarbe',
|
||
'Week' => 'Woche',
|
||
'White' => 'Weiß',
|
||
'WhiteBalance' => 'Weiß-Abgleich',
|
||
'Wide' => 'Weit',
|
||
'X' => 'X',
|
||
'X10' => 'X10',
|
||
'X10ActivationString' => 'X10-Aktivierungswert',
|
||
'X10InputAlarmString' => 'X10-Eingabe-Alarmwert',
|
||
'X10OutputAlarmString' => 'X10-Ausgabe-Alarmwert',
|
||
'Y' => 'Y',
|
||
'Yes' => 'Ja',
|
||
'YouNoPerms' => 'Keine Erlaubnis zum Zugang dieser Resource.',
|
||
'Zone' => 'Zone',
|
||
'ZoneAlarmColour' => 'Alarmfarbe (Rot/Grün/Blau)',
|
||
'ZoneArea' => 'Zone Area',
|
||
'ZoneFilterSize' => 'Filter-Breite/-Höhe (Pixel)',
|
||
'ZoneMinMaxAlarmArea' => 'Min./max. Alarmfläche',
|
||
'ZoneMinMaxBlobArea' => 'Min./max. Blobfläche',
|
||
'ZoneMinMaxBlobs' => 'Min./max. Blobs',
|
||
'ZoneMinMaxFiltArea' => 'Min./max. Filterfläche',
|
||
'ZoneMinMaxPixelThres' => 'Min./max. Pixelschwellwert',
|
||
'ZoneMinderLog' => 'ZoneMinder Log', // Added - 2011-06-17
|
||
'ZoneOverloadFrames' => 'Bildauslassrate bei Systemüberlastung',
|
||
'Zones' => 'Zonen',
|
||
'Zoom' => 'Zoom',
|
||
'ZoomIn' => 'Hineinzoomen',
|
||
'ZoomOut' => 'Herauszoomen',
|
||
);
|
||
|
||
// Complex replacements with formatting and/or placements, must be passed through sprintf
|
||
$CLANG = array(
|
||
'CurrentLogin' => 'Momentan angemeldet ist \'%1$s\'',
|
||
'EventCount' => '%1$s %2$s', // For example '37 Events' (from Vlang below)
|
||
'LastEvents' => 'Letzte %1$s %2$s', // For example 'Last 37 Events' (from Vlang below)
|
||
'LatestRelease' => 'Die letzte Version ist v%1$s, Sie haben v%2$s.',
|
||
'MonitorCount' => '%1$s %2$s', // For example '4 Monitors' (from Vlang below)
|
||
'MonitorFunction' => 'Monitor %1$s Funktion',
|
||
'RunningRecentVer' => 'Sie benutzen die aktuellste Version von Zoneminder, v%s.',
|
||
'VersionMismatch' => 'Version mismatch, system is version %1$s, database is %2$s.', // Added - 2011-05-25
|
||
);
|
||
|
||
// The next section allows you to describe a series of word ending and counts used to
|
||
// generate the correctly conjugated forms of words depending on a count that is associated
|
||
// with that word.
|
||
// This intended to allow phrases such a '0 potatoes', '1 potato', '2 potatoes' etc to
|
||
// conjugate correctly with the associated count.
|
||
// In some languages such as English this is fairly simple and can be expressed by assigning
|
||
// a count with a singular or plural form of a word and then finding the nearest (lower) value.
|
||
// So '0' of something generally ends in 's', 1 of something is singular and has no extra
|
||
// ending and 2 or more is a plural and ends in 's' also. So to find the ending for '187' of
|
||
// something you would find the nearest lower count (2) and use that ending.
|
||
//
|
||
// So examples of this would be
|
||
// $zmVlangPotato = array( 0=>'Potatoes', 1=>'Potato', 2=>'Potatoes' );
|
||
// $zmVlangSheep = array( 0=>'Sheep' );
|
||
//
|
||
// where you can have as few or as many entries in the array as necessary
|
||
// If your language is similar in form to this then use the same format and choose the
|
||
// appropriate zmVlang function below.
|
||
// If however you have a language with a different format of plural endings then another
|
||
// approach is required . For instance in Russian the word endings change continuously
|
||
// depending on the last digit (or digits) of the numerator. In this case then zmVlang
|
||
// arrays could be written so that the array index just represents an arbitrary 'type'
|
||
// and the zmVlang function does the calculation about which version is appropriate.
|
||
//
|
||
// So an example in Russian might be (using English words, and made up endings as I
|
||
// don't know any Russian!!)
|
||
// $zmVlangPotato = array( 1=>'Potati', 2=>'Potaton', 3=>'Potaten' );
|
||
//
|
||
// and the zmVlang function decides that the first form is used for counts ending in
|
||
// 0, 5-9 or 11-19 and the second form when ending in 1 etc.
|
||
//
|
||
|
||
// Variable arrays expressing plurality, see the zmVlang description above
|
||
$VLANG = array(
|
||
'Event' => array( 0=>'Ereignisse', 1=>'Ereignis;', 2=>'Ereignisse' ),
|
||
'Monitor' => array( 0=>'Monitore', 1=>'Monitor', 2=>'Monitore' ),
|
||
);
|
||
|
||
// You will need to choose or write a function that can correlate the plurality string arrays
|
||
// with variable counts. This is used to conjugate the Vlang arrays above with a number passed
|
||
// in to generate the correct noun form.
|
||
//
|
||
// In languages such as English this is fairly simple
|
||
// Note this still has to be used with printf etc to get the right formating
|
||
function zmVlang( $langVarArray, $count )
|
||
{
|
||
krsort( $langVarArray );
|
||
foreach ( $langVarArray as $key=>$value )
|
||
{
|
||
if ( abs($count) >= $key )
|
||
{
|
||
return( $value );
|
||
}
|
||
}
|
||
die( 'Error, unable to correlate variable language string' );
|
||
}
|
||
|
||
// This is an version that could be used in the Russian example above
|
||
// The rules are that the first word form is used if the count ends in
|
||
// 0, 5-9 or 11-19. The second form is used then the count ends in 1
|
||
// (not including 11 as above) and the third form is used when the
|
||
// count ends in 2-4, again excluding any values ending in 12-14.
|
||
//
|
||
// function zmVlang( $langVarArray, $count )
|
||
// {
|
||
// $secondlastdigit = substr( $count, -2, 1 );
|
||
// $lastdigit = substr( $count, -1, 1 );
|
||
// // or
|
||
// // $secondlastdigit = ($count/10)%10;
|
||
// // $lastdigit = $count%10;
|
||
//
|
||
// // Get rid of the special cases first, the teens
|
||
// if ( $secondlastdigit == 1 && $lastdigit != 0 )
|
||
// {
|
||
// return( $langVarArray[1] );
|
||
// }
|
||
// switch ( $lastdigit )
|
||
// {
|
||
// case 0 :
|
||
// case 5 :
|
||
// case 6 :
|
||
// case 7 :
|
||
// case 8 :
|
||
// case 9 :
|
||
// {
|
||
// return( $langVarArray[1] );
|
||
// break;
|
||
// }
|
||
// case 1 :
|
||
// {
|
||
// return( $langVarArray[2] );
|
||
// break;
|
||
// }
|
||
// case 2 :
|
||
// case 3 :
|
||
// case 4 :
|
||
// {
|
||
// return( $langVarArray[3] );
|
||
// break;
|
||
// }
|
||
// }
|
||
// die( 'Error, unable to correlate variable language string' );
|
||
// }
|
||
|
||
// This is an example of how the function is used in the code which you can uncomment and
|
||
// use to test your custom function.
|
||
//$monitors = array();
|
||
//$monitors[] = 1; // Choose any number
|
||
//echo sprintf( $zmClangMonitorCount, count($monitors), zmVlang( $zmVlangMonitor, count($monitors) ) );
|
||
|
||
// In this section you can override the default prompt and help texts for the options area
|
||
// These overrides are in the form show below where the array key represents the option name minus the initial ZM_
|
||
// So for example, to override the help text for ZM_LANG_DEFAULT do
|
||
$OLANG = array(
|
||
// 'LANG_DEFAULT' => array(
|
||
// 'Prompt' => "This is a new prompt for this option",
|
||
// 'Help' => "This is some new help for this option which will be displayed in the popup window when the ? is clicked"
|
||
// ),
|
||
);
|
||
|
||
?>
|