[Fix] Added fallbackLanguage as en

This commit is contained in:
Robert von Burg 2021-09-10 08:03:01 +02:00
parent 48fce14a51
commit ee8ed5505a
2 changed files with 17 additions and 6 deletions

View File

@ -1,7 +1,7 @@
{
"name": "strolch-wc-localize-behavior",
"description": "Strolch Polymer Localization Behavior extension",
"version": "1.1.11",
"version": "1.1.12",
"authors": [
"Franz Nieschalk",
"Robert von Burg"

View File

@ -4,18 +4,29 @@
// custom behaviour accessing the configuration above
StrolchLocalizeBehaviorImpl = {
properties: {
fallbackLanguage: {
type: String,
value: "en"
}
},
created: function () {
this.__computeLocalizeOld = this.__computeLocalize;
this.__computeLocalize = function (language, resources, formats) {
if (!resources[language])
return this.__computeLocalizeOld(this.fallbackLanguage, resources, formats).bind(this);
return this.__computeLocalizeOld(language, resources, formats).bind(this);
}.bind(this);
},
attached: function () {
var locale = Strolch.getUserLocale();
//console.log("Initializing for '" + this.localName + "' for locale " + locale + " and path " + this.localesPath);
// load the language resource of the configured language
this.language = locale;
this.language = Strolch.getUserLocale();
this.useKeyIfMissing = true;
if (Strolch.isNotEmptyString(this.localesPath)) {
this.loadResources(this.resolveUrl(this.localesPath));
}
}
},
};
// inherit the behavior of the standard polymer localization