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

캔내역과 포인트 내역 제목을 로컬라이즈 키로 제공한다.
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

@@ -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)
}