508 lines
25 KiB
PHP
508 lines
25 KiB
PHP
<?php
|
||
//
|
||
// ZoneMinder web Polish language file, $Date$, $Revision$
|
||
// Copyright (C) 2003 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 Polish Translation by Robert Krysztof
|
||
|
||
// 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-2" );
|
||
|
||
// 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', 'pl_PL' ); // All locale settings pre-4.3.0
|
||
setlocale( LC_ALL, 'pl_PL' ); // All locale settings 4.3.0 and after
|
||
// setlocale( LC_CTYPE, 'pl_PL' ); // Character class settings 4.3.0 and after
|
||
// setlocale( LC_TIME, 'pl_PL' ); // Date and time formatting 4.3.0 and after
|
||
|
||
// Simple String Replacements
|
||
$zmSlang24BitColour = 'Kolor (24 bity)';
|
||
$zmSlang8BitGrey = 'Cz/b (8 bit<69>w)';
|
||
$zmSlangActual = 'Aktualny';
|
||
$zmSlangAddNewMonitor = 'Dodaj nowy monitor';
|
||
$zmSlangAddNewUser = 'Dodaj u<>ytkownika';
|
||
$zmSlangAddNewZone = 'Dodaj now<6F> stref<65>';
|
||
$zmSlangAlarm = 'Alarm';
|
||
$zmSlangAlarmBrFrames = 'Ramki<br/>alarmowe';
|
||
$zmSlangAlarmFrameCount = 'Alarm Frame Count';
|
||
$zmSlangAlarmFrame = 'Ramka alarmowa';
|
||
$zmSlangAlarmLimits = 'Ograniczenia alarmu';
|
||
$zmSlangAlarmPx = 'Alarm Px';
|
||
$zmSlangAlert = 'Gotowosc';
|
||
$zmSlangAll = 'Wszystko';
|
||
$zmSlangApplyingStateChange = 'Zmieniam stan pracy';
|
||
$zmSlangApply = 'Zastosuj';
|
||
$zmSlangArchArchived = 'Tylko zarchiwizowane';
|
||
$zmSlangArchive = 'Archiwum';
|
||
$zmSlangArchUnarchived = 'Tylko niezarchiwizowane';
|
||
$zmSlangAttrAlarmFrames = 'Ramki alarmowe';
|
||
$zmSlangAttrArchiveStatus = 'Status archiwum';
|
||
$zmSlangAttrAvgScore = '<27>red. wynik';
|
||
$zmSlangAttrCause = 'Cause';
|
||
$zmSlangAttrDate = 'Data';
|
||
$zmSlangAttrDateTime = 'Data/Czas';
|
||
$zmSlangAttrDiskBlocks = 'Dysk Bloki';
|
||
$zmSlangAttrDiskPercent = 'Dysk Procent';
|
||
$zmSlangAttrDuration = 'Czas trwania';
|
||
$zmSlangAttrFrames = 'Ramek';
|
||
$zmSlangAttrId = 'Id';
|
||
$zmSlangAttrMaxScore = 'Maks. wynik';
|
||
$zmSlangAttrMonitorId = 'Nr monitora';
|
||
$zmSlangAttrMonitorName = 'Nazwa monitora';
|
||
$zmSlangAttrMontage = 'Monta<74>';
|
||
$zmSlangAttrName = 'Nazwa';
|
||
$zmSlangAttrTime = 'Czas';
|
||
$zmSlangAttrTotalScore = 'Ca<43>kowity wynik';
|
||
$zmSlangAttrWeekday = 'Dzie<69> roboczy';
|
||
$zmSlangAutoArchiveEvents = 'Automatycznie archiwizuj wszystkie pasuj<75>ce';
|
||
$zmSlangAutoDeleteEvents = 'Automatycznie usuwaj wszystkie pasuj<75>ce';
|
||
$zmSlangAutoEmailEvents = 'Automatycznie wysy<73>aj poczt<7A> wszystkie pasuj<75>ce';
|
||
$zmSlangAutoExecuteEvents = 'Automatycznie wywo<77>uj komend<6E> na wszystkie pasuj<75>ce';
|
||
$zmSlangAutoMessageEvents = 'Automatycznie wy<77>wietlaj komunikat na wszystkie pasuj<75>ce';
|
||
$zmSlangAutoUploadEvents = 'Automatycznie wysy<73>aj wszystkie pasuj<75>ce';
|
||
$zmSlangAvgBrScore = '<27>red.<br/>wynik';
|
||
$zmSlangBadMonitorChars = 'Nazwy monitor<6F>w mog<6F> zawiera<72> tylko litery, cyfry oraz my<6D>lnik i podkre<72>lenie';
|
||
$zmSlangBandwidth = 'przepustowo<77><6F>';
|
||
$zmSlangBlobPx = 'Plamka Px';
|
||
$zmSlangBlobSizes = 'Rozmiary plamek';
|
||
$zmSlangBlobs = 'Plamki';
|
||
$zmSlangBrightness = 'Jaskrawo<77><6F>';
|
||
$zmSlangBuffers = 'Bufory';
|
||
$zmSlangCancel = 'Anuluj';
|
||
$zmSlangCancelForcedAlarm = 'Anuluj wymuszony alarm';
|
||
$zmSlangCaptureHeight = 'Wysoko<6B><6F> obrazu';
|
||
$zmSlangCapturePalette = 'Paleta kolor<6F>w obrazu';
|
||
$zmSlangCaptureWidth = 'Szeroko<6B><6F> obrazu';
|
||
$zmSlangCause = 'Cause';
|
||
$zmSlangCheckAll = 'Zaznacz wszystko';
|
||
$zmSlangCheckMethod = 'Metoda sprawdzenia alarmu';
|
||
$zmSlangChooseFilter = 'Wybierz filtr';
|
||
$zmSlangClose = 'Zamknij';
|
||
$zmSlangColour = 'Nasycenie';
|
||
$zmSlangConfig = 'Konfiguracja';
|
||
$zmSlangConfiguredFor = 'Ustawiona';
|
||
$zmSlangConfirmPassword = 'Potwierd<72> has<61>o';
|
||
$zmSlangConjAnd = 'i';
|
||
$zmSlangConjOr = 'lub';
|
||
$zmSlangConsole = 'Konsola';
|
||
$zmSlangContactAdmin = 'Skontaktuj si<73> z Twoim adminstratorem w sprawie szczeg<65><67><EFBFBD>w.';
|
||
$zmSlangContinue = 'Continue';
|
||
$zmSlangContrast = 'Kontrast';
|
||
$zmSlangCycle = 'Cycle';
|
||
$zmSlangCycleWatch = 'Cykl podgl<67>du';
|
||
$zmSlangDay = 'Dzie<69>';
|
||
$zmSlangDeleteAndNext = 'Usu<73> & nast<73>pny';
|
||
$zmSlangDeleteAndPrev = 'Usu<73> & poprzedni';
|
||
$zmSlangDeleteSavedFilter = 'Usu<73> zapisany filtr';
|
||
$zmSlangDelete = 'Usu<73>';
|
||
$zmSlangDescription = 'Opis';
|
||
$zmSlangDeviceChannel = 'Numer wej<65>cia w urz<72>dzeniu';
|
||
$zmSlangDeviceFormat = 'System TV (0=PAL,1=NTSC itd)';
|
||
$zmSlangDeviceNumber = 'Numer urz<72>dzenia (/dev/video?)';
|
||
$zmSlangDimensions = 'Rozmiary';
|
||
$zmSlangDisk = 'Dysk';
|
||
$zmSlangDuration = 'Czas trwania';
|
||
$zmSlangEdit = 'Edycja';
|
||
$zmSlangEmail = 'Email';
|
||
$zmSlangEnabled = 'Zezwolono';
|
||
$zmSlangEnterNewFilterName = 'Wpisz now<6F> nazw<7A> filtra';
|
||
$zmSlangError = 'B<><42>d';
|
||
$zmSlangErrorBrackets = 'B<><42>d, prosz<73> sprawdzi<7A> ilo<6C><6F> nawias<61>w otwieraj<61>cych i zamykaj<61>cych';
|
||
$zmSlangErrorValidValue = 'B<><42>d, prosz<73> sprawdzi<7A> czy wszystkie warunki maj<61> poprawne warto<74>ci';
|
||
$zmSlangEtc = 'itp';
|
||
$zmSlangEventFilter = 'Filtr zdarze<7A>';
|
||
$zmSlangEventId = 'Id zdarzenia';
|
||
$zmSlangEventName = 'Event Name';
|
||
$zmSlangEventPrefix = 'Event Prefix';
|
||
$zmSlangEvents = 'Zdarzenia';
|
||
$zmSlangEvent = 'Zdarzenie';
|
||
$zmSlangExclude = 'Wyklucz';
|
||
$zmSlangFeed = 'Dostarcz';
|
||
$zmSlangFilterPx = 'Filtr Px';
|
||
$zmSlangFirst = 'Pierwszy';
|
||
$zmSlangForceAlarm = 'Wymu<6D> alarm';
|
||
$zmSlangFPS = 'fps';
|
||
$zmSlangFPSReportInterval = 'Raport (ramek/s)';
|
||
$zmSlangFrameId = 'Nr ramki';
|
||
$zmSlangFrame = 'Ramka';
|
||
$zmSlangFrameRate = 'Tempo ramek';
|
||
$zmSlangFrameSkip = 'Pomi<6D> ramk<6D>';
|
||
$zmSlangFrames = 'Ramek';
|
||
$zmSlangFTP = 'FTP';
|
||
$zmSlangFunc = 'Funkcja';
|
||
$zmSlangFunction = 'Funkcja';
|
||
$zmSlangGenerateVideo = 'Generowanie Video';
|
||
$zmSlangGeneratingVideo = 'Generuj<75> Video';
|
||
$zmSlangGoToZoneMinder = 'Przejd<6A> na ZoneMinder.com';
|
||
$zmSlangGrey = 'Cz/b';
|
||
$zmSlangGroups = 'Groups';
|
||
$zmSlangHighBW = 'Wys. prz.';
|
||
$zmSlangHigh = 'wysoka';
|
||
$zmSlangHour = 'Godzina';
|
||
$zmSlangHue = 'Odcie<69>';
|
||
$zmSlangIdle = 'Bezczynny';
|
||
$zmSlangId = 'Nr';
|
||
$zmSlangIgnore = 'Ignoruj';
|
||
$zmSlangImageBufferSize = 'Rozmiar bufora obrazu (ramek)';
|
||
$zmSlangImage = 'Obraz';
|
||
$zmSlangInclude = 'Do<44><6F>cz';
|
||
$zmSlangInverted = 'Odwr<77>cony';
|
||
$zmSlangLanguage = 'J<>zyk';
|
||
$zmSlangLast = 'Ostatni';
|
||
$zmSlangLimitResultsPost = 'wynik<69>w;'; // This is used at the end of the phrase 'Limit to first N results only'
|
||
$zmSlangLimitResultsPre = 'Ogranicz do pocz<63>tkowych'; // This is used at the beginning of the phrase 'Limit to first N results only'
|
||
$zmSlangLoad = 'Obc.';
|
||
$zmSlangLocal = 'Lokalny';
|
||
$zmSlangLoggedInAs = 'Zalogowany jako';
|
||
$zmSlangLoggingIn = 'Logowanie';
|
||
$zmSlangLogin = 'Login';
|
||
$zmSlangLogout = 'Wyloguj';
|
||
$zmSlangLowBW = 'Nis. prz.';
|
||
$zmSlangLow = 'niska';
|
||
$zmSlangMark = 'Znacznik';
|
||
$zmSlangMaxBrScore = 'Maks.<br/>wynik';
|
||
$zmSlangMaximumFPS = 'Maks. FPS';
|
||
$zmSlangMax = 'Maks.';
|
||
$zmSlangMediumBW = '<27>red. prz.';
|
||
$zmSlangMedium = '<27>rednia';
|
||
$zmSlangMinAlarmGeMinBlob = 'Minimalny rozmiar piksela alarmu musi by<62> wi<77>kszy lub r<>wny od najmniejszego piksela plamki';
|
||
$zmSlangMinAlarmGeMinFilter = 'Minimalny rozmiar piksela alarmu musi by<62> wi<77>kszy lub r<>wny od najmniejszego piksela filtru';
|
||
$zmSlangMinAlarmPixelsLtMax = 'Minimalna liczba pikseli alarmu powinna by<62> wi<77>ksza od maksymalnej liczby pikseli alarmu';
|
||
$zmSlangMinBlobAreaLtMax = 'Minimalny obszar plamki powinien by<62> mniejszy od maksymalnego obszaru plamki';
|
||
$zmSlangMinBlobsLtMax = 'Najmniejsze plamki powinny by<62> mniejsze od najwi<77>kszych plamek' ;
|
||
$zmSlangMinFilterPixelsLtMax = 'Najmniejsze piksele filtru powinny by<62> mniejsze od najwi<77>kszych pikseli';
|
||
$zmSlangMinPixelThresLtMax = 'Najmniejsze progi pikseli powinny by<62> mniejsze od najwi<77>kszych prog<6F>w pikseli';
|
||
$zmSlangMisc = 'Inne';
|
||
$zmSlangMonitorIds = 'Numery monitor<6F>w';
|
||
$zmSlangMonitor = 'Monitor';
|
||
$zmSlangMonitors = 'Monitory';
|
||
$zmSlangMontage = 'Monta<74>';
|
||
$zmSlangMonth = 'Miesi<73>c';
|
||
$zmSlangMustBeGe = 'musi by<62> wi<77>ksze lub r<>wne od';
|
||
$zmSlangMustBeLe = 'musi by<62> mniejsze lub r<>wne od';
|
||
$zmSlangMustConfirmPassword = 'Musisz potwierdzi<7A> has<61>o';
|
||
$zmSlangMustSupplyPassword = 'Musisz poda<64> has<61>o';
|
||
$zmSlangMustSupplyUsername = 'Musisz poda<64> nazw<7A> u<>ytkownika';
|
||
$zmSlangName = 'Nazwa';
|
||
$zmSlangNetwork = 'Sie<69>';
|
||
$zmSlangNewGroup = 'New Group';
|
||
$zmSlangNew = 'Nowy';
|
||
$zmSlangNewPassword = 'Nowe has<61>o';
|
||
$zmSlangNewState = 'Nowy stan';
|
||
$zmSlangNewUser = 'nowy';
|
||
$zmSlangNext = 'Nast<73>pny';
|
||
$zmSlangNoFramesRecorded = 'Brak zapisanych ramek dla tego zdarzenia';
|
||
$zmSlangNoGroups = 'No groups have been defined';
|
||
$zmSlangNoneAvailable = 'Niedost<73>pne';
|
||
$zmSlangNone = 'Brak';
|
||
$zmSlangNo = 'Nie';
|
||
$zmSlangNormal = 'Normalny';
|
||
$zmSlangNoSavedFilters = 'BrakZapisanychFiltr<74>w';
|
||
$zmSlangNoStatisticsRecorded = 'Brak zapisanych statystyk dla tego zdarzenia/ramki';
|
||
$zmSlangOpEq = 'r<>wny';
|
||
$zmSlangOpGtEq = 'wi<77>ksze lub r<>wne od';
|
||
$zmSlangOpGt = 'wi<77>ksze od';
|
||
$zmSlangOpIn = 'w zestawie';
|
||
$zmSlangOpLtEq = 'mniejsze lub r<>wne od';
|
||
$zmSlangOpLt = 'mniejsze od';
|
||
$zmSlangOpMatches = 'pasuj<75>ce';
|
||
$zmSlangOpNe = 'r<><72>ne od';
|
||
$zmSlangOpNotIn = 'brak w zestawie';
|
||
$zmSlangOpNotMatches = 'nie pasuj<75>ce';
|
||
$zmSlangOptionHelp = 'OpcjePomoc';
|
||
$zmSlangOptionRestartWarning = 'Te zmiany nie przynios<6F> natychmiastowego efektu\ndop<6F>ki system pracuje. Kiedy zako<6B>czysz robi<62> zmiany\nprosz<73> koniecznie zrestartowa<77> ZoneMinder.';
|
||
$zmSlangOptions = 'Opcje';
|
||
$zmSlangOrEnterNewName = 'lub wpisz now<6F> nazw<7A>';
|
||
$zmSlangOrientation = 'Orientacja';
|
||
$zmSlangOverwriteExisting = 'Nadpisz istniej<65>ce';
|
||
$zmSlangPaged = 'Stronicowane';
|
||
$zmSlangParameter = 'Parametr';
|
||
$zmSlangPassword = 'Has<61>o';
|
||
$zmSlangPasswordsDifferent = 'Has<61>a: nowe i potwierdzone s<> r<><72>ne!';
|
||
$zmSlangPaths = '<27>cie<69>ki';
|
||
$zmSlangPhoneBW = 'Tel. prz.';
|
||
$zmSlangPhone = 'Phone';
|
||
$zmSlangPixels = 'pikseli';
|
||
$zmSlangPlayAll = 'Play All';
|
||
$zmSlangPleaseWait = 'Prosz<73> czeka<6B>';
|
||
$zmSlangPostEventImageBuffer = 'Bufor obraz<61>w po zdarzeniu';
|
||
$zmSlangPreEventImageBuffer = 'Bufor obraz<61>w przed zdarzeniem';
|
||
$zmSlangPrev = 'Poprzedni';
|
||
$zmSlangRate = 'Tempo';
|
||
$zmSlangReal = 'Rzeczywiste';
|
||
$zmSlangRecord = 'Zapis';
|
||
$zmSlangRefImageBlendPct = 'Miks z obrazem odniesienia';
|
||
$zmSlangRefresh = 'Od<4F>wie<69>';
|
||
$zmSlangRemoteHostName = 'Nazwa zdalnego hosta';
|
||
$zmSlangRemoteHostPath = 'Scie<69>ka zdalnego hosta';
|
||
$zmSlangRemoteHostPort = 'Port zdalnego hosta';
|
||
$zmSlangRemoteImageColours = 'Kolory zdalnego obrazu';
|
||
$zmSlangRemote = 'Zdalny';
|
||
$zmSlangRename = 'Zmie<69> nazw<7A>';
|
||
$zmSlangReplay = 'Powt<77>rka';
|
||
$zmSlangResetEventCounts = 'Kasuj licznik zdarze<7A>';
|
||
$zmSlangReset = 'Reset';
|
||
$zmSlangRestarting = 'Restartuj<75>';
|
||
$zmSlangRestart = 'Restart';
|
||
$zmSlangRestrictedCameraIds = 'Numery kamer';
|
||
$zmSlangRotateLeft = 'Obr<62><72> w lewo';
|
||
$zmSlangRotateRight = 'Obr<62><72> w prawo';
|
||
$zmSlangRunMode = 'Tryb pracy';
|
||
$zmSlangRunning = 'Pracuje';
|
||
$zmSlangRunState = 'Stan pracy';
|
||
$zmSlangSaveAs = 'Zapisz jako';
|
||
$zmSlangSaveFilter = 'Zapisz filtr';
|
||
$zmSlangSave = 'Zapisz';
|
||
$zmSlangScale = 'Skala';
|
||
$zmSlangScore = 'Wynik';
|
||
$zmSlangSecs = 'Sekund';
|
||
$zmSlangSectionlength = 'D<>ugo<67><6F> sekcji';
|
||
$zmSlangSelect = 'Select';
|
||
$zmSlangSetLearnPrefs = 'Ustaw preferencje nauki'; // This can be ignored for now
|
||
$zmSlangSetNewBandwidth = 'Ustaw now<6F> przepustowo<77><6F>';
|
||
$zmSlangSettings = 'Ustawienia';
|
||
$zmSlangShowFilterWindow = 'Poka<6B>OknoFiltru';
|
||
$zmSlangSortAsc = 'Nara.';
|
||
$zmSlangSortBy = 'Sortuj';
|
||
$zmSlangSortDesc = 'Opad.';
|
||
$zmSlangSource = '<27>r<EFBFBD>d<EFBFBD>o';
|
||
$zmSlangSourceType = 'Typ <20>r<EFBFBD>d<EFBFBD>a';
|
||
$zmSlangStart = 'Start';
|
||
$zmSlangState = 'Stan';
|
||
$zmSlangStats = 'Statystyki';
|
||
$zmSlangStatus = 'Status';
|
||
$zmSlangStills = 'Nieruchome';
|
||
$zmSlangStopped = 'Zatrzymany';
|
||
$zmSlangStop = 'Stop';
|
||
$zmSlangStream = 'Ruchomy';
|
||
$zmSlangSubmit = 'Submit';
|
||
$zmSlangSystem = 'System';
|
||
$zmSlangThumbnail = 'Thumbnail';
|
||
$zmSlangTime = 'Czas';
|
||
$zmSlangTimeDelta = 'R<><52>nica czasu';
|
||
$zmSlangTimestamp = 'Czas';
|
||
$zmSlangTimestampLabelFormat = 'Format etykiety czasu';
|
||
$zmSlangTimestampLabelX = 'Wsp. X etykiety czasu';
|
||
$zmSlangTimestampLabelY = 'Wsp. Y etykiety czasu';
|
||
$zmSlangTimeStamp = 'Piecz<63><7A> czasu';
|
||
$zmSlangToday = 'Today';
|
||
$zmSlangTools = 'Narz<72>dzia';
|
||
$zmSlangTotalBrScore = 'Ca<43>kowity<br/>wynik';
|
||
$zmSlangTriggers = 'Wyzwalacze';
|
||
$zmSlangType = 'Typ';
|
||
$zmSlangUnarchive = 'Nie archiwizuj';
|
||
$zmSlangUnits = 'Jednostki';
|
||
$zmSlangUnknown = 'Nieznany';
|
||
$zmSlangUpdateAvailable = 'Jest dost<73>pne uaktualnienie ZoneMinder ';
|
||
$zmSlangUpdateNotNecessary = 'Nie jest wymagane uaktualnienie';
|
||
$zmSlangUseFilterExprsPost = ' wyra<72>enie filtru'; // This is used at the end of the phrase 'use N filter expressions'
|
||
$zmSlangUseFilterExprsPre = 'U<>yj '; // This is used at the beginning of the phrase 'use N filter expressions'
|
||
$zmSlangUseFilter = 'U<>yj filtru';
|
||
$zmSlangUsername = 'Nazwa u<>ytkownika';
|
||
$zmSlangUsers = 'U<>ytkownicy';
|
||
$zmSlangUser = 'U<>ytkownik';
|
||
$zmSlangValue = 'Warto<74><6F>';
|
||
$zmSlangVersionIgnore = 'Zignoruj t<> wersj<73>';
|
||
$zmSlangVersionRemindDay = 'Przypomnij po 1 dniu';
|
||
$zmSlangVersionRemindHour = 'Przypomnij po 1 godzinie';
|
||
$zmSlangVersionRemindNever = 'Nie przypominaj o nowych wersjach';
|
||
$zmSlangVersionRemindWeek = 'Przypomnij po 1 tygodniu';
|
||
$zmSlangVersion = 'Wersja';
|
||
$zmSlangVideoGenFailed = 'Generowanie filmu Video nie powiod<6F>o si<73>!';
|
||
$zmSlangVideoGenParms = 'Parametery generowania filmu Video';
|
||
$zmSlangVideoSize = 'Rozmiar filmu Video';
|
||
$zmSlangVideo = 'Video';
|
||
$zmSlangViewAll = 'Poka<6B> wszystko';
|
||
$zmSlangViewPaged = 'Poka<6B> stronami';
|
||
$zmSlangView = 'Podgl<67>d';
|
||
$zmSlangWarmupFrames = 'Ignorowane ramki';
|
||
$zmSlangWatch = 'podgl<67>d';
|
||
$zmSlangWeb = 'Web';
|
||
$zmSlangWeek = 'Tydzie<69>';
|
||
$zmSlangX10ActivationString = 'X10: <20>a<EFBFBD>cuch aktywuj<75>cy';
|
||
$zmSlangX10InputAlarmString = 'X10: <20>a<EFBFBD>cuch wej<65>cia alarmu';
|
||
$zmSlangX10OutputAlarmString = 'X10: <20>a<EFBFBD>cuch wyj<79>cia alarmu';
|
||
$zmSlangX10 = 'X10';
|
||
$zmSlangYes = 'Tak';
|
||
$zmSlangYouNoPerms = 'Nie masz uprawnie<69> na dost<73>p do tego zasobu.';
|
||
$zmSlangZoneAlarmColour = 'Kolor alarmu (RGB)';
|
||
$zmSlangZoneAlarmThreshold = 'Pr<50>g alarmu (0>=?<=255)';
|
||
$zmSlangZoneFilterHeight = 'Wysoko<6B><6F> filtru (piksele)';
|
||
$zmSlangZoneFilterWidth = 'Szeroko<6B><6F> filtru (piksele)';
|
||
$zmSlangZoneMaxAlarmedArea = 'Najwi<77>kszy obszar alarmowany';
|
||
$zmSlangZoneMaxBlobArea = 'Najwi<77>kszy obszar plamki';
|
||
$zmSlangZoneMaxBlobs = 'Najwi<77>ksze plamki';
|
||
$zmSlangZoneMaxFilteredArea = 'Najwi<77>kszy obszar filtrowany';
|
||
$zmSlangZoneMaxPixelThres = 'Najwi<77>kszy pr<70>g piksela (0>=?<=255)';
|
||
$zmSlangZoneMaxX = 'Najwi<77>ksze X (prawo)';
|
||
$zmSlangZoneMaxY = 'Najwi<77>ksze Y (d<><64>)';
|
||
$zmSlangZoneMinAlarmedArea = 'Najmniejszy obszar alarmowany';
|
||
$zmSlangZoneMinBlobArea = 'Najmniejszy obszar plamki';
|
||
$zmSlangZoneMinBlobs = 'Najmniejsze plamki';
|
||
$zmSlangZoneMinFilteredArea = 'Najmniejszy obszar filtrowany';
|
||
$zmSlangZoneMinPixelThres = 'Minimalny pr<70>g piksela (0>=?<=255)';
|
||
$zmSlangZoneMinX = 'Najmniejsze X (lewo)';
|
||
$zmSlangZoneMinY = 'Najmniejsze Y (g<>ra)';
|
||
$zmSlangZones = 'Strefy';
|
||
$zmSlangZone = 'Strefa';
|
||
|
||
// Complex replacements with formatting and/or placements, must be passed through sprintf
|
||
$zmClangCurrentLogin = 'Aktualny login \'%1$s\'';
|
||
$zmClangEventCount = '%1$s %2$s';
|
||
$zmClangLastEvents = 'Ostatnie %1$s %2$s';
|
||
$zmClangLatestRelease = 'Najnowsza wersja to v%1$s, Ty posiadasz v%2$s.';
|
||
$zmClangMonitorCount = '%1$s %2$s';
|
||
$zmClangMonitorFunction = 'Monitor %1$s Funkcja';
|
||
$zmClangRunningRecentVer = 'Uruchomi<6D>e<EFBFBD> najnowsz<73> wersj<73> ZoneMinder, v%s.';
|
||
|
||
// 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
|
||
$zmVlangEvent = array( 0=>'Zdarze<7A>', 1=>'Zdarzenie', 2=>'Zdarzenia');
|
||
$zmVlangMonitor = array( 0=>'Monitor<6F>w', 1=>'Monitor', 2=>'Monitory');
|
||
|
||
// 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.
|
||
|
||
// This is an version that could be used in the Polish language
|
||
//
|
||
function zmVlang( $lang_var_array, $count )
|
||
{
|
||
$secondlastdigit = substr( $count, -2, 1 );
|
||
$lastdigit = substr( $count, -1, 1 );
|
||
if ( $count == 1 )
|
||
{
|
||
return( $lang_var_array[1] );
|
||
}
|
||
if (($secondlastdigit == 0)|( $secondlastdigit == 1))
|
||
{
|
||
return( $lang_var_array[0] );
|
||
}
|
||
if ( $secondlastdigit >= 2)
|
||
{
|
||
switch ( $lastdigit )
|
||
{
|
||
case 0 :
|
||
case 1 :
|
||
case 5 :
|
||
case 6 :
|
||
case 7 :
|
||
case 8 :
|
||
case 9 :
|
||
{
|
||
return( $lang_var_array[0] );
|
||
break;
|
||
}
|
||
case 2 :
|
||
case 3 :
|
||
case 4 :
|
||
{
|
||
return( $lang_var_array[2] );
|
||
break;
|
||
}
|
||
}
|
||
}
|
||
die( 'B<><42>D! zmVlang nie mo<6D>e skorelowac <20>a<EFBFBD>cucha!' );
|
||
}
|
||
|
||
// 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 = 12; // Choose any number
|
||
// echo $monitors." ";
|
||
// echo zmVlang( $zmVlangMonitor, $monitors);
|
||
|
||
// In this section you can override the default prompt and help texts for the options area
|
||
// These overrides are in the form of $zmOlangPrompt<option> and $zmOlangHelp<option>
|
||
// where <option> represents the option name minus the initial ZM_
|
||
// So for example, to override the help text for ZM_LANG_DEFAULT do
|
||
// $zmOlangPromptLANG_DEFAULT = "This is a new prompt for this option";
|
||
// $zmOlangHelpLANG_DEFAULT = "This is some new help for this option which will be displayed in the popup window when the ? is clicked";
|
||
//
|
||
|
||
?>
|