From 2990e270f59d107d9e61907261c31287287618ae Mon Sep 17 00:00:00 2001 From: BrotherSharper Date: Sat, 8 Jan 2022 23:09:17 +0900 Subject: [PATCH] add japanese localization --- lang/ja.json | 43 +++++++++++++++++++++++++++++++++++++++++++ module.json | 5 +++++ 2 files changed, 48 insertions(+) create mode 100644 lang/ja.json diff --git a/lang/ja.json b/lang/ja.json new file mode 100644 index 0000000..43c854a --- /dev/null +++ b/lang/ja.json @@ -0,0 +1,43 @@ +{ + "party-overview": { + "EnablePlayerAccess": { + "Name": "PLもパーティ概要を閲覧できる", + "Hint": "パーティ概要のウィンドウをPLも閲覧できるようになります。" + }, + "SystemProvider": { + "Name": "システム設定提供元", + "choices": { + "module": "Mod{name}", + "native": "汎用", + "system": "システム{name}" + } + }, + "keybinds": { + "open": { + "name": "パーティ概要を開く", + "hint": "パーティ概要ウィンドウを開きます。" + }, + "close": { + "name": "パーティ概要を閉じる", + "hint": "パーティ概要ウィンドウを閉じます。" + }, + "toggle": { + "name": "パーティ概要切替", + "hint": "パーティ概要ウィンドウを開閉します。" + } + }, + "GENERAL": "一般", + "LIMIT": "限定", + "NAME": "名前", + "SKILLS": "技能", + "PROFICIENCIES": "習熟", + "TOTAL": "合計", + "WEALTH": "財産", + "DND5E": { + "Traits": "特徴" + }, + "PF2E": { + "EncumberedAt": "荷重境界" + } + } +} diff --git a/module.json b/module.json index ca50e92..e8e4077 100644 --- a/module.json +++ b/module.json @@ -26,6 +26,11 @@ "lang": "es", "name": "Español", "path": "lang/es.json" + }, + { + "lang": "ja", + "name": "日本語", + "path": "lang/ja.json" } ], "esmodules": ["./party-overview.js"],