Skip to content

Commit ae95614

Browse files
authored
Update index.ts
1 parent 7b060e1 commit ae95614

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/lang/index.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import {isDev} from "../lib/env";
44
import source from "./source.json";
55
import enUS from "./en-US.json";
66
import zhCN from "./zh-CN.json";
7+
import jaJP from "./ja-JP.json";
78

89
let localeInit = false;
910
export const defaultLocale = "zh-CN";
@@ -19,6 +20,11 @@ export const messageList = [
1920
label: "简体中文",
2021
messages: zhCN,
2122
},
23+
{
24+
name: "ja-JP",
25+
label: "日本語",
26+
messages: jaJP,
27+
},
2228
];
2329

2430
const buildMessages = (): any => {

0 commit comments

Comments
 (0)