

(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 = {
    "%(num)s allowed. Registrations do not count towards the limit of %(total)s.": "%(num)s disponible. Inscripciones no cuentan dentro del l\u00edmite %(total)s.", 
    "%(num)s of the %(total)s can be this type": "%(num)s de %(total)s pueden utilizarse para este tipo", 
    "All Venues": "Todas las Sedes", 
    "An error occurred.  Please check your input and try again.": "Se ha producido un error. Por favor, revise la informaci\u00f3n entrada e int\u00e9ntelo de nuevo.", 
    "An error occurred.  Please try again.": "Se ha producido un error. Por favor, int\u00e9ntelo de nuevo.", 
    "Any Instructor": "Cualquier Instructor", 
    "CVC": "CVC", 
    "Choose File": "Seleccionar Fichero", 
    "Copied!": "\u00a1Copiado!", 
    "Error": "Error", 
    "Errors found.": "Errores encontrados.", 
    "Find a customer": "Buscar cliente", 
    "Find a provider": "Encontrar un proveedor", 
    "Full": "Completo", 
    "Full (%s person)": [
      "Full (%s person)", 
      "Full (%s people)"
    ], 
    "Loading the sessions on those days...": "Instalaci\u00f3n de las sesiones de los d\u00edas ...", 
    "Loading...": "Cargando ...", 
    "OK": "OK", 
    "Open": "Abierto", 
    "Please double check the %(field)s, it doesn't look right.": "Por favor, vuelva a comprobar el campo %(field)s, No parece correcto.", 
    "Processing your registration...": "Procesando la inscripci\u00f3n ...", 
    "Registrations count towards the limit of %(num_allowed)s.": "Inscripciones cuentan dentro del l\u00edmite de %(num_allowed)s.", 
    "There is %s person on the waitlist": [
      "There is %s person on the waitlist", 
      "There are %s people on the waitlist"
    ], 
    "This is the only limit that applies to this type.": "Este es el \u00fanico l\u00edmite para este tipo de clase.", 
    "Unlimited": "Ilimitado", 
    "Variable": "Variable", 
    "Waitlist": "Lista de Espera", 
    "Waitlist active with %s person already on it.": [
      "Waitlist active with %s person already on it.", 
      "Waitlist active with %s people already on it."
    ], 
    "Waitlist active with no one on it.": "Lista de Espera activa con nadie en ella.", 
    "Weeks": "Semanas", 
    "card number": "N\u00famero Tarjeta", 
    "cardholder name": "Nombre del Titular", 
    "enter a number": "entre un n\u00famero", 
    "enter a number between 0 and 100": "entre un n\u00famero entre 0 y 100", 
    "enter a time (e.g. 5pm)": "entre un hora (ej. 5pm)", 
    "expiration date": "Fecha de vencimiento", 
    "loading": "recuperando", 
    "price has to be a non-negative number": "el precio no puede ser negativo", 
    "separate from the %(num)s": "a parte de %(num)s", 
    "this field is required": "Este campo es obligatorio", 
    "unlimited registrations from %(num)s type(s)": "Inscripciones ilimitadas para %(num)s tipo(s)", 
    "within the %(num)s": "dentro de %(num)s"
  };
  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": "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": "1", 
    "JAVASCRIPT_12_HOUR_TIME": "true", 
    "JAVASCRIPT_DATEPICKER_DAY_OF_MONTH_FORMAT": "M dd", 
    "JAVASCRIPT_DATEPICKER_DAY_OF_WEEK_FORMAT": "D M d", 
    "JAVASCRIPT_DATEPICKER_LOCALE": "", 
    "JAVASCRIPT_DATETIME_FORMAT": "ddd MMM d h tt", 
    "JAVASCRIPT_DATE_FORMAT": "mm/dd/yy", 
    "JAVASCRIPT_DAY_OF_WEEK_FORMAT": "ddd MMM d", 
    "JAVASCRIPT_HOUR_FORMAT": "h tt", 
    "JAVASCRIPT_LONG_DATETIME_FORMAT": "ddd d MMM h:mm tt", 
    "JAVASCRIPT_MOMENT_DATE_FORMAT": "MMM DD YYYY", 
    "JAVASCRIPT_TIME_FORMAT": "h:mm tt", 
    "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": [
      "%I:%M %p", 
      "%I:%M%p"
    ], 
    "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));

