(function (globals) { var django = globals.django || (globals.django = {}); django.pluralidx = function (n) { var v=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2); if (typeof(v) == 'boolean') { return v ? 1 : 0; } else { return v; } }; /* gettext library */ django.catalog = { "%(sel)s of %(cnt)s selected": [ "Zaznaczono %(sel)s z %(cnt)s", "Zaznaczono %(sel)s z %(cnt)s", "Zaznaczono %(sel)s z %(cnt)s" ], "6 a.m.": "6 rano", "Available %s": "Dost\u0119pne %s", "Calendar": "Kalendarz", "Cancel": "Anuluj", "Choose": "Wybierz", "Choose a time": "Wybierz czas", "Choose all": "Wybierz wszystko", "Chosen %s": "Wybrano %s", "Click to choose all %s at once.": "Kliknij aby wybra\u0107 wszystkie %s na raz.", "Click to remove all chosen %s at once.": "Kliknij aby usun\u0105\u0107 wszystkie wybrane %s na raz.", "Clock": "Zegar", "Filter": "Filtr", "Hide": "Ukryj", "January February March April May June July August September October November December": "Stycze\u0144 Luty Marzec Kwiecie\u0144 Maj Czerwiec Lipiec Sierpie\u0144 Wrzesie\u0144 Pa\u017adziernik Listopad Grudzie\u0144", "Midnight": "P\u00f3\u0142noc", "Noon": "Po\u0142udnie", "Note: You are %s hour ahead of server time.": [ "Uwaga: Czas lokalny jest przesuni\u0119ty %s godzin\u0119 w stosunku do czasu serwera.", "Uwaga: Czas lokalny jest przesuni\u0119ty %s godziny w stosunku do czasu serwera.", "Uwaga: Czas lokalny jest przesuni\u0119ty %s godzin w stosunku do czasu serwera." ], "Note: You are %s hour behind server time.": [ "Uwaga: Czas lokalny jest przesuni\u0119ty o %s godzin\u0119 w stosunku do czasu serwera.", "Uwaga: Czas lokalny jest przesuni\u0119ty o %s godziny w stosunku do czasu serwera.", "Uwaga: Czas lokalny jest przesuni\u0119ty o %s godzin w stosunku do czasu serwera." ], "Now": "Teraz", "Remove": "Usu\u0144", "Remove all": "Usu\u0144 wszystkie", "S M T W T F S": "N Pn Wt \u015ar Cz Pt So", "Show": "Poka\u017c", "This is the list of available %s. You may choose some by selecting them in the box below and then clicking the \"Choose\" arrow between the two boxes.": "To jest lista dost\u0119pnych %s. Aby wybra\u0107 pozycje zaznacz je i kliknij strza\u0142k\u0119 \"Wybierz\" pomi\u0119dzy listami.", "This is the list of chosen %s. You may remove some by selecting them in the box below and then clicking the \"Remove\" arrow between the two boxes.": "To jest lista wybranych %s. Aby usun\u0105\u0107 zaznacz pozycje wybrane do usuni\u0119cia i kliknij strza\u0142k\u0119 \"Usu\u0144\" pomi\u0119dzy listami.", "Today": "Dzisiaj", "Tomorrow": "Jutro", "Type into this box to filter down the list of available %s.": "Pisz tutaj aby wyfiltrowa\u0107 list\u0119 dost\u0119pnych %s.", "Yesterday": "Wczoraj", "You have selected an action, and you haven't made any changes on individual fields. You're probably looking for the Go button rather than the Save button.": "Wybrano akcj\u0119, lecz nie dokonano \u017cadnych zmian. Prawdopodobnie szukasz przycisku \"Wykonaj\" (a nie \"Zapisz\")", "You have selected an action, but you haven't saved your changes to individual fields yet. Please click OK to save. You'll need to re-run the action.": "Wybrano akcj\u0119, lecz cz\u0119\u015b\u0107 zmian w polach nie zosta\u0142a zachowana. Kliknij OK aby zapisa\u0107. Aby wykona\u0107 akcj\u0119, nale\u017cy j\u0105 ponownie uruchomi\u0107.", "You have unsaved changes on individual editable fields. If you run an action, your unsaved changes will be lost.": "Zmiany w niekt\u00f3rych polach nie zosta\u0142y zachowane. Po wykonaniu akcji zmiany te zostan\u0105 utracone." }; django.gettext = function (msgid) { var value = django.catalog[msgid]; if (typeof(value) == 'undefined') { return msgid; } else { return (typeof(value) == 'string') ? value : value[0]; } }; django.ngettext = function (singular, plural, count) { var value = django.catalog[singular]; if (typeof(value) == 'undefined') { return (count == 1) ? singular : plural; } else { return value[django.pluralidx(count)]; } }; django.gettext_noop = function (msgid) { return msgid; }; django.pgettext = function (context, msgid) { var value = django.gettext(context + '\x04' + msgid); if (value.indexOf('\x04') != -1) { value = msgid; } return value; }; django.npgettext = function (context, singular, plural, count) { var value = django.ngettext(context + '\x04' + singular, context + '\x04' + plural, count); if (value.indexOf('\x04') != -1) { value = django.ngettext(singular, plural, count); } return value; }; django.interpolate = function (fmt, obj, named) { if (named) { return fmt.replace(/%\(\w+\)s/g, function(match){return String(obj[match.slice(2,-2)])}); } else { return fmt.replace(/%s/g, function(match){return String(obj.shift())}); } }; /* formatting library */ django.formats = { "DATETIME_FORMAT": "j E Y H:i", "DATETIME_INPUT_FORMATS": [ "%d.%m.%Y %H:%M:%S", "%d.%m.%Y %H:%M:%S.%f", "%d.%m.%Y %H:%M", "%d.%m.%Y", "%Y-%m-%d %H:%M:%S", "%Y-%m-%d %H:%M:%S.%f", "%Y-%m-%d %H:%M", "%Y-%m-%d" ], "DATE_FORMAT": "j E Y", "DATE_INPUT_FORMATS": [ "%d.%m.%Y", "%d.%m.%y", "%y-%m-%d", "%Y-%m-%d" ], "DECIMAL_SEPARATOR": ",", "FIRST_DAY_OF_WEEK": "1", "MONTH_DAY_FORMAT": "j F", "NUMBER_GROUPING": "3", "SHORT_DATETIME_FORMAT": "d-m-Y H:i", "SHORT_DATE_FORMAT": "d-m-Y", "THOUSAND_SEPARATOR": "\u00a0", "TIME_FORMAT": "H:i", "TIME_INPUT_FORMATS": [ "%H:%M:%S", "%H:%M" ], "YEAR_MONTH_FORMAT": "F Y" }; django.get_format = function (format_type) { var value = django.formats[format_type]; if (typeof(value) == 'undefined') { return format_type; } else { return value; } }; /* add to global namespace */ globals.pluralidx = django.pluralidx; globals.gettext = django.gettext; globals.ngettext = django.ngettext; globals.gettext_noop = django.gettext_noop; globals.pgettext = django.pgettext; globals.npgettext = django.npgettext; globals.interpolate = django.interpolate; globals.get_format = django.get_format; }(this));