Compare commits

...

6 Commits

2 changed files with 21 additions and 4 deletions

View File

@ -1,7 +1,7 @@
{
"name": "strolch-wc-localize-behavior",
"description": "Strolch Polymer Localization Behavior extension",
"version": "1.1.12",
"version": "1.1.18",
"authors": [
"Franz Nieschalk",
"Robert von Burg"
@ -20,7 +20,7 @@
"homepage": "https://github.com/strolch-li/strolch-wc-localize-behavior",
"ignore": [],
"dependencies": {
"strolchjs": "strolch-li/strolchjs#^0.4.3",
"strolchjs": "strolch-li/strolchjs#^0.5.3",
"app-localize-behavior": "PolymerElements/app-localize-behavior#^1.0.2"
}

View File

@ -13,9 +13,26 @@
created: function () {
this.__computeLocalizeOld = this.__computeLocalize;
this.__computeLocalize = function (language, resources, formats) {
var localizeFunc;
if (!resources[language])
return this.__computeLocalizeOld(this.fallbackLanguage, resources, formats).bind(this);
return this.__computeLocalizeOld(language, resources, formats).bind(this);
localizeFunc = this.__computeLocalizeOld(this.fallbackLanguage, resources, formats).bind(this);
localizeFunc = this.__computeLocalizeOld(language, resources, formats).bind(this);
return function () {
var key = arguments[0];
if(!key)
return;
if (!resources || !language || !resources[language])
return key;
try {
return localizeFunc.apply(this, arguments);
} catch (e) {
console.log("Failed to translate key " + key);
console.log(e);
return key;
}
}.bind(this);
}.bind(this);
},
attached: function () {