캔/포인트 내역 제목 로컬라이즈 추가

캔내역과 포인트 내역 제목을 로컬라이즈 키로 제공한다.
This commit is contained in:
Yu Sung
2025-12-19 19:48:27 +09:00
parent a406935e4f
commit f67fd5bb26
3 changed files with 82 additions and 50 deletions

View File

@@ -4088,22 +4088,6 @@
}
}
},
"모든 기기에서 로그아웃" : {
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Log out from all devices"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
"value" : "すべての端末でログアウト"
}
}
}
},
"모집완료" : {
"localizations" : {
"en" : {
@@ -4120,22 +4104,6 @@
}
}
},
"모집중" : {
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Recruiting"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
"value" : "募集中"
}
}
}
},
"목" : {
"localizations" : {
"en" : {
@@ -4152,6 +4120,38 @@
}
}
},
"모든 기기에서 로그아웃" : {
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Log out from all devices"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
"value" : "すべての端末でログアウト"
}
}
}
},
"모집중" : {
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Recruiting"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
"value" : "募集中"
}
}
}
},
"무료" : {
"localizations" : {
"en" : {
@@ -8552,22 +8552,6 @@
}
}
},
"캔" : {
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Cans"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
"value" : "キャン"
}
}
}
},
"캐릭터 정보" : {
"localizations" : {
"en" : {
@@ -8584,6 +8568,22 @@
}
}
},
"캔" : {
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Cans"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
"value" : "キャン"
}
}
}
},
"캔 충전" : {
"localizations" : {
"en" : {
@@ -8600,6 +8600,22 @@
}
}
},
"캔내역" : {
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Can history"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
"value" : "キャン履歴"
}
}
}
},
"캔내역 확인하기" : {
"localizations" : {
"en" : {
@@ -9304,6 +9320,22 @@
}
}
},
"포인트 내역" : {
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Point history"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
"value" : "ポイント履歴"
}
}
}
},
"포인트 대여 전체" : {
"localizations" : {
"en" : {

View File

@@ -17,7 +17,7 @@ struct CanStatusView: View {
BaseView(isLoading: $viewModel.isLoading) {
GeometryReader { proxy in
VStack(spacing: 0) {
DetailNavigationBar(title: "캔내역") {
DetailNavigationBar(title: String(localized: "캔내역")) {
AppState.shared.setAppStep(step: .main)
}

View File

@@ -17,7 +17,7 @@ struct PointStatusView: View {
BaseView(isLoading: $viewModel.isLoading) {
GeometryReader { proxy in
VStack(spacing: 0) {
DetailNavigationBar(title: "포인트 내역") {
DetailNavigationBar(title: String(localized: "포인트 내역")) {
AppState.shared.setAppStep(step: .main)
}