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

@@ -21,19 +21,19 @@ struct TextMessageWriteView: View {
BaseView(isLoading: $viewModel.isLoading) {
VStack(spacing: 0) {
HStack(spacing: 0) {
Text("취소")
Text(I18n.Common.cancel)
.appFont(size: 16.7, weight: .medium)
.foregroundColor(Color(hex: "3bb9f1").opacity(0))
Spacer()
Text("새로운 메시지")
Text(I18n.Message.Text.Write.title)
.appFont(size: 18.3, weight: .bold)
.foregroundColor(Color(hex: "eeeeee"))
Spacer()
Text("취소")
Text(I18n.Common.cancel)
.appFont(size: 16.7, weight: .medium)
.foregroundColor(Color(hex: "3bb9f1"))
.onTapGesture {
@@ -51,7 +51,7 @@ struct TextMessageWriteView: View {
Spacer()
HStack(spacing: 13.3) {
Text("받는 사람")
Text(I18n.Message.Text.Write.recipientLabel)
.appFont(size: 16.7, weight: .medium)
.foregroundColor(Color(hex: "777777"))