This commit is contained in:
2020-04-19 23:18:13 +00:00
parent 683e117187
commit 7a61a76359
4 changed files with 11 additions and 9 deletions

View File

@@ -2,6 +2,10 @@
//AyaNova Translation related utilities
export default {
get(key) {
//no translation for Wiki
if (key == "Wiki") {
return "Wiki";
}
if (!window.$gz._.has(window.$gz.store.state.translationText, key)) {
return "??" + key;
}