From ba6981e405e361b27d468f0ff1696f403c6201ff Mon Sep 17 00:00:00 2001 From: tsutoringo <33830878+tsutoringo@users.noreply.github.com> Date: Sun, 21 Mar 2021 11:32:59 +0900 Subject: [PATCH 1/2] Fullsuport Japanese Languages --- public/lang/ja.js | 143 ++++++++++++++++++++++++++++++++++++++++ public/lang/settings.js | 4 ++ 2 files changed, 147 insertions(+) create mode 100644 public/lang/ja.js diff --git a/public/lang/ja.js b/public/lang/ja.js new file mode 100644 index 0000000..de26c9f --- /dev/null +++ b/public/lang/ja.js @@ -0,0 +1,143 @@ +export default { + pageTitle: "BlueMap - {map}", + menu: { + title: "メニュー", + tooltip: "メニューを表示" + }, + maps: { + title: "ワールド", + button: "ワールド", + tooltip: "ワールド一覧" + }, + markers: { + title: "マーカー", + button: "マーカー", + tooltip: "マーカー一覧", + marker: "マーカー | マーカー", + markerSet: "マーカーグループ | マーカーグループ" + }, + settings: { + title: "設定", + button: "設定" + }, + goFullscreen: { + button: "フルスクリーン" + }, + resetCamera: { + button: "カメラ位置をリセット", + tooltip: "カメラ位置をリセット" + }, + updateMap: { + button: "地形情報を更新", + tooltip: "キャッシュを削除して最新情報に更新する" + }, + lighting: { + title: "明るさ", + dayNightSwitch: { + tooltip: "夜/朝を切り替え" + }, + sunlight: "時間帯", + ambientLight: "明るさ" + }, + resolution: { + title: "グラフィック品質", + high: "最高設定! (SSAA, x2)", + normal: "描画優先 (Native, x1)", + low: "処理優先 (Upscaling, x0.5)" + }, + freeFlightControls: { + title: "マウス設定", + mouseSensitivity: "マウス感度", + invertMouseY: "Y軸の反転" + }, + renderDistance: { + title: "描画距離", + hiresLayer: "高品質の距離", + lowersLayer: "低品質の距離" + }, + theme: { + title: "テーマ", + default: "デフォルト (システム / ブラウザー の設定)", + dark: "ダーク", + light: "ライト" + }, + debug: { + button: "懸賞情報の表示" + }, + resetAllSettings: { + button: "設定をリセット" + }, + players: { + title: "プレイヤー", + tooltip: "プレイヤー一覧" + }, + compass: { + tooltip: "方角 / クリックで方角をリセット" + }, + controls: { + perspective: { + button: "立体", + tooltip: "立体表示" + }, + flatView: { + button: "平面", + tooltip: "平面表示", + }, + freeFlight: { + button: "スペクテイター", + tooltip: "スペクテイターモード" + } + }, + language: { + title: "言語", + }, + blockTooltip: { + block: "ブロック", + position: "座標", + chunk: "チャンク", + region: { + region: "リージョン", + file: "ファイル" + }, + light: { + light: "明るさ", + sun: "太陽光", + block: "光源" + } + }, + info: { + title: "情報", + button: "情報", + content: ` + +

+

マウス操作:

+ + + + +
移動左クリック + ドラッグ
ズームマウスホイール (scroll)
回転 / 傾き右クリック + ドラッグ
+

+

+

キーボード操作:

+ + + + +
移動wasd / 矢印キー
ズームNumpad: +/- or Ins/Home
回転 / 傾きLeft-Alt + wasd / arrow-keys or Delete/End/Page Up/Page Down
+

+

+

タッチ操作:

+ + + + +
移動一本指でドラッグ
ズームピンチ イン/アウト
回転 / 傾き日本指でドラッグ + 回転 / 昇降
+

+

+

+ このマップはBlueMapで生成されています!♥ +

+ ` + } +} \ No newline at end of file diff --git a/public/lang/settings.js b/public/lang/settings.js index 13fa82a..eedc4c3 100644 --- a/public/lang/settings.js +++ b/public/lang/settings.js @@ -10,6 +10,10 @@ export default { locale: "de", name: "Deutsch" }, + { + locale: "ja", + name: "日本語" + } */ ] } \ No newline at end of file From 41802430b9d7ffe8a8d328f64941664cb81168b7 Mon Sep 17 00:00:00 2001 From: tsutoringo <33830878+tsutoringo@users.noreply.github.com> Date: Sun, 21 Mar 2021 14:43:40 +0900 Subject: [PATCH 2/2] Typo fixed --- public/lang/ja.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/lang/ja.js b/public/lang/ja.js index de26c9f..857eef1 100644 --- a/public/lang/ja.js +++ b/public/lang/ja.js @@ -62,7 +62,7 @@ export default { light: "ライト" }, debug: { - button: "懸賞情報の表示" + button: "デバッグ情報の表示" }, resetAllSettings: { button: "設定をリセット"