aboutsummaryrefslogtreecommitdiff
path: root/client-web/source
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2024-04-03 17:02:15 +0200
committermetamuffin <metamuffin@disroot.org>2024-04-03 17:02:15 +0200
commit93d09d0aaef7586389daa360c1a361e915c4a228 (patch)
tree7aac353617952819d49b89eab28b9080759aa956 /client-web/source
parent4903ef899abb88148a0835b5bde69f6de5a69a98 (diff)
downloadkeks-meet-93d09d0aaef7586389daa360c1a361e915c4a228.tar
keks-meet-93d09d0aaef7586389daa360c1a361e915c4a228.tar.bz2
keks-meet-93d09d0aaef7586389daa360c1a361e915c4a228.tar.zst
maybe autogen languages
Diffstat (limited to 'client-web/source')
-rw-r--r--client-web/source/locale/ja.ts13
-rw-r--r--client-web/source/locale/mod.ts2
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 {