mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-13 13:37:31 -07:00
Fix bug
This commit is contained in:
parent
8286080c11
commit
8de7efa5b2
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@ const locales = langs
|
|||
case 'ja-JP': return [lang, locale];
|
||||
case 'en-US': return [lang, { ...locales['ja-JP'], ...locale }];
|
||||
default: return [lang, {
|
||||
(lang.startsWith('ja-') ? {} : ...locales['en-US']),
|
||||
...(lang.startsWith('ja-') ? {} : locales['en-US']),
|
||||
...locales['ja-JP'],
|
||||
...locale
|
||||
}];
|
||||
|
|
Loading…
Reference in a new issue