

(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 = {
    "*No tiene comentario esta opini\u00f3n": "* This review has no comment",
    "Aceptar": "To accept",
    "Buscar": "Search for",
    "Cancelar": "Cancel",
    "Cantidad m\u00ednima de %(min)s uds": "Minimum quantity of %(min)s units",
    "Cantidad m\u00ednima de %(min)s uds y m\u00faltiple de %(factor)s": "Minimum quantity of %(min)s units and multiple of %(factor)s",
    "Cantidad m\u00faltiple de %(factor)s": "Multiple quantity of %(factor)s",
    "Categor\u00eda copiada con \u00e9xito.": "Category copied successfully.",
    "Copiado al portapapeles": "Copied to clipboard",
    "Copiados datos del cliente al portapapeles": "Copied customer data to clipboard",
    "Crear nuevo apunte interno": "Create new internal note",
    "De/Seleccionar todos": "From / Select all",
    "Debes seleccionar al menos un producto a cambiar": "You must select at least one product to change",
    "Editar": "Edit",
    "El tama\u00f1o de la imagen es demasiado grande": "The size of the image is too large",
    "Eliminar": "Remove",
    "Enviar mensaje al cliente": "Send message to customer",
    "Este producto no tiene combinaciones": "This product has no combinations",
    "Ha habido alg\u00fan problema, contacte con el administrador del sistema.": "There has been a problem, contact the system administrator.",
    "Has de elegir un producto para poder crear una oferta flash.": "You have to choose a product to be able to create a flash offer.",
    "Has de poner un email para probar el email.": "You have to put an email to test the email.",
    "Has de tener seleccionada una categor\u00eda para poder guardarla.": "You must have selected a category to be able to save it.",
    "Has de tener seleccionada una categor\u00eda para poder usar esta opci\u00f3n.": "You must have selected a category to be able to use this option.",
    "Has de tener un producto seleccionado para poder a\u00f1adirlo.": "You must have a selected product to be able to add it.",
    "Has de tener una categor\u00eda seleccionada para poder a\u00f1adirla.": "You must have a selected category to be able to add it.",
    "Has de tener una categor\u00eda seleccionada para poder copiarla.": "You must have a selected category to be able to copy it.",
    "Importe": "Amount",
    "Informaci\u00f3n copiada correctamente": "Information copied correctly",
    "Insertar": "Insert",
    "Ninguno": "None",
    "No": "Do not",
    "No hay ningun producto para quitar.": "There is no product to remove.",
    "No hay ninguna categor\u00eda copiada en el portapapeles.": "There is no category copied to the clipboard.",
    "No hay ninguna categor\u00eda para quitar.": "There is no category to remove.",
    "No hay productos a exportar.": "There are no products to export.",
    "No podr\u00e1s deshacer esto": "You can not undo this",
    "No podr\u00e1s deshacer esto.": "You will not be able to undo this.",
    "No puedes desasociar una categor\u00eda vac\u00eda.": "You can not disassociate an empty category.",
    "No puedes desseleccionar todas las combinaciones.": "You can not unselect all combinations.",
    "No puedes subir ficheros con este formato": "You can not upload files with this format",
    "No se ha podido copiar ning\u00fan texto": "Could not copy any text",
    "No se han encontrado resultados": "No results found",
    "No se permiten valores negativos o nulos": "Negative or null values are not allowed.",
    "Nuevo": "New",
    "Nuevo apunte": "New entry",
    "Nuevo apunte para el pedido": "New note for the order",
    "Ordenar": "Order",
    "Por favor, introduce una fecha de fin para la venta flash.": "Please enter an end date for the flash sale.",
    "Primero seleccione un producto para a\u00f1adir": "First select a product to add",
    "Producto a\u00f1adido correctamente.": "Product added correctly.",
    "Productos sin modelos": "Products without models",
    "Quitar\u00e1s este producto, \u00bfest\u00e1s seguro?": "You will remove this product, are you sure?",
    "Rec\u00edbelo %(date)s": [
      "Get it %(date)s",
      "Get it on %(date)s"
    ],
    "Rec\u00edbelo en %(days)s d\u00eda laborable": [
      "Receive it within %(days)s working day",
      "Receive it within %(days)s working days"
    ],
    "Reset": "Reset",
    "Responder": "Answer",
    "Selecciona una opci\u00f3n": "Select an option",
    "Solo puede generar una exportaci\u00f3n a la vez, espere a que acaben de generarse las pendientes.": "You can only generate one export at a time, wait until the slopes have just been generated.",
    "S\u00ed": "Yes",
    "Te has autenticado como %(username)s": "You have authenticated as %(username)s",
    "Tienes cambios pendientes. \u00bfSeguro que quieres salir sin guardar?": "You have pending changes Are you sure you want to exit without saving?",
    "Todos": "Everyone",
    "Traducciones de atributos finalizadas": "Attribute translations completed",
    "Traducciones de categorias finalizadas": "Translations of finished categories",
    "Traducciones de combinaciones finalizadas": "Translations of finished combinations",
    "Traducciones de marcas finalizadas": "Completed Trademark Translations",
    "Traducciones de noticias finalizadas": "Completed news translations",
    "Traducciones de productos finalizadas": "Translations of finished products",
    "Traducciones de subtiendas finalizadas": "Translations of completed sub-stores",
    "Traducciones de valores de atributo finalizadas": "Completed attribute value translations",
    "Traducciones finalizadas": "Translations completed",
    "Ya hay un pedido para ese proveedor.": "There is already an order for that supplier.",
    "d\u00eda": [
      "day",
      "days"
    ],
    "hoy": "today",
    "ma\u00f1ana": "morning",
    "seleccionado(s)": "selected (s)",
    "\u00bfEst\u00e1s seguro?": "Are you sure?"
  };
  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": "N j, Y, P",
    "DATETIME_INPUT_FORMATS": [
      "%Y-%m-%d %H:%M:%S",
      "%Y-%m-%d %H:%M:%S.%f",
      "%Y-%m-%d %H:%M",
      "%Y-%m-%d",
      "%m/%d/%Y %H:%M:%S",
      "%m/%d/%Y %H:%M:%S.%f",
      "%m/%d/%Y %H:%M",
      "%m/%d/%Y",
      "%m/%d/%y %H:%M:%S",
      "%m/%d/%y %H:%M:%S.%f",
      "%m/%d/%y %H:%M",
      "%m/%d/%y"
    ],
    "DATE_FORMAT": "N j, Y",
    "DATE_INPUT_FORMATS": [
      "%Y-%m-%d",
      "%m/%d/%Y",
      "%m/%d/%y"
    ],
    "DECIMAL_SEPARATOR": ".",
    "FIRST_DAY_OF_WEEK": 0,
    "MONTH_DAY_FORMAT": "F j",
    "NUMBER_GROUPING": 3,
    "SHORT_DATETIME_FORMAT": "m/d/Y P",
    "SHORT_DATE_FORMAT": "m/d/Y",
    "THOUSAND_SEPARATOR": ",",
    "TIME_FORMAT": "P",
    "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));

