mirror of
https://iceshrimp.dev/crimekillz/trashposs
synced 2024-11-23 01:13:48 +01:00
Fix bug
This commit is contained in:
parent
b9274a7d18
commit
c0fecda18b
@ -43,7 +43,7 @@
|
||||
if (LANGS.includes(navigator.language)) {
|
||||
lang = navigator.language;
|
||||
} else {
|
||||
lang = LANGS.find(x => x.split('-')[0] == lang);
|
||||
lang = LANGS.find(x => x.split('-')[0] == navigator.language);
|
||||
|
||||
if (lang == null) {
|
||||
// Fallback
|
||||
|
@ -30,7 +30,7 @@ export default class Replacer {
|
||||
if (text.hasOwnProperty(path)) {
|
||||
text = text[path];
|
||||
} else {
|
||||
if (this.lang === 'ja') console.warn(`path '${path}' not found`);
|
||||
if (this.lang === 'ja-JP') console.warn(`path '${path}' not found`);
|
||||
return key; // Fallback
|
||||
}
|
||||
}
|
||||
@ -46,10 +46,10 @@ export default class Replacer {
|
||||
});
|
||||
|
||||
if (error) {
|
||||
if (this.lang === 'ja') console.warn(`key '${key}' not found in '${path}'`);
|
||||
if (this.lang === 'ja-JP') console.warn(`key '${key}' not found in '${path}'`);
|
||||
return key; // Fallback
|
||||
} else if (typeof text !== 'string') {
|
||||
if (this.lang === 'ja') console.warn(`key '${key}' is not string in '${path}'`);
|
||||
if (this.lang === 'ja-JP') console.warn(`key '${key}' is not string in '${path}'`);
|
||||
return key; // Fallback
|
||||
} else {
|
||||
return text;
|
||||
|
Loading…
Reference in New Issue
Block a user