feat(game): 게임 텍스트 및 스토리 페이지 개선

- game_text_l10n: 새로운 텍스트 항목 추가
- game_play_screen: 기능 추가
- story_page: 레이아웃 조정
This commit is contained in:
JiWoong Sul
2025-12-31 15:36:59 +09:00
parent c8a24b4ac0
commit 925048ee4d
3 changed files with 17 additions and 1 deletions

View File

@@ -1388,6 +1388,13 @@ String uiWeight(int weight) {
return 'Wt.$weight';
}
/// 남은 시간 표시
String uiTimeRemaining(String time) {
if (isKoreanLocale) return '$time 남음';
if (isJapaneseLocale) return '残り$time';
return '$time remaining';
}
// 장비 슬롯 이름
String get slotWeapon {
if (isKoreanLocale) return '무기';