feat(game): 게임 텍스트 및 스토리 페이지 개선
- game_text_l10n: 새로운 텍스트 항목 추가 - game_play_screen: 기능 추가 - story_page: 레이아웃 조정
This commit is contained in:
@@ -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 '무기';
|
||||
|
||||
Reference in New Issue
Block a user