There was an error while loading. Please reload this page.
1 parent 7b060e1 commit ae95614Copy full SHA for ae95614
src/lang/index.ts
@@ -4,6 +4,7 @@ import {isDev} from "../lib/env";
4
import source from "./source.json";
5
import enUS from "./en-US.json";
6
import zhCN from "./zh-CN.json";
7
+import jaJP from "./ja-JP.json";
8
9
let localeInit = false;
10
export const defaultLocale = "zh-CN";
@@ -19,6 +20,11 @@ export const messageList = [
19
20
label: "简体中文",
21
messages: zhCN,
22
},
23
+ {
24
+ name: "ja-JP",
25
+ label: "日本語",
26
+ messages: jaJP,
27
+ },
28
];
29
30
const buildMessages = (): any => {
0 commit comments