feat(i18n): 메시지 모듈 하드코딩 문구를 I18n 키로 통일한다

This commit is contained in:
Yu Sung
2026-03-31 22:01:30 +09:00
parent 4c170e0f97
commit 9369a52ba2
11 changed files with 226 additions and 51 deletions

View File

@@ -17,11 +17,11 @@ struct MessageView: View {
Color.black
VStack {
DetailNavigationBar(title: String(localized: "메시지"))
DetailNavigationBar(title: I18n.Message.title)
Tab()
Text("※ 보관하지 않은 받은 메시지는 3일 후, 자동 삭제됩니다.")
Text(I18n.Message.autoDeleteNotice)
.appFont(size: 13.3, weight: .medium)
.padding(.top, 20)
@@ -50,7 +50,7 @@ struct MessageView: View {
}
}) {
VStack(spacing: 0) {
Text("문자")
Text(I18n.Message.Tab.text)
.appFont(size: 16.7, weight: .medium)
.foregroundColor(Color(hex: viewModel.currentTab == .text ? "eeeeee" : "777777"))
.frame(width: tabWidth, height: 50)
@@ -69,7 +69,7 @@ struct MessageView: View {
}
}) {
VStack(spacing: 0) {
Text("음성")
Text(I18n.Message.Tab.voice)
.appFont(size: 16.7, weight: .medium)
.foregroundColor(Color(hex: viewModel.currentTab == .voice ? "eeeeee" : "777777"))
.frame(width: tabWidth, height: 50)