aboutsummaryrefslogtreecommitdiff
path: root/client-web/source/locale/mod.ts
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2024-04-03 18:08:52 +0200
committermetamuffin <metamuffin@disroot.org>2024-04-03 18:08:52 +0200
commitedbe7ad1be0a52dd4220f65d1ac98163a0a1b774 (patch)
tree01dce2d09562b0c52c6c8b370ef889fe0e057fbf /client-web/source/locale/mod.ts
parent93d09d0aaef7586389daa360c1a361e915c4a228 (diff)
downloadkeks-meet-edbe7ad1be0a52dd4220f65d1ac98163a0a1b774.tar
keks-meet-edbe7ad1be0a52dd4220f65d1ac98163a0a1b774.tar.bz2
keks-meet-edbe7ad1be0a52dd4220f65d1ac98163a0a1b774.tar.zst
autogenerate japanese translation
Diffstat (limited to 'client-web/source/locale/mod.ts')
-rw-r--r--client-web/source/locale/mod.ts19
1 files changed, 10 insertions, 9 deletions
diff --git a/client-web/source/locale/mod.ts b/client-web/source/locale/mod.ts
index 0f5fc77..7dc2992 100644
--- a/client-web/source/locale/mod.ts
+++ b/client-web/source/locale/mod.ts
@@ -1,7 +1,7 @@
-import { PO_DE_DE } from "./de.ts";
-import { PO_EN_US } from "./en.ts";
+import { PO_DE } from "./de.ts";
+import { PO_EN } from "./en.ts";
import { PREF_DECLS } from "../preferences/decl.ts";
-import { PO_JA_JA } from "./ja.ts";
+import { PO_JA } from "./ja.ts";
export let PO: LanguageStrings;
@@ -12,12 +12,13 @@ export function init_locale(lang: string) {
}
export const LOCALES: { [key: string]: LanguageStrings } = {
- "en": PO_EN_US,
- "en-US": PO_EN_US,
- "en-GB": PO_EN_US, // close enough
- "de": PO_DE_DE,
- "de-DE": PO_DE_DE,
- "ja-JA": PO_JA_JA,
+ "en": PO_EN,
+ "en-US": PO_EN,
+ "en-GB": PO_EN, // close enough
+ "de": PO_DE,
+ "de-DE": PO_DE,
+ "ja": PO_JA,
+ "ja-JP": PO_JA,
}
export interface LanguageStrings {