

(function (globals) {

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

  
  django.pluralidx = function (count) { return (count == 1) ? 0 : 1; };
  

  
  /* gettext library */

  django.catalog = {
    "%(arrival_date)s to %(departure_date)s with a margin of %(fuzzy_days)s days.": "%(arrival_date)s -  %(departure_date)s avec une marge de %(fuzzy_days)s jours avant ou apr\u00e8s.", 
    "*) The rental rates shown on this page are based on a party of %(adults)s adults and %(children)s children. Current discounts are already included in this price. Reservation fee \u20ac20,-. The total price for your holiday can be found in your reservation overview during the booking process, before you make a final reservation.": "*) Les prix publi\u00e9s sur cette page sont bas\u00e9s sur un groupe de %(children)s adultes et %(adults)s enfants. La r\u00e9duction propos\u00e9e est d\u00e9j\u00e0 incluse dans le prix. Viennent s'ajouter les frais de r\u00e9servation de 20\u20ac. Le montant total de vos vacances est indiqu\u00e9 dans l'aper\u00e7u de r\u00e9servation, avant de valider votre commande.", 
    "Aankomstdatum": "Date d'arriv\u00e9e", 
    "Aantal dagen eerder of later": "Flexibilit\u00e9 +/- ", 
    "Accommodatie": "H\u00e9bergement", 
    "Book now": "R\u00e9server", 
    "CHF": "CHF", 
    "CZK": "CZK", 
    "Criteria waarop je aan het zoeken bent:": "Vos crit\u00e8res :", 
    "DKK": "DKK", 
    "Doorgaan": "Suivant", 
    "EUR": "\u20ac", 
    "HRK": "HRK", 
    "More info": "Plus d'info", 
    "Nights": "Nuits", 
    "No results found. Please adjust your search criteria": "Malheureusement, il n'y a plus de disponibilit\u00e9s \u00e0 vos dates. Nous vous invitons \u00e0 les modifier ou \u00e0 r\u00e9server sur un autre camping Iris Parc.", 
    "Period": "Periode", 
    "Pitch prices are based on a party of %(adults)s adults and %(children)s children.": "Prix des h\u00e9bergement bas\u00e9s sur un groupe de %(adults)s adultes et %(children)s enfants.", 
    "Price": "Prix*", 
    "Price information": "Information sur les prix", 
    "Verblijfsperiode": "P\u00e9riode de s\u00e9jour", 
    "Vertrekdatum": "Date de d\u00e9part", 
    "Zoek opties": "Choix et r\u00e9servation", 
    "cannot add accommodations from two different campings": "Malheureusement, il n'est pas possible de placer deux campings diff\u00e9rents en une seule r\u00e9servation. Pour s\u00e9lectionner un autre camping, vous devez supprimer l'actuel de la r\u00e9servation. Nous vous prions de bien vouloir nous excuser pour ce d\u00e9sagr\u00e9ment.", 
    "now": " ", 
    "was": "au lieu de"
  };

  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:%S", 
      "%d/%m/%Y %H:%M:%S.%f", 
      "%d/%m/%Y %H:%M", 
      "%d/%m/%Y", 
      "%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": "j F Y", 
    "DATE_INPUT_FORMATS": [
      "%d/%m/%Y", 
      "%d/%m/%y", 
      "%d.%m.%Y", 
      "%d.%m.%y", 
      "%Y-%m-%d"
    ], 
    "DECIMAL_SEPARATOR": ",", 
    "FIRST_DAY_OF_WEEK": "1", 
    "MONTH_DAY_FORMAT": "j F", 
    "NUMBER_GROUPING": "3", 
    "SHORT_DATETIME_FORMAT": "j N Y H:i", 
    "SHORT_DATE_FORMAT": "j N Y", 
    "THOUSAND_SEPARATOR": "\u00a0", 
    "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;

}(this));

