diff options
Diffstat (limited to 'client-web/source/locale')
-rw-r--r-- | client-web/source/locale/ja.ts | 13 | ||||
-rw-r--r-- | client-web/source/locale/mod.ts | 2 |
2 files changed, 15 insertions, 0 deletions
diff --git a/client-web/source/locale/ja.ts b/client-web/source/locale/ja.ts new file mode 100644 index 0000000..4925667 --- /dev/null +++ b/client-web/source/locale/ja.ts @@ -0,0 +1,13 @@ + + +/* + This file is part of keks-meet (https://codeberg.org/metamuffin/keks-meet) + which is licensed under the GNU Affero General Public License (version 3); see /COPYING. + Copyright (C) 2024 metamuffin <metamuffin.org> +*/ +import { LanguageStrings } from "./mod.ts"; + +// @ts-ignore +export const PO_JA_JA: LanguageStrings = { + +} diff --git a/client-web/source/locale/mod.ts b/client-web/source/locale/mod.ts index 55aa79d..0f5fc77 100644 --- a/client-web/source/locale/mod.ts +++ b/client-web/source/locale/mod.ts @@ -1,6 +1,7 @@ import { PO_DE_DE } from "./de.ts"; import { PO_EN_US } from "./en.ts"; import { PREF_DECLS } from "../preferences/decl.ts"; +import { PO_JA_JA } from "./ja.ts"; export let PO: LanguageStrings; @@ -16,6 +17,7 @@ export const LOCALES: { [key: string]: LanguageStrings } = { "en-GB": PO_EN_US, // close enough "de": PO_DE_DE, "de-DE": PO_DE_DE, + "ja-JA": PO_JA_JA, } export interface LanguageStrings { |