

(function(globals) {

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

  
  django.pluralidx = function(n) {
    var v=(n > 1);
    if (typeof(v) == 'boolean') {
      return v ? 1 : 0;
    } else {
      return v;
    }
  };
  

  /* gettext library */

  django.catalog = django.catalog || {};
  
  var newcatalog = {
    "\n": "\n",
    "Add to cart form field label\u0004Quantity": "Adet",
    "Datepicker month\u0004April": "Nisan",
    "Datepicker month\u0004August": "A\u011fustos",
    "Datepicker month\u0004December": "Aral\u0131k",
    "Datepicker month\u0004February": "\u015eubat",
    "Datepicker month\u0004January": "Ocak",
    "Datepicker month\u0004July": "Temmuz",
    "Datepicker month\u0004June": "Haziran",
    "Datepicker month\u0004March": "Mart",
    "Datepicker month\u0004May": "May\u0131s",
    "Datepicker month\u0004November": "Kas\u0131m",
    "Datepicker month\u0004October": "Ekim",
    "Datepicker month\u0004September": "Eyl\u00fcl",
    "Datepicker month shortcut\u0004Apr": "Nis",
    "Datepicker month shortcut\u0004Aug": "A\u011fu",
    "Datepicker month shortcut\u0004Dec": "Ara",
    "Datepicker month shortcut\u0004Feb": "\u015eub",
    "Datepicker month shortcut\u0004Jan": "Oca",
    "Datepicker month shortcut\u0004Jul": "Tem",
    "Datepicker month shortcut\u0004Jun": "Haz",
    "Datepicker month shortcut\u0004Mar": "Mar",
    "Datepicker month shortcut\u0004May": "May\u0131s",
    "Datepicker month shortcut\u0004Nov": "Kas",
    "Datepicker month shortcut\u0004Oct": "Eki",
    "Datepicker month shortcut\u0004Sep": "Eyl",
    "Datepicker option\u0004Clear": "Temizle",
    "Datepicker option\u0004Close": "Kapat",
    "Datepicker option\u0004Next month": "Gelecek ay",
    "Datepicker option\u0004Previous month": "\u00d6nceki ay",
    "Datepicker option\u0004Select a month": "Ay se\u00e7iniz",
    "Datepicker option\u0004Select a year": "Y\u0131l se\u00e7iniz",
    "Datepicker option\u0004Today": "Bug\u00fcn",
    "Datepicker weekday\u0004Friday": "Cuma",
    "Datepicker weekday\u0004Monday": "Pazartesi",
    "Datepicker weekday\u0004Saturday": "Cumartesi",
    "Datepicker weekday\u0004Sunday": "Pazar",
    "Datepicker weekday\u0004Thursday": "Per\u015fembe",
    "Datepicker weekday\u0004Tuesday": "Sal\u0131",
    "Datepicker weekday\u0004Wednesday": "\u00c7ar\u015famba",
    "Datepicker weekday shortcut\u0004Fri": "Cum",
    "Datepicker weekday shortcut\u0004Mon": "Pzt",
    "Datepicker weekday shortcut\u0004Sat": "Cts",
    "Datepicker weekday shortcut\u0004Sun": "Paz",
    "Datepicker weekday shortcut\u0004Thu": "Per",
    "Datepicker weekday shortcut\u0004Tue": "Sal",
    "Datepicker weekday shortcut\u0004Wed": "\u00c7ar",
    "Friday shortcut\u0004F": "C",
    "Missing source": "Eksik kaynak",
    "Monday shortcut\u0004M": "P",
    "Product details primary action\u0004Add to cart": "Sepete ekle",
    "Rich text editor option\u0004Bold text": "Kal\u0131n metin",
    "Rich text editor option\u0004Center align": "Ortalanm\u0131\u015f",
    "Rich text editor option\u0004Header": "Ba\u015fl\u0131k",
    "Rich text editor option\u0004Image (converts selected text to an image tag)": "G\u00f6rsel (se\u00e7ili metni g\u00f6rsel etiketine \u00e7evirir)",
    "Rich text editor option\u0004Italic text": "\u0130talik metin",
    "Rich text editor option\u0004Justify": "Ortala",
    "Rich text editor option\u0004Left align": "Sola yasl\u0131",
    "Rich text editor option\u0004Link": "Link",
    "Rich text editor option\u0004Quote": "Al\u0131nt\u0131",
    "Rich text editor option\u0004Remove formatting": "D\u00fczenlemeyi kald\u0131r",
    "Rich text editor option\u0004Right align": "Sa\u011fa yasl\u0131",
    "Rich text editor option\u0004Subheader": "Alt ba\u015fl\u0131k",
    "Saturday shortcut\u0004S": "P",
    "Sunday shortcut\u0004S": "P",
    "Thursday shortcut\u0004T": "S",
    "Tuesday shortcut\u0004T": "S",
    "Wednesday shortcut\u0004W": "\u00c7",
    "Your input fits between the recommended lengths": "\u00d6nerilen uzunlu\u011fa uyuyor",
    "Your input might be a little too short, think of something more descriptive": "Girdi\u011finiz bilgiler biraz k\u0131sa olabilir. L\u00fctfen daha a\u00e7\u0131klay\u0131c\u0131 \u015feyler d\u00fc\u015f\u00fcn\u00fcn",
    "item selected": [
      "\u00fcr\u00fcn se\u00e7ildi",
      "\u00fcr\u00fcnler se\u00e7ildi"
    ]
  };
  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": "d F Y H: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",
      "%Y-%m-%d %H:%M:%S",
      "%Y-%m-%d %H:%M:%S.%f",
      "%Y-%m-%d %H:%M",
      "%Y-%m-%d"
    ],
    "DATE_FORMAT": "d F Y",
    "DATE_INPUT_FORMATS": [
      "%d/%m/%Y",
      "%d/%m/%y",
      "%y-%m-%d",
      "%Y-%m-%d"
    ],
    "DECIMAL_SEPARATOR": ",",
    "FIRST_DAY_OF_WEEK": 1,
    "MONTH_DAY_FORMAT": "d 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:%S",
      "%H:%M:%S.%f",
      "%H:%M"
    ],
    "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));

