refactor(l10n): 골드를 코인으로 명칭 변경

- gold → coin으로 용어 통일
- 사망 오버레이 레이블 수정
This commit is contained in:
JiWoong Sul
2025-12-26 17:51:51 +09:00
parent b48cbb844e
commit 828debfb08
8 changed files with 19 additions and 19 deletions

View File

@@ -171,12 +171,12 @@
"equipSollerets": "Sollerets", "equipSollerets": "Sollerets",
"@equipSollerets": { "description": "Sollerets equipment slot" }, "@equipSollerets": { "description": "Sollerets equipment slot" },
"gold": "Gold", "gold": "Coin",
"@gold": { "description": "Gold label" }, "@gold": { "description": "Coin label" },
"goldAmount": "Gold: {amount}", "goldAmount": "Coin: {amount}",
"@goldAmount": { "@goldAmount": {
"description": "Gold with amount", "description": "Coin with amount",
"placeholders": { "placeholders": {
"amount": { "type": "int" } "amount": { "type": "int" }
} }

View File

@@ -56,8 +56,8 @@
"equipCuisses": "Cuisses", "equipCuisses": "Cuisses",
"equipGreaves": "Greaves", "equipGreaves": "Greaves",
"equipSollerets": "Sollerets", "equipSollerets": "Sollerets",
"gold": "Gold", "gold": "コイン",
"goldAmount": "Gold: {amount}", "goldAmount": "コイン: {amount}",
"prologue": "Prologue", "prologue": "Prologue",
"actNumber": "Act {number}", "actNumber": "Act {number}",
"noActiveQuests": "No active quests", "noActiveQuests": "No active quests",

View File

@@ -56,8 +56,8 @@
"equipCuisses": "허벅지보호대", "equipCuisses": "허벅지보호대",
"equipGreaves": "정강이보호대", "equipGreaves": "정강이보호대",
"equipSollerets": "철제 신발", "equipSollerets": "철제 신발",
"gold": "골드", "gold": "코인",
"goldAmount": "골드: {amount}", "goldAmount": "코인: {amount}",
"prologue": "프롤로그", "prologue": "프롤로그",
"actNumber": "{number}막", "actNumber": "{number}막",
"noActiveQuests": "진행 중인 퀘스트 없음", "noActiveQuests": "진행 중인 퀘스트 없음",

View File

@@ -431,16 +431,16 @@ abstract class L10n {
/// **'Sollerets'** /// **'Sollerets'**
String get equipSollerets; String get equipSollerets;
/// Gold label /// Coin label
/// ///
/// In en, this message translates to: /// In en, this message translates to:
/// **'Gold'** /// **'Coin'**
String get gold; String get gold;
/// Gold with amount /// Coin with amount
/// ///
/// In en, this message translates to: /// In en, this message translates to:
/// **'Gold: {amount}'** /// **'Coin: {amount}'**
String goldAmount(int amount); String goldAmount(int amount);
/// Prologue plot stage /// Prologue plot stage

View File

@@ -176,11 +176,11 @@ class L10nEn extends L10n {
String get equipSollerets => 'Sollerets'; String get equipSollerets => 'Sollerets';
@override @override
String get gold => 'Gold'; String get gold => 'Coin';
@override @override
String goldAmount(int amount) { String goldAmount(int amount) {
return 'Gold: $amount'; return 'Coin: $amount';
} }
@override @override

View File

@@ -176,11 +176,11 @@ class L10nJa extends L10n {
String get equipSollerets => 'Sollerets'; String get equipSollerets => 'Sollerets';
@override @override
String get gold => 'Gold'; String get gold => 'コイン';
@override @override
String goldAmount(int amount) { String goldAmount(int amount) {
return 'Gold: $amount'; return 'コイン: $amount';
} }
@override @override

View File

@@ -176,11 +176,11 @@ class L10nKo extends L10n {
String get equipSollerets => '철제 신발'; String get equipSollerets => '철제 신발';
@override @override
String get gold => '골드'; String get gold => '코인';
@override @override
String goldAmount(int amount) { String goldAmount(int amount) {
return '골드: $amount'; return '코인: $amount';
} }
@override @override

View File

@@ -245,7 +245,7 @@ class DeathOverlay extends StatelessWidget {
_buildInfoRow( _buildInfoRow(
context, context,
icon: Icons.monetization_on_outlined, icon: Icons.monetization_on_outlined,
label: l10n.deathGoldRemaining, label: l10n.deathCoinRemaining,
value: _formatGold(deathInfo.goldAtDeath), value: _formatGold(deathInfo.goldAtDeath),
isNegative: false, isNegative: false,
), ),