

(function(globals) {

  var django = globals.django || (globals.django = {});

  
  django.pluralidx = function(n) {
    var v=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));
    if (typeof(v) == 'boolean') {
      return v ? 1 : 0;
    } else {
      return v;
    }
  };
  

  /* gettext library */

  django.catalog = django.catalog || {};
  
  var newcatalog = {
    "Add to cart form field label\u0004Quantity": "Cantitate",
    "Datepicker month\u0004April": "Aprilie",
    "Datepicker month\u0004August": "August",
    "Datepicker month\u0004December": "Decembrie",
    "Datepicker month\u0004February": "Februarie",
    "Datepicker month\u0004January": "Ianuarie",
    "Datepicker month\u0004July": "Iulie",
    "Datepicker month\u0004June": "Iunie",
    "Datepicker month\u0004March": "Martie",
    "Datepicker month\u0004May": "Mai",
    "Datepicker month\u0004November": "Noiembrie",
    "Datepicker month\u0004October": "Octombrie",
    "Datepicker month\u0004September": "Septembrie",
    "Datepicker month shortcut\u0004Apr": "Apr",
    "Datepicker month shortcut\u0004Aug": "Aug",
    "Datepicker month shortcut\u0004Dec": "Dec",
    "Datepicker month shortcut\u0004Feb": "Feb",
    "Datepicker month shortcut\u0004Jan": "Ian",
    "Datepicker month shortcut\u0004Jul": "Iul",
    "Datepicker month shortcut\u0004Jun": "Iun",
    "Datepicker month shortcut\u0004Mar": "Mar",
    "Datepicker month shortcut\u0004May": "Mai",
    "Datepicker month shortcut\u0004Nov": "Noi",
    "Datepicker month shortcut\u0004Oct": "Oct",
    "Datepicker month shortcut\u0004Sep": "Sep",
    "Datepicker option\u0004Clear": "\u0218terge",
    "Datepicker option\u0004Close": "\u00cenchide",
    "Datepicker option\u0004Next month": "Luna viitoare",
    "Datepicker option\u0004Previous month": "Luna trecut\u0103",
    "Datepicker option\u0004Select a month": "Selecta\u021bi o lun\u0103",
    "Datepicker option\u0004Select a year": "Selecta\u021bi un an",
    "Datepicker option\u0004Today": "Ast\u0103zi",
    "Datepicker weekday\u0004Friday": "Vineri",
    "Datepicker weekday\u0004Monday": "Luni",
    "Datepicker weekday\u0004Saturday": "S\u00e2mb\u0103t\u0103",
    "Datepicker weekday\u0004Sunday": "Duminic\u0103",
    "Datepicker weekday\u0004Thursday": "Joi",
    "Datepicker weekday\u0004Tuesday": "Mar\u021bi",
    "Datepicker weekday\u0004Wednesday": "Miercuri",
    "Datepicker weekday shortcut\u0004Fri": "Vin",
    "Datepicker weekday shortcut\u0004Mon": "Lun",
    "Datepicker weekday shortcut\u0004Sat": "S\u00e2m",
    "Datepicker weekday shortcut\u0004Sun": "Dum",
    "Datepicker weekday shortcut\u0004Thu": "Joi",
    "Datepicker weekday shortcut\u0004Tue": "Mar",
    "Datepicker weekday shortcut\u0004Wed": "Mie",
    "Friday shortcut\u0004F": "V",
    "Monday shortcut\u0004M": "L",
    "Product details primary action\u0004Add to cart": "Adaug\u0103 la co\u0219",
    "Rich text editor option\u0004Bold text": "Text \u00eengro\u0219at",
    "Rich text editor option\u0004Center align": "Aliniere centru",
    "Rich text editor option\u0004Header": "Antet",
    "Rich text editor option\u0004Image (converts selected text to an image tag)": "Imagine (converte\u0219te textul selectat \u00eentr-o etichet\u0103 de imagine)",
    "Rich text editor option\u0004Italic text": "Textul italic",
    "Rich text editor option\u0004Justify": "Centreaz\u0103",
    "Rich text editor option\u0004Left align": "Aliniat la st\u00e2nga",
    "Rich text editor option\u0004Link": "Link",
    "Rich text editor option\u0004Quote": "Citat",
    "Rich text editor option\u0004Remove formatting": "Elimina\u021bi formatarea",
    "Rich text editor option\u0004Right align": "Alinia\u021bi dreapta",
    "Rich text editor option\u0004Subheader": "Subantet",
    "Saturday shortcut\u0004S": "S",
    "Sunday shortcut\u0004S": "S",
    "Thursday shortcut\u0004T": "J",
    "Tuesday shortcut\u0004T": "J",
    "Wednesday shortcut\u0004W": "M",
    "Your input fits between the recommended lengths": "Ce ai introdus se potrive\u0219te \u00eentre lungimile recomandate",
    "Your input might be a little too short, think of something more descriptive": "Ce ai introdus ar putea fi pu\u021bin prea scurt, g\u00e2nde\u0219te-te la ceva mai descriptiv",
    "item selected": [
      "articol selectat",
      "articole selectate",
      "articole selectate"
    ]
  };
  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[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 F Y, H:i",
    "DATETIME_INPUT_FORMATS": [
      "%d.%m.%Y, %H:%M",
      "%d.%m.%Y, %H:%M:%S",
      "%d.%B.%Y, %H:%M",
      "%d.%B.%Y, %H:%M:%S",
      "%Y-%m-%d %H:%M:%S",
      "%Y-%m-%d %H:%M:%S.%f",
      "%Y-%m-%d %H:%M",
      "%Y-%m-%d"
    ],
    "DATE_FORMAT": "j F Y",
    "DATE_INPUT_FORMATS": [
      "%d.%m.%Y",
      "%d.%b.%Y",
      "%d %B %Y",
      "%A, %d %B %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, H:i",
    "SHORT_DATE_FORMAT": "d.m.Y",
    "THOUSAND_SEPARATOR": ".",
    "TIME_FORMAT": "H:i",
    "TIME_INPUT_FORMATS": [
      "%H:%M",
      "%H:%M:%S",
      "%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));

