From d63463a677c58c5c8ca1d3513699af1b2ec3c959 Mon Sep 17 00:00:00 2001 From: JiWoong Sul Date: Wed, 7 Jan 2026 20:22:04 +0900 Subject: [PATCH] =?UTF-8?q?feat(i18n):=20=EC=95=84=EB=A0=88=EB=82=98/?= =?UTF-8?q?=EB=AA=85=EC=98=88=EC=9D=98=EC=A0=84=EB=8B=B9=20=EB=B2=88?= =?UTF-8?q?=EC=97=AD=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/data/game_text_l10n.dart | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/lib/data/game_text_l10n.dart b/lib/data/game_text_l10n.dart index 683af58..1fac3e9 100644 --- a/lib/data/game_text_l10n.dart +++ b/lib/data/game_text_l10n.dart @@ -1322,10 +1322,16 @@ String get hofCleared { return 'Cleared'; } -String get hofSpells { - if (isKoreanLocale) return '스펠'; - if (isJapaneseLocale) return 'スペル'; - return 'Spells'; +String get hofSkills { + if (isKoreanLocale) return '스킬'; + if (isJapaneseLocale) return 'スキル'; + return 'Skills'; +} + +String get hofNoSkills { + if (isKoreanLocale) return '스킬 없음'; + if (isJapaneseLocale) return 'スキルなし'; + return 'No Skills'; } String get hofCombatStats {