Update locales [skip ci]

This commit is contained in:
Raphael Michel
2021-05-13 10:17:39 +02:00
parent 5764a05581
commit 7ab2132502
61 changed files with 27879 additions and 25444 deletions

View File

@@ -1,8 +1,9 @@
(function(globals) {
var django = globals.django || (globals.django = {});
'use strict';
{
const globals = this;
const django = globals.django || (globals.django = {});
django.pluralidx = function(count) { return (count == 1) ? 0 : 1; };
@@ -15,17 +16,17 @@
if (!django.jsi18n_initialized) {
django.gettext = function(msgid) {
var value = django.catalog[msgid];
if (typeof(value) == 'undefined') {
const value = django.catalog[msgid];
if (typeof value === 'undefined') {
return msgid;
} else {
return (typeof(value) == 'string') ? value : value[0];
return (typeof value === 'string') ? value : value[0];
}
};
django.ngettext = function(singular, plural, count) {
var value = django.catalog[singular];
if (typeof(value) == 'undefined') {
const value = django.catalog[singular];
if (typeof value === 'undefined') {
return (count == 1) ? singular : plural;
} else {
return value.constructor === Array ? value[django.pluralidx(count)] : value;
@@ -35,16 +36,16 @@
django.gettext_noop = function(msgid) { return msgid; };
django.pgettext = function(context, msgid) {
var value = django.gettext(context + '\x04' + msgid);
if (value.indexOf('\x04') != -1) {
let value = django.gettext(context + '\x04' + msgid);
if (value.includes('\x04')) {
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) {
let value = django.ngettext(context + '\x04' + singular, context + '\x04' + plural, count);
if (value.includes('\x04')) {
value = django.ngettext(singular, plural, count);
}
return value;
@@ -67,15 +68,13 @@
"%Y-%m-%d %H:%M:%S",
"%Y-%m-%d %H:%M:%S.%f",
"%Y-%m-%d %H:%M",
"%Y-%m-%d",
"%m/%d/%Y %H:%M:%S",
"%m/%d/%Y %H:%M:%S.%f",
"%m/%d/%Y %H:%M",
"%m/%d/%Y",
"%m/%d/%y %H:%M:%S",
"%m/%d/%y %H:%M:%S.%f",
"%m/%d/%y %H:%M",
"%m/%d/%y"
"%Y-%m-%d"
],
"DATE_FORMAT": "N j, Y",
"DATE_INPUT_FORMATS": [
@@ -100,8 +99,8 @@
};
django.get_format = function(format_type) {
var value = django.formats[format_type];
if (typeof(value) == 'undefined') {
const value = django.formats[format_type];
if (typeof value === 'undefined') {
return format_type;
} else {
return value;
@@ -120,6 +119,5 @@
django.jsi18n_initialized = true;
}
}(this));
};