'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 = { "Actions": "Actions", "Applying editor lock": "Application du verrou d'\u00e9dition", "Cancel": "Annuler", "Change %s": "Modifier %s", "Change document": "Changer le document", "Change image": "Changer l'image", "Change page": "Changer la page", "Changed": "Modifi\u00e9(e)(s)", "Choose a %s": "Choisir un(e) %s", "Choose a document": "Choisir un document", "Choose a page": "Choisir une page", "Choose an image": "Choisir une image", "Convert to alias page": "Convertir en alias de page", "Converting to alias page": "Conversion de la page d'alias", "Delete": "Supprimer", "Download PO file": "T\u00e9l\u00e9charger un fichier PO", "Download PO file and input translations offline": "T\u00e9l\u00e9charger un fichier PO et effectuer les traductions hors-ligne", "Edit": "Modifier", "Edit this %s": "Modifier ce/cette %s", "Edit this document": "Modifier ce document", "Edit this image": "Modifier cette image", "Edit this page": "Modifier cette page", "Fetching %s information...": "R\u00e9cup\u00e9ration des informations de %s en cours.", "Fetching document information...": "R\u00e9cup\u00e9ration des informations du document en cours.", "Fetching image information...": "R\u00e9cup\u00e9ration des informations de l'image en cours.", "Fetching page information...": "R\u00e9cup\u00e9ration des informations de la page en cours.", "Lock": "Verrouiller", "Not translated": "Pas traduit", "Preview": "Pr\u00e9visualiser", "Publish in ": "Publier dans", "Publishing...": "Publication...", "Removing editor lock": "Suppression du verrou d'\u00e9dition", "Revert to %s version": "Revenir \u00e0 la version %s", "Save": "Enregistrer", "Saving...": "Enregistrement\u2026", "Server error": "Erreur du serveur", "Stop Synced translation": "Arr\u00eater la synchronisation des traductions", "Stopping Synced translation": "Arr\u00eat de la synchronisation de traduction", "There are unsaved segments. Please save or cancel them before leaving.": "Il y a des segments non enregistr\u00e9s. Veuillez les enregistrer ou les annuler avant de quitter.", "Translate": "Traduire", "Translate all missing strings with ": "Traduire toutes les cha\u00eenes manquantes avec ", "Translate with ": "Traduire avec ", "Unlock": "D\u00e9verrouiller", "Unpublish": "D\u00e9publier", "Upload PO file": "Transf\u00e9rer un fichier PO", "Upload translated PO file to submit translations": "Transf\u00e9rer un fichier PO traduit afin de mettre \u00e0 jour les traductions", "Uses %s version": "Utiliser la version %s", "[DELETED]": "[SUPPRIM\u00c9(E)]", "segments translated": "segments traduits" }; 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; } };