/* gettext library */

var catalog = new Array();

function pluralidx(count) { return (count == 1) ? 0 : 1; }
catalog['6 a.m.'] = 'Reggel 6 \u00f3ra';
catalog['Add'] = 'Hozz\u00e1ad\u00e1s';
catalog['An error occurred when approving images'] = 'Hiba a k\u00e9p j\u00f3v\u00e1hagy\u00e1sa k\u00f6zben';
catalog['An error occurred when deleting images'] = 'Hiba a k\u00e9p t\u00f6rl\u00e9se k\u00f6zben';
catalog['An error occurred when marking images'] = 'Hiba a k\u00e9p kijel\u00f6l\u00e9se k\u00f6zben';
catalog['Available %s'] = 'El\u00e9rhet\u0151 %s';
catalog['Begin typing to find a listing'] = 'Kezdd el \u00edrni, \u00e9s kieg\u00e9sz\u00edtj\u00fck, ha m\u00e1r szerepel n\u00e1lunk';
catalog['Calendar'] = 'Napt\u00e1r';
catalog['Cancel rating'] = '\u00c9rt\u00e9kel\u00e9s t\u00f6rl\u00e9se';
catalog['Cancel'] = 'M\u00e9gsem';
catalog['Choose a time'] = 'V\u00e1lassza ki az id\u0151t';
catalog['Choose all'] = '\u00d6sszes';
catalog['Chosen %s'] = '%s kiv\u00e1lasztva';
catalog['Clear all'] = '\u00d6sszes t\u00f6rl\u00e9se';
catalog['Clock'] = '\u00d3ra';
catalog['Date'] = 'D\u00e1tum';
catalog['Hide'] = 'Elrejt';
catalog['January February March April May June July August September October November December'] = 'Janu\u00e1r Febru\u00e1r M\u00e1rcius \u00c1prilis M\u00e1jus J\u00fanius J\u00falius Augusztus Szeptember Okt\u00f3ber November December';
catalog['Midnight'] = '\u00c9jf\u00e9l';
catalog['Noon'] = 'D\u00e9l';
catalog['Now'] = 'Most';
catalog['Optionally select a column'] = 'V\u00e1lassz oszlopot (nem k\u00f6telez\u0151)';
catalog['Please select...'] = 'V\u00e1lassz k\u00e9rlek...';
catalog['Remove'] = 'T\u00f6r\u00f6l';
catalog['S M T W T F S'] = 'V H K Sz Cs P Szo';
catalog['Select a city, or leave for nationwide'] = 'V\u00e1lassz v\u00e1rost, vagy hagyd \u00fcresen, ha orsz\u00e1gos';
catalog['Select your choice(s) and click '] = 'V\u00e1lassz \u00e9s kattints';
catalog['Show'] = 'Mutat';
catalog['Showing image'] = 'K\u00e9p';
catalog['Start Date'] = 'Kezd\u0151 d\u00e1tum';
catalog['Sunday Monday Tuesday Wednesday Thursday Friday Saturday'] = 'vas\u00e1rnap h\u00e9tf\u0151 kedd szerda cs\u00fct\u00f6rt\u00f6k p\u00e9ntek szombat';
catalog['Today'] = 'Ma';
catalog['Tomorrow'] = 'Holnap';
catalog['Yesterday'] = 'Tegnap';
catalog['You really want to delete this image?'] = 'T\u00e9nyleg t\u00f6r\u00f6lni akarod a k\u00e9pet?';
catalog['from'] = '/';


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

