From 0a0850bf38bea572cb46a9f14e6eea10c8427a67 Mon Sep 17 00:00:00 2001 From: JiWoong Sul Date: Wed, 7 Jan 2026 22:13:30 +0900 Subject: [PATCH] =?UTF-8?q?feat(i18n):=20=EC=82=AC=EB=A7=9D=20=EC=98=A4?= =?UTF-8?q?=EB=B2=84=EB=A0=88=EC=9D=B4=20=EB=B2=88=EC=97=AD=20=EC=B6=94?= =?UTF-8?q?=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/data/game_text_l10n.dart | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/data/game_text_l10n.dart b/lib/data/game_text_l10n.dart index 1fac3e9..3f37a20 100644 --- a/lib/data/game_text_l10n.dart +++ b/lib/data/game_text_l10n.dart @@ -184,6 +184,12 @@ String get deathResurrect { return 'Resurrect'; } +String get deathAutoResurrect { + if (isKoreanLocale) return '자동 부활'; + if (isJapaneseLocale) return '自動復活'; + return 'Auto Resurrect'; +} + String get deathCombatLog { if (isKoreanLocale) return '전투 기록'; if (isJapaneseLocale) return '戦闘ログ';