Fix: remove message.js dependency from localization.js
This commit is contained in:
parent
acd9befc9e
commit
0e5ab44f67
|
@ -103,7 +103,11 @@ function tNodeList(nodes) {
|
||||||
|
|
||||||
function tDocLoader() {
|
function tDocLoader() {
|
||||||
t.DOMParser = new DOMParser();
|
t.DOMParser = new DOMParser();
|
||||||
t.cache = tryJSONparse(localStorage.L10N) || {};
|
try {
|
||||||
|
t.cache = JSON.parse(localStorage.L10N);
|
||||||
|
} catch (err) {
|
||||||
|
t.cache = {};
|
||||||
|
}
|
||||||
|
|
||||||
// reset L10N cache on UI language change
|
// reset L10N cache on UI language change
|
||||||
const UIlang = chrome.i18n.getUILanguage();
|
const UIlang = chrome.i18n.getUILanguage();
|
||||||
|
|
Loading…
Reference in New Issue
Block a user