'use strict'; { const globals = this; const django = globals.django || (globals.django = {}); django.pluralidx = function(n) { const v = (n != 1); if (typeof v === 'boolean') { return v ? 1 : 0; } else { return v; } }; /* gettext library */ django.catalog = django.catalog || {}; const newcatalog = { "%(num)s error": [ "%(num)s Fehler", "%(num)s Fehler" ], "%(num)s min": [ "%(num)s Min.", "%(num)s Min." ], "%(num)s pixel": [ "%(num)s Pixel", "%(num)s Pixel" ], "(%(number)s new items in this menu)": "(%(number)s neue Elemente in diesem Men\u00fc)", "(1 new item in this menu)": "(1 neues Element in diesem Men\u00fc)", "(New)": "(Neu)", "Actions": "Aktionen", "Add a comment": "Einen Kommentar hinzuf\u00fcgen", "Alt text": "Alternativtext", "Are you sure?": "Sind Sie sicher?", "Blocks": "Bl\u00f6cke", "Broken link": "Defekter Link", "Cancel": "Abbrechen", "Character count:": "Zeichenanzahl:", "Close": "Schlie\u00dfen", "Collapse all": "Alle einklappen", "Comment": "Kommentar", "Dashboard": "Dashboard", "Decorative image": "Dekoratives Bild", "Delete": "L\u00f6schen", "Delete error": "Fehler l\u00f6schen", "Deleting": "Wird gel\u00f6scht", "Edit": "Bearbeiten", "Edit '%(title)s'": "\u201a%(title)s\u2018 bearbeiten", "Enter your comments...": "Geben Sie Ihre Kommentare ein...", "Enter your reply...": "Geben Sie Ihre Antwort ein...", "Error while sending preview data.": "Fehler beim Senden der Vorschaudaten.", "Expand all": "Alle ausklappen", "Focus comment": "Kommentar fokussieren", "Horizontal line": "Horizontale Linie", "Insert a block": "Einen Block einf\u00fcgen", "Line break": "Zeilenumbruch", "Loading\u2026": "Laden...", "Main menu": "Hauptmen\u00fc", "Missing document": "Fehlendes Dokument", "More actions": "Mehr Aktionen", "No": "Nein", "No results": "Keine Ergebnisse", "Page": "Seite", "Page explorer": "Seiten\u00fcbersicht", "Pages": "Seiten", "Pin toolbar": "Werkzeugleiste anheften", "Preview": "Vorschau", "Reload saved content": "Gespeicherten Inhalt erneut laden", "Reload the page": "Seite erneut laden", "Reply": "Antworten", "Report this error to your website administrator with the following information:": "Melden Sie diesen Fehler Ihrem Webseitenadministrator mit der folgenden Information:", "Resolve": "L\u00f6sen", "Retry": "Wiederholen", "Save": "Speichern", "Save error": "Fehler speichern", "Save the page to add this comment": "Speichern Sie die Seite um den Kommentar hinzuzuf\u00fcgen", "Save the page to save this comment": "Speichern Sie die Seite um den Kommentar zu speichern", "Save the page to save this reply": "Speichern Sie die Seite um diese Antwort zu speichern", "Saving...": "Speichern...", "Search": "Suche", "Search options\u2026": "Suchoptionen\u2026", "See all": "Alles einsehen", "Server Error": "Server-Fehler", "Show error": "Fehler anzeigen", "Show latest content": "Aktuellen Inhalt anzeigen", "Split block": "Block teilen", "The editor just crashed. Content has been reset to the last saved version.": "Der Texteditor ist abgest\u00fcrzt. Der Inhalt wurde auf die zuletzt gespeicherte Version zur\u00fcckgesetzt.", "The maximum number of items is %(max_num)d": "Die maximale Anzahl an Elementen ist %(max_num)d", "The minimum number of items is %(min_num)d": "Die minimale Anzahl an Elementen ist %(min_num)d", "This field is required.": "Dieses Feld ist erforderlich.", "Toggle section": "Abschnitt ein-/ausblenden", "Toggle side panel": "Seitenleiste ein-/ausblenden", "Toggle sidebar": "Seitenleiste ein-/ausblenden", "Unfocus comment": "Fokussierung des Kommentars aufheben", "Unpin toolbar": "Werkzeugleiste l\u00f6sen", "View child pages of '%(title)s'": "Unterseiten von \u201a%(title)s\u2018 anzeigen", "Write something or type \u2018/\u2019 to insert a block": "Schreiben Sie etwas oder geben Sie \u201e/\u201c ein, um einen Block einzuf\u00fcgen", "Yes": "Ja" }; 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": ".", "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; } };