feat(l10n): 다국어 텍스트 업데이트

- 영어, 한국어, 일본어, 중국어 번역 업데이트
- game_text_l10n 데이터 개선
This commit is contained in:
JiWoong Sul
2026-01-19 15:50:02 +09:00
parent 03aa117710
commit 724de9a63c
10 changed files with 294 additions and 265 deletions

View File

@@ -227,8 +227,8 @@
"total": "Total",
"@total": { "description": "Total label for stats" },
"unroll": "Unroll",
"@unroll": { "description": "Unroll button" },
"unroll": "Undo",
"@unroll": { "description": "Undo button for stat reroll" },
"roll": "Roll",
"@roll": { "description": "Roll button" },

View File

@@ -1,7 +1,7 @@
{
"@@locale": "ja",
"appTitle": "ASCII NEVER DIE",
"appTitle": "アスキー ネバー ダイ",
"tagNoNetwork": "No network",
"tagIdleRpg": "Idle RPG loop",
"tagLocalSaves": "Local saves",
@@ -68,7 +68,7 @@
"name": "Name",
"generateName": "Generate Name",
"total": "Total",
"unroll": "Unroll",
"unroll": "元に戻す",
"roll": "Roll",
"race": "Race",
"classTitle": "Class",

View File

@@ -68,7 +68,7 @@
"name": "이름",
"generateName": "이름 생성",
"total": "합계",
"unroll": "펼치기",
"unroll": "되돌리기",
"roll": "굴리기",
"race": "종족",
"classTitle": "직업",

View File

@@ -503,10 +503,10 @@ abstract class L10n {
/// **'Total'**
String get total;
/// Unroll button
/// Undo button for stat reroll
///
/// In en, this message translates to:
/// **'Unroll'**
/// **'Undo'**
String get unroll;
/// Roll button

View File

@@ -220,7 +220,7 @@ class L10nEn extends L10n {
String get total => 'Total';
@override
String get unroll => 'Unroll';
String get unroll => 'Undo';
@override
String get roll => 'Roll';

View File

@@ -9,7 +9,7 @@ class L10nJa extends L10n {
L10nJa([String locale = 'ja']) : super(locale);
@override
String get appTitle => 'ASCII NEVER DIE';
String get appTitle => 'アスキー ネバー ダイ';
@override
String get tagNoNetwork => 'No network';
@@ -220,7 +220,7 @@ class L10nJa extends L10n {
String get total => 'Total';
@override
String get unroll => 'Unroll';
String get unroll => '元に戻す';
@override
String get roll => 'Roll';

View File

@@ -220,7 +220,7 @@ class L10nKo extends L10n {
String get total => '합계';
@override
String get unroll => '펼치';
String get unroll => '되돌리';
@override
String get roll => '굴리기';

View File

@@ -220,7 +220,7 @@ class L10nZh extends L10n {
String get total => 'Total';
@override
String get unroll => 'Unroll';
String get unroll => '撤销';
@override
String get roll => 'Roll';

View File

@@ -68,7 +68,7 @@
"name": "Name",
"generateName": "Generate Name",
"total": "Total",
"unroll": "Unroll",
"unroll": "撤销",
"roll": "Roll",
"race": "Race",
"classTitle": "Class",