'use strict'; { const globals = this; const django = globals.django || (globals.django = {}); django.pluralidx = function(n) { const v = (n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2; if (typeof v === 'boolean') { return v ? 1 : 0; } else { return v; } }; /* gettext library */ django.catalog = django.catalog || {}; const newcatalog = { "%(num)s error": [ "%(num)s erreur", "%(num)s erreurs", "%(num)s erreurs" ], "%(num)s min": [ "%(num)s min", "%(num)s mins", "%(num)s mins" ], "%(num)s pixel": [ "%(num)s pixel", "%(num)s pixels", "%(num)s pixels" ], "%(time_zone_option)s: %(localized_time_zone_label)s": "%(time_zone_option)s : %(localized_time_zone_label)s", "(%(number)s new items in this menu)": "(%(number)s nouvel \u00e9l\u00e9ment dans ce menu)", "(1 new item in this menu)": "(1 nouvel \u00e9l\u00e9ment dans ce menu)", "(New)": "(Nouveau)", "Actions": "Actions", "Add a comment": "Ajouter un commentaire", "Alt text": "Texte alternatif", "Are you sure?": "\u00cates-vous s\u00fbr(e)\u00a0?", "Blocks": "Blocs", "Broken link": "Lien mort", "Cancel": "Annuler", "Character count:": "Nombre de caract\u00e8res \u00a0:", "Close": "Fermer", "Collapse all": "Tout replier", "Comment": "Commenter", "Dashboard": "Tableau de bord", "Decorative image": "Image d\u00e9corative", "Delete": "Supprimer", "Delete error": "Supprimer l'erreur", "Deleting": "Suppression\u2026", "Edit": "Modifier", "Edit '%(title)s'": "Modifier '%(title)s'", "Enter your comments...": "Entrez votre commentaire\u2026", "Enter your reply...": "Entrez votre r\u00e9ponse\u2026", "Error while sending preview data.": "Une erreur est survenue lors de l'envoi des donn\u00e9es de pr\u00e9visualisation.", "Expand all": "Tout d\u00e9plier", "Focus comment": "Mettre le commentaire au premier-plan", "Horizontal line": "Ligne horizontale", "Insert a block": "Ins\u00e9rer un bloc", "Line break": "Retour \u00e0 la ligne", "Loading\u2026": "Chargement\u2026", "Main menu": "Menu principal", "Missing document": "Document manquant", "More actions": "Plus d'actions", "No": "Non", "No results": "Aucun r\u00e9sultat", "Page": "Page", "Page explorer": "Explorateur", "Pages": "Pages", "Pin toolbar": "\u00c9pingler la barre d'outils", "Preview": "Pr\u00e9visualiser", "Reload saved content": "Recharger le contenu enregistr\u00e9", "Reload the page": "Recharger la page", "Reply": "R\u00e9pondre", "Report this error to your website administrator with the following information:": "Signalez cette erreur \u00e0 votre webmaster avec les informations suivantes\u00a0:", "Resolve": "Archiver", "Retry": "R\u00e9essayer", "Save": "Enregistrer", "Save error": "Enregistrer l'erreur", "Save the page to add this comment": "Enregistrer la page pour ajouter ce commentaire", "Save the page to save this comment": "Enregistrer la page pour enregistrer ce commentaire", "Save the page to save this reply": "Enregistrer la page pour enregistrer ce commentaire", "Saving...": "Enregistrement\u2026", "Search": "Rechercher", "Search options\u2026": "Options de recherche\u2026", "See all": "Tout voir", "Server Error": "Erreur de serveur", "Show error": "Afficher l\u2019erreur", "Show latest content": "Montrer le dernier contenu", "Split block": "Scinder le bloc", "The editor just crashed. Content has been reset to the last saved version.": "L\u2019\u00e9diteur a rencontr\u00e9 un probl\u00e8me. Le contenu a \u00e9t\u00e9 r\u00e9initialis\u00e9 \u00e0 la derni\u00e8re version enregistr\u00e9e.", "The maximum number of items is %(max_num)d": "Le nombre maximum d'\u00e9l\u00e9ments est %(max_num)d", "The minimum number of items is %(min_num)d": "Le nombre minimum d'\u00e9l\u00e9ments est %(min_num)d", "This field is required.": "Ce champ est requis.", "Toggle section": "Afficher/masquer la section", "Toggle side panel": "Afficher/masquer le panneau lat\u00e9ral", "Toggle sidebar": "Afficher/masquer la barre lat\u00e9rale", "Unfocus comment": "Mettre le commentaire en arri\u00e8re-plan", "Unpin toolbar": "D\u00e9s\u00e9pingler la barre d'outils", "View child pages of '%(title)s'": "Voir les sous-pages de '%(title)s'", "Write something or type \u2018/\u2019 to insert a block": "\u00c9crivez quelque chose ou tapez \u00ab\u00a0/\u00a0\u00bb pour ins\u00e9rer un bloc", "Yes": "Oui" }; for (const key in newcatalog) { django.catalog[key] = newcatalog[key]; } if (!django.jsi18n_initialized) { django.gettext = function(msgid) { const value = django.catalog[msgid]; if (typeof value === 'undefined') { return msgid; } else { return (typeof value === 'string') ? value : value[0]; } }; django.ngettext = function(singular, plural, count) { const 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) { let value = django.gettext(context + '\x04' + msgid); if (value.includes('\x04')) { value = msgid; } return value; }; django.npgettext = function(context, singular, plural, count) { let value = django.ngettext(context + '\x04' + singular, context + '\x04' + plural, count); if (value.includes('\x04')) { 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", "%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", "%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": "\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) { const 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; } };