File tree 2 files changed +17
-0
lines changed
2 files changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ import i18next, { init } from "i18next"
2
2
import * as en from "./locales/en.json"
3
3
import * as th from "./locales/th.json"
4
4
import * as zhCn from "./locales/zh-cn.json"
5
+ import * as ja from "./locales/ja.json"
5
6
init ( {
6
7
lng : "en" ,
7
8
fallbackLng : "en" , // language to use if translations in user language are not available.
18
19
th : {
19
20
translation : th ,
20
21
} ,
22
+ ja : {
23
+ translation : ja ,
24
+ } ,
21
25
} ,
22
26
} )
23
27
Original file line number Diff line number Diff line change
1
+ {
2
+ "LOGIN_TITLE" : " {{app}} ログイン" ,
3
+ "LOGIN_BELOW" : " 以下によりログインしてください。" ,
4
+ "WELCOME" : " ようこそ {{app}} へ!" ,
5
+ "LOGIN_PASSWORD" : " パスワードは設定ファイル( {{configFile}} )を確認してください。" ,
6
+ "LOGIN_USING_ENV_PASSWORD" : " パスワードは環境変数 $PASSWORD で設定されています。" ,
7
+ "LOGIN_USING_HASHED_PASSWORD" : " パスワードは環境変数 $HASHED_PASSWORD で設定されています。" ,
8
+ "SUBMIT" : " 実行" ,
9
+ "PASSWORD_PLACEHOLDER" : " パスワード" ,
10
+ "LOGIN_RATE_LIMIT" : " ログイン制限を超えました!" ,
11
+ "MISS_PASSWORD" : " パスワードを入力してください。" ,
12
+ "INCORRECT_PASSWORD" : " パスワードが間違っています。"
13
+ }
You can’t perform that action at this time.
0 commit comments