diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2020-12-26 15:27:39 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2020-12-26 15:27:39 +0900 |
| commit | c6cfc3f9083c88d4f5c722cf0972ad5aaa1d3fda (patch) | |
| tree | c6efd8784a305bcc46a55d5549edf7b174fd89db /src/client/sw | |
| parent | 翻訳ファイルをランタイムで読み込み (diff) | |
| download | misskey-c6cfc3f9083c88d4f5c722cf0972ad5aaa1d3fda.tar.gz misskey-c6cfc3f9083c88d4f5c722cf0972ad5aaa1d3fda.tar.bz2 misskey-c6cfc3f9083c88d4f5c722cf0972ad5aaa1d3fda.zip | |
fix locale handling
Diffstat (limited to 'src/client/sw')
| -rw-r--r-- | src/client/sw/i18n.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/client/sw/i18n.ts b/src/client/sw/i18n.ts index 524a205b2f..9b3e3b2f4d 100644 --- a/src/client/sw/i18n.ts +++ b/src/client/sw/i18n.ts @@ -1,3 +1,5 @@ import { I18n } from '@/i18n'; -export const i18n = new I18n(_LOCALE_); +export const i18n = new I18n({ + // TODO +}); |