'use strict'; { const globals = this; const django = globals.django || (globals.django = {}); django.pluralidx = function(n) { const v = n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5; if (typeof v === 'boolean') { return v ? 1 : 0; } else { return v; } }; /* gettext library */ django.catalog = django.catalog || {}; const newcatalog = { "Actions": "\u0627\u0644\u0646\u0634\u0627\u0637\u0627\u062a", "Alt text": "\u0646\u0635 \u0644\u0644\u0645\u0633\u0627\u0639\u062f\u0629", "Broken link": "\u0631\u0627\u0628\u0637 \u0645\u0639\u0637\u0648\u0628", "Cancel": "\u0625\u0644\u063a\u0627\u0621", "Close": "\u0627\u063a\u0644\u0627\u0642", "Comment": "\u062a\u0639\u0644\u064a\u0642", "Dashboard": "\u0644\u0648\u062d\u0629 \u0627\u0644\u062a\u062d\u0643\u0645", "Delete": "\u062d\u0630\u0641", "Edit": "\u062a\u062d\u0631\u064a\u0631", "Edit '%(title)s'": "\u062a\u062d\u0631\u064a\u0631 '%(title)s'", "Horizontal line": "\u062e\u0637 \u0627\u0641\u0642\u064a", "Line break": "\u062e\u0637 \u0641\u0635\u0644", "Loading\u2026": "\u062a\u062d\u0645\u064a\u0644...", "Missing document": "\u0645\u0633\u062a\u0646\u062f \u0645\u0641\u0642\u0648\u062f", "More actions": "\u0627\u0644\u0645\u0632\u064a\u062f \u0645\u0646 \u0627\u0644\u0625\u062c\u0631\u0627\u0621\u0627\u062a", "No results": "\u0644\u0627\u062a\u0648\u062c\u062f \u0646\u062a\u0627\u0626\u062c", "Page": "\u0635\u0641\u062d\u0629", "Page explorer": "\u0645\u0633\u062a\u0643\u0634\u0641 \u0627\u0644\u0635\u0641\u062d\u0629", "Pages": "\u0635\u0641\u062d\u0627\u062a", "Preview": "\u0646\u0638\u0631 \u0645\u0642\u062f\u0645", "Reload saved content": "\u0627\u0639\u0627\u062f\u0629 \u062a\u062d\u0645\u064a\u0644 \u0627\u0644\u0645\u062d\u062a\u0648\u0649 \u0627\u0644\u0645\u062d\u0641\u0648\u0638", "Reload the page": "\u0627\u0639\u0627\u062f\u0629 \u062a\u062d\u0645\u064a\u0644 \u0627\u0644\u0635\u0641\u062d\u0647", "Save": "\u062d\u0641\u0638", "Saving...": "\u064a\u062a\u0645 \u0627\u0644\u062d\u0641\u0638...", "Search": "\u0628\u062d\u062b", "See all": "\u0645\u0634\u0627\u0647\u062f\u0629 \u0627\u0644\u0643\u0644", "Server Error": "\u062e\u0637\u0623 \u0641\u064a \u0627\u0644\u062e\u0627\u062f\u0645", "Show error": "\u0627\u0639\u0631\u0636 \u0627\u0644\u062e\u0637\u0621", "Show latest content": "\u0627\u0638\u0647\u0631 \u0627\u062e\u0631 \u0645\u062d\u062a\u0648\u0649", "The editor just crashed. Content has been reset to the last saved version.": "\u0627\u0644\u0645\u062d\u0631\u0631 \u062a\u062d\u0637\u0645\u062a \u0644\u0644\u062a\u0648. \u062a\u0645\u062a \u0625\u0639\u0627\u062f\u0629 \u062a\u0639\u064a\u064a\u0646 \u0627\u0644\u0645\u062d\u062a\u0648\u0649 \u0625\u0644\u0649 \u0622\u062e\u0631 \u0625\u0635\u062f\u0627\u0631 \u062a\u0645 \u062d\u0641\u0638\u0647.", "The maximum number of items is %(max_num)d": "\u0627\u0644\u062d\u062f \u0627\u0644\u0623\u0642\u0635\u0649 \u0644\u0639\u062f\u062f \u0627\u0644\u0639\u0646\u0627\u0635\u0631 \u0647\u0648 %(max_num)d", "The minimum number of items is %(min_num)d": "\u0627\u0644\u062d\u062f \u0627\u0644\u0623\u062f\u0646\u0649 \u0644\u0639\u062f\u062f \u0627\u0644\u0639\u0646\u0627\u0635\u0631 \u0647\u0648 %(min_num)d", "This field is required.": "\u0647\u0630\u0647 \u0627\u0644\u062e\u0627\u0646\u0629 \u0645\u0637\u0644\u0648\u0628\u0647.", "View child pages of '%(title)s'": "\u0623\u0639\u0631\u0636 \u0627\u0644\u0635\u0641\u062d\u0627\u062a \u0627\u0644\u062a\u0627\u0628\u0639\u0629 \u0644 '%(title)s'" }; 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": "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", "%m/%d/%Y %H:%M:%S", "%m/%d/%Y %H:%M:%S.%f", "%m/%d/%Y %H:%M", "%m/%d/%y %H:%M:%S", "%m/%d/%y %H:%M:%S.%f", "%m/%d/%y %H:%M" ], "DATE_FORMAT": "j F\u060c Y", "DATE_INPUT_FORMATS": [ "%Y-%m-%d", "%m/%d/%Y", "%m/%d/%y", "%b %d %Y", "%b %d, %Y", "%d %b %Y", "%d %b, %Y", "%B %d %Y", "%B %d, %Y", "%d %B %Y", "%d %B, %Y" ], "DECIMAL_SEPARATOR": ",", "FIRST_DAY_OF_WEEK": 0, "MONTH_DAY_FORMAT": "j F", "NUMBER_GROUPING": 0, "SHORT_DATETIME_FORMAT": "m/d/Y P", "SHORT_DATE_FORMAT": "d\u200f/m\u200f/Y", "THOUSAND_SEPARATOR": ".", "TIME_FORMAT": "g:i A", "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; } };