(function(globals) {
var django = globals.django || (globals.django = {});
django.pluralidx = function(count) { return (count == 1) ? 0 : 1; };
/* gettext library */
django.catalog = django.catalog || {};
var newcatalog = {
"%(sel)s of %(cnt)s selected": [
"Vybr\u00e1na je %(sel)s polo\u017eka z celkem %(cnt)s.",
"Vybr\u00e1ny jsou %(sel)s polo\u017eky z celkem %(cnt)s."
],
"6 a.m.": "6h r\u00e1no",
"6 p.m.": "6h ve\u010der",
"An error occured. Try again or contact support@exante.eu.": "Do\u0161lo k chyb\u011b. Zkuste to znovu nebo kontaktujte support@exante.eu.",
"April": "duben",
"August": "srpen",
"Available %s": "Dostupn\u00e9 polo\u017eky: %s",
"Cancel": "Storno",
"Choose": "Vybrat",
"Choose a Date": "Vyberte datum",
"Choose a Time": "Vyberte \u010das",
"Choose a time": "Vyberte \u010das",
"Choose all": "Vybrat v\u0161e",
"Chosen %s": "Vybran\u00e9 polo\u017eky %s",
"Click to choose all %s at once.": "Chcete-li najednou vybrat v\u0161echny polo\u017eky %s, klepn\u011bte sem.",
"Click to remove all chosen %s at once.": "Chcete-li najednou odebrat v\u0161echny vybran\u00e9 polo\u017eky %s, klepn\u011bte sem.",
"December": "prosinec",
"Enter a valid email address.": "Zadejte platnou e-mailovou adresu.",
"February": "\u00fanor",
"Filter": "Filtr",
"Get Started": "Za\u010d\u00edt",
"Hide": "Skr\u00fdt",
"January": "leden",
"July": "\u010dervenec",
"June": "\u010derven",
"March": "b\u0159ezen",
"May": "kv\u011bten",
"Midnight": "P\u016flnoc",
"My Account": "M\u016fj \u00fa\u010det",
"Noon": "Poledne",
"Note: You are %s hour ahead of server time.": [
"Pozn\u00e1mka: V\u00e1\u0161 \u010das o %s hodinu p\u0159edstihuje \u010das na serveru.",
"Pozn\u00e1mka: V\u00e1\u0161 \u010das o %s hodiny p\u0159edstihuje \u010das na serveru."
],
"Note: You are %s hour behind server time.": [
"Pozn\u00e1mka: V\u00e1\u0161 \u010das se o %s hodinu zpo\u017e\u010fuje za \u010dasem na serveru.",
"Pozn\u00e1mka: V\u00e1\u0161 \u010das se o %s hodiny zpo\u017e\u010fuje za \u010dasem na serveru."
],
"November": "listopad",
"Now": "Nyn\u00ed",
"October": "\u0159\u00edjen",
"Permission denied.": "Povolen\u00ed zam\u00edtnuto.",
"Remove": "Odebrat",
"Remove all": "Odebrat v\u0161e",
"September": "z\u00e1\u0159\u00ed",
"Show": "Zobrazit",
"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.": "Seznam dostupn\u00fdch polo\u017eek %s. Jednotliv\u011b je lze vybrat tak, \u017ee na n\u011b v r\u00e1me\u010dku klepnete a pak klepnete na \u0161ipku \"Vybrat\" mezi r\u00e1me\u010dky.",
"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.": "Seznam vybran\u00fdch polo\u017eek %s. Jednotliv\u011b je lze odebrat tak, \u017ee na n\u011b v r\u00e1me\u010dku klepnete a pak klepnete na \u0161ipku \"Odebrat mezi r\u00e1me\u010dky.",
"Today": "Dnes",
"Tomorrow": "Z\u00edtra",
"Type into this box to filter down the list of available %s.": "Chcete-li filtrovat ze seznamu dostupn\u00fdch polo\u017eek %s, za\u010dn\u011bte ps\u00e1t do tohoto pole.",
"Yesterday": "V\u010dera",
"You have selected an action, and you haven\u2019t made any changes on individual fields. You\u2019re probably looking for the Go button rather than the Save button.": "Byla vybr\u00e1na operace, ale dosud nedo\u0161lo k ulo\u017een\u00ed zm\u011bn jednotliv\u00fdch pol\u00ed. Patrn\u011b vyu\u017eijete tla\u010d\u00edtko Prov\u00e9st sp\u00ed\u0161e ne\u017e tla\u010d\u00edtko Ulo\u017eit.",
"You have selected an action, but you haven\u2019t saved your changes to individual fields yet. Please click OK to save. You\u2019ll need to re-run the action.": "Byla vybr\u00e1na operace, ale dosud nedo\u0161lo k ulo\u017een\u00ed zm\u011bn jednotliv\u00fdch pol\u00ed. Ulo\u017e\u00edte klepnut\u00edm na tla\u010d\u00edtko OK. Pak bude t\u0159eba operaci spustit znovu.",
"You have unsaved changes on individual editable fields. If you run an action, your unsaved changes will be lost.": "V jednotliv\u00fdch pol\u00edch jsou neulo\u017een\u00e9 zm\u011bny, kter\u00e9 budou ztraceny, pokud operaci provedete.",
"ms": "ms",
"one letter Friday\u0004F": "P",
"one letter Monday\u0004M": "P",
"one letter Saturday\u0004S": "S",
"one letter Sunday\u0004S": "N",
"one letter Thursday\u0004T": "\u010c",
"one letter Tuesday\u0004T": "\u00da",
"one letter Wednesday\u0004W": "S"
};
for (var key in newcatalog) {
django.catalog[key] = newcatalog[key];
}
if (!django.jsi18n_initialized) {
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.constructor === Array ? value[django.pluralidx(count)] : value;
}
};
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 G: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 %H:%M",
"%d. %m. %Y %H:%M:%S",
"%d. %m. %Y %H:%M:%S.%f",
"%d. %m. %Y %H.%M",
"%d. %m. %Y %H:%M",
"%Y-%m-%d %H.%M",
"%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",
"%d. %m. %Y",
"%d. %m. %y",
"%Y-%m-%d"
],
"DECIMAL_SEPARATOR": ",",
"FIRST_DAY_OF_WEEK": 1,
"MONTH_DAY_FORMAT": "j. F",
"NUMBER_GROUPING": 3,
"SHORT_DATETIME_FORMAT": "d.m.Y G:i",
"SHORT_DATE_FORMAT": "d.m.Y",
"THOUSAND_SEPARATOR": "\u00a0",
"TIME_FORMAT": "G:i",
"TIME_INPUT_FORMATS": [
"%H:%M:%S",
"%H.%M",
"%H:%M",
"%H:%M:%S.%f"
],
"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;
django.jsi18n_initialized = true;
}
}(this));