Skip to content

Commit

Permalink
表示言語が設定されてない場合、ブラウザの言語と関係なく日本語にする (#175)
Browse files Browse the repository at this point in the history
  • Loading branch information
u1-liquid authored Oct 6, 2023
1 parent a296a35 commit e695c60
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 18 deletions.
18 changes: 2 additions & 16 deletions packages/backend/src/server/web/boot.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,17 +34,9 @@

//#region Detect language & fetch translations
if (!localStorage.hasOwnProperty('locale')) {
const supportedLangs = LANGS;
let lang = localStorage.getItem('lang');
if (lang == null || !supportedLangs.includes(lang)) {
if (supportedLangs.includes(navigator.language)) {
lang = navigator.language;
} else {
lang = supportedLangs.find(x => x.split('-')[0] === navigator.language);

// Fallback
if (lang == null) lang = 'en-US';
}
if (lang == null || lang.toString == null || lang.toString() === 'null') {
lang = 'ja-JP';
}

const metaRes = await window.fetch('/api/meta', {
Expand All @@ -67,12 +59,6 @@
return;
}

// for https://github.com/misskey-dev/misskey/issues/10202
if (lang == null || lang.toString == null || lang.toString() === 'null') {
console.error('invalid lang value detected!!!', typeof lang, lang);
lang = 'en-US';
}

const localRes = await window.fetch(`/assets/locales/${lang}.${v}.json`);
if (localRes.status === 200) {
localStorage.setItem('lang', lang);
Expand Down
2 changes: 1 addition & 1 deletion packages/frontend/src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export const hostname = address.hostname;
export const url = address.origin;
export const apiUrl = url + '/api';
export const wsUrl = url.replace('http://', 'ws://').replace('https://', 'wss://') + '/streaming';
export const lang = miLocalStorage.getItem('lang') ?? 'en-US';
export const lang = miLocalStorage.getItem('lang') ?? 'ja-JP';
export const langs = _LANGS_;
const preParseLocale = miLocalStorage.getItem('locale');
export let locale = preParseLocale ? JSON.parse(preParseLocale) : null;
Expand Down
2 changes: 1 addition & 1 deletion packages/sw/src/scripts/lang.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class SwLang {
public cacheName = `mk-cache-${_VERSION_}`;

public lang: Promise<string> = get('lang').then(async prelang => {
if (!prelang) return 'en-US';
if (!prelang) return 'ja-JP';
return prelang;
});

Expand Down

0 comments on commit e695c60

Please sign in to comment.