
/* gettext library */

var catalog = new Array();

function pluralidx(count) { return (count == 1) ? 0 : 1; }
catalog['6 a.m.'] = '6 r\u00e1no';
catalog['Add'] = 'Prida\u0165';
catalog['Available %s'] = 'Dostupn\u00e9 %s';
catalog['Calendar'] = 'Kalend\u00e1r';
catalog['Cancel'] = 'Zru\u0161';
catalog['Choose a time'] = 'Vybra\u0165 \u010das';
catalog['Choose all'] = 'Vybra\u0165 v\u0161etko';
catalog['Chosen %s'] = 'Vybran\u00e9 %s';
catalog['Clear all'] = 'Odstr\u00e1ni\u0165 v\u0161etko';
catalog['Clock'] = 'Hodiny';
catalog['Hide'] = 'Skry!';
catalog['January February March April May June July August September October November December'] = 'Janu\u00e1r Febru\u00e1r Marec Apr\u00edl M\u00e1j J\u00fan J\u00fal August September Okt\u00f3ber November December';
catalog['Midnight'] = 'Polnoc';
catalog['Noon'] = 'Poludnie';
catalog['Now'] = 'Pr\u00e1ve teraz';
catalog['Remove'] = 'Vymaza\u0165';
catalog['S M T W T F S'] = 'N P U S \u0160 P S';
catalog['Select your choice(s) and click '] = 'Vyberte svoje vo\u013eby a kliknite ';
catalog['Show'] = 'Uk\u00e1\u017e!';
catalog['Sunday Monday Tuesday Wednesday Thursday Friday Saturday'] = 'Nede\u013ea Pondelok Utorok Streda \u0160tvrtok Piatok Sobota';
catalog['Today'] = 'Dnes';
catalog['Tomorrow'] = 'Zajtra';
catalog['Yesterday'] = 'V\u010dera';


function gettext(msgid) {
  var value = catalog[msgid];
  if (typeof(value) == 'undefined') {
    return msgid;
  } else {
    return (typeof(value) == 'string') ? value : value[0];
  }
}

function ngettext(singular, plural, count) {
  value = catalog[singular];
  if (typeof(value) == 'undefined') {
    return (count == 1) ? singular : plural;
  } else {
    return value[pluralidx(count)];
  }
}

function gettext_noop(msgid) { return msgid; }

function interpolate(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())});
  }
}
