Removed spaces after 'function' in jsi18n
This commit is contained in:
parent
6bb2175ed6
commit
d94449f37a
|
@ -77,12 +77,12 @@ def get_formats():
|
||||||
|
|
||||||
js_catalog_template = r"""
|
js_catalog_template = r"""
|
||||||
{% autoescape off %}
|
{% autoescape off %}
|
||||||
(function (globals) {
|
(function(globals) {
|
||||||
|
|
||||||
var django = globals.django || (globals.django = {});
|
var django = globals.django || (globals.django = {});
|
||||||
|
|
||||||
{% if plural %}
|
{% if plural %}
|
||||||
django.pluralidx = function (n) {
|
django.pluralidx = function(n) {
|
||||||
var v={{ plural }};
|
var v={{ plural }};
|
||||||
if (typeof(v) == 'boolean') {
|
if (typeof(v) == 'boolean') {
|
||||||
return v ? 1 : 0;
|
return v ? 1 : 0;
|
||||||
|
@ -91,7 +91,7 @@ js_catalog_template = r"""
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
{% else %}
|
{% else %}
|
||||||
django.pluralidx = function (count) { return (count == 1) ? 0 : 1; };
|
django.pluralidx = function(count) { return (count == 1) ? 0 : 1; };
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
/* gettext library */
|
/* gettext library */
|
||||||
|
@ -105,7 +105,7 @@ js_catalog_template = r"""
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
if (!django.jsi18n_initialized) {
|
if (!django.jsi18n_initialized) {
|
||||||
django.gettext = function (msgid) {
|
django.gettext = function(msgid) {
|
||||||
var value = django.catalog[msgid];
|
var value = django.catalog[msgid];
|
||||||
if (typeof(value) == 'undefined') {
|
if (typeof(value) == 'undefined') {
|
||||||
return msgid;
|
return msgid;
|
||||||
|
@ -114,7 +114,7 @@ js_catalog_template = r"""
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
django.ngettext = function (singular, plural, count) {
|
django.ngettext = function(singular, plural, count) {
|
||||||
var value = django.catalog[singular];
|
var value = django.catalog[singular];
|
||||||
if (typeof(value) == 'undefined') {
|
if (typeof(value) == 'undefined') {
|
||||||
return (count == 1) ? singular : plural;
|
return (count == 1) ? singular : plural;
|
||||||
|
@ -123,9 +123,9 @@ js_catalog_template = r"""
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
django.gettext_noop = function (msgid) { return msgid; };
|
django.gettext_noop = function(msgid) { return msgid; };
|
||||||
|
|
||||||
django.pgettext = function (context, msgid) {
|
django.pgettext = function(context, msgid) {
|
||||||
var value = django.gettext(context + '\x04' + msgid);
|
var value = django.gettext(context + '\x04' + msgid);
|
||||||
if (value.indexOf('\x04') != -1) {
|
if (value.indexOf('\x04') != -1) {
|
||||||
value = msgid;
|
value = msgid;
|
||||||
|
@ -133,7 +133,7 @@ js_catalog_template = r"""
|
||||||
return value;
|
return value;
|
||||||
};
|
};
|
||||||
|
|
||||||
django.npgettext = function (context, singular, plural, count) {
|
django.npgettext = function(context, singular, plural, count) {
|
||||||
var value = django.ngettext(context + '\x04' + singular, context + '\x04' + plural, count);
|
var value = django.ngettext(context + '\x04' + singular, context + '\x04' + plural, count);
|
||||||
if (value.indexOf('\x04') != -1) {
|
if (value.indexOf('\x04') != -1) {
|
||||||
value = django.ngettext(singular, plural, count);
|
value = django.ngettext(singular, plural, count);
|
||||||
|
@ -141,7 +141,7 @@ js_catalog_template = r"""
|
||||||
return value;
|
return value;
|
||||||
};
|
};
|
||||||
|
|
||||||
django.interpolate = function (fmt, obj, named) {
|
django.interpolate = function(fmt, obj, named) {
|
||||||
if (named) {
|
if (named) {
|
||||||
return fmt.replace(/%\(\w+\)s/g, function(match){return String(obj[match.slice(2,-2)])});
|
return fmt.replace(/%\(\w+\)s/g, function(match){return String(obj[match.slice(2,-2)])});
|
||||||
} else {
|
} else {
|
||||||
|
@ -154,7 +154,7 @@ js_catalog_template = r"""
|
||||||
|
|
||||||
django.formats = {{ formats_str }};
|
django.formats = {{ formats_str }};
|
||||||
|
|
||||||
django.get_format = function (format_type) {
|
django.get_format = function(format_type) {
|
||||||
var value = django.formats[format_type];
|
var value = django.formats[format_type];
|
||||||
if (typeof(value) == 'undefined') {
|
if (typeof(value) == 'undefined') {
|
||||||
return format_type;
|
return format_type;
|
||||||
|
|
Loading…
Reference in New Issue