
/* gettext library */

var catalog = new Array();

function pluralidx(count) { return (count == 1) ? 0 : 1; }
catalog['Aug'] = 'Aug';
catalog['Augusztus'] = 'Augusztus';
catalog['Cs'] = 'Cs';
catalog['Cs\u00fct\u00f6rt\u00f6k'] = 'Cs\u00fct\u00f6rt\u00f6k';
catalog['Dec'] = 'Dec';
catalog['December'] = 'December';
catalog['Feb'] = 'Feb';
catalog['Febru\u00e1r'] = 'Febru\u00e1r';
catalog['H'] = 'H';
catalog['H\u00e9tf\u0151'] = 'H\u00e9tf\u0151';
catalog['Ide j\u00f6het a le\u00edr\u00e1s, minimum 32 karakter'] = 'Type the event\'s description here, You can add youtube videos by copy and paste the youtube video link here For example: http://www.youtube.com/watch?v=D6RaU9n4ZuI';
catalog['J\u00fal'] = 'J\u00fal';
catalog['J\u00falius'] = 'J\u00falius';
catalog['J\u00fan'] = 'J\u00fan';
catalog['J\u00fanius'] = 'J\u00fanius';
catalog['Jan'] = 'Jan';
catalog['Janu\u00e1r'] = 'Janu\u00e1r';
catalog['K'] = 'K';
catalog['Kedd'] = 'Kedd';
catalog['Keres\u00e9s'] = 'Keres\u00e9s';
catalog['Le\u00edr\u00e1s'] = 'Le\u00edr\u00e1s';
catalog['M\u00e1j'] = 'M\u00e1j';
catalog['M\u00e1jus'] = 'M\u00e1jus';
catalog['M\u00e1r'] = 'M\u00e1r';
catalog['M\u00e1rcius'] = 'M\u00e1rcius';
catalog['Nov'] = 'Nov';
catalog['November'] = 'November';
catalog['Okt'] = 'Okt';
catalog['Okt\u00f3ber'] = 'Okt\u00f3ber';
catalog['P'] = 'P';
catalog['P\u00e9ntek'] = 'P\u00e9ntek';
catalog['Sze'] = 'Sze';
catalog['Szep'] = 'Szep';
catalog['Szeptember'] = 'Szeptember';
catalog['Szerda'] = 'Szerda';
catalog['Szo'] = 'Szo';
catalog['Szombat'] = 'Szombat';
catalog['V'] = 'V';
catalog['Vas\u00e1rnap'] = 'Vas\u00e1rnap';
catalog['\u00c1pr'] = '\u00c1pr';
catalog['\u00c1prilis'] = '\u00c1prilis';
catalog['\u00cdrd be a c\u00edmed, hogy l\u00e1sd kik vannak k\u00f6zel hozz\u00e1d'] = '\u00cdrd be a c\u00edmed, hogy l\u00e1sd kik vannak k\u00f6zel hozz\u00e1d';
catalog['eg\u00e9sz nap'] = 'eg\u00e9sz nap';
catalog['havi'] = 'havi';
catalog['heti'] = 'heti';
catalog['mai nap'] = 'mai nap';
catalog['megse.png'] = 'megse_en.png';
catalog['napi'] = 'napi';


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

