Skip to content

Commit da725a8

Browse files
committed
fix: Update i18n locales to include Japanese
1 parent 4cae576 commit da725a8

8 files changed

Lines changed: 91 additions & 0 deletions

File tree

platform/i18n/pullTranslations.sh

100644100755
File mode changed.

platform/i18n/src/locales/index.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import en_US from './en-US/';
22
import es from './es/';
3+
import ja_JP from './ja-JP/';
34
import nl from './nl/';
45
import pt_BR from './pt-BR/';
56
import vi from './vi/';
@@ -8,6 +9,7 @@ import zh from './zh/';
89
export default {
910
...en_US,
1011
...es,
12+
...ja_JP,
1113
...nl,
1214
...pt_BR,
1315
...vi,
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
{
2+
"Acquired": "取得済",
3+
"Angle": "分度器",
4+
"Axial": "アキシャル",
5+
"Bidirectional": "両方向",
6+
"Brush": "ブラシ",
7+
"CINE": "シネ",
8+
"Cancel": "キャンセル",
9+
"Circle": "サークル",
10+
"Clear": "クリア",
11+
"Coronal": "コロナル",
12+
"Crosshairs": "クロスヘアー",
13+
"Ellipse": "楕円",
14+
"Elliptical": "楕円",
15+
"Flip H": "左右反転",
16+
"Flip V": "上下反転",
17+
"Freehand": "フリーハンド",
18+
"Invert": "反転",
19+
"Layout": "$t(Common:Layout)",
20+
"Length": "長さ",
21+
"Levels": "レベル",
22+
"Magnify": "拡大",
23+
"Manual": "マニュアル",
24+
"Measurements": "測定",
25+
"More": "$t(Common:More)",
26+
"Next": "$t(Common:Next)",
27+
"Pan": "パン",
28+
"Play": "$t(Common:Play)",
29+
"Previous": "$t(Common:Previous)",
30+
"Probe": "プローブ",
31+
"ROI Window": "ROIウィンドウ",
32+
"Rectangle": "長方形",
33+
"Reset": "$t(Common:Reset)",
34+
"Reset to Defaults": "デフォルトへ$t(Common:Reset)",
35+
"Rotate Right": "右に回転",
36+
"Sagittal": "サジタル",
37+
"Save": "保存",
38+
"Stack Scroll": "スタックスクロール",
39+
"Stop": "$t(Common:Stop)",
40+
"Themes": "テーマ",
41+
"Zoom": "ズーム"
42+
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"Next image": "$t(Common:Play) $t(Common:Image)",
3+
"Play / Stop": "$t(Common:Play) / $t(Common:Stop)",
4+
"Previous image": "$t(Common:Previous) $t(Common:Image)",
5+
"Skip to first image": "$t(Common:Image)最初にスキップ",
6+
"Skip to last image": "$t(Common:Image)最後にスキップ",
7+
"fps": "fps"
8+
}
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"Image": "画像",
3+
"Layout": "レイアウト",
4+
"More": "もっと",
5+
"Next": "次へ",
6+
"Play": "プレイ",
7+
"Previous": "前へ",
8+
"Reset": "リセット",
9+
"Stop": "ストップ"
10+
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"About": "につい",
3+
"Back to Viewer": "前のビュー",
4+
"INVESTIGATIONAL USE ONLY": "調査用のみ",
5+
"Options": "オプション",
6+
"Preferences": "プレファレンス",
7+
"Study list": "スタディリスト"
8+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"Cancel": "$t(Buttons:Cancel)",
3+
"Reset to Defaults": "$t(Buttons:Reset to Defaults)",
4+
"Save": "$t(Buttons:Save)",
5+
"User Preferences": "ユーザプレファレンス"
6+
}
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import Buttons from "./Buttons.json";
2+
import CineDialog from "./CineDialog.json";
3+
import Common from "./Common.json";
4+
import Header from "./Header.json";
5+
import UserPreferencesModal from "./UserPreferencesModal.json";
6+
7+
export default {
8+
'ja-JP': {
9+
Buttons,
10+
CineDialog,
11+
Common,
12+
Header,
13+
UserPreferencesModal,
14+
}
15+
};

0 commit comments

Comments
 (0)