feat(i18n): 마이페이지 하드코딩 문구를 I18n 키로 통일한다

This commit is contained in:
Yu Sung
2026-03-31 23:04:33 +09:00
parent 25fccbaa07
commit b53614836f
21 changed files with 483 additions and 176 deletions

View File

@@ -14,10 +14,10 @@ struct BlockMemberListView: View {
var body: some View {
BaseView(isLoading: $viewModel.isLoading) {
VStack(spacing: 0) {
DetailNavigationBar(title: String(localized: "차단 리스트"))
DetailNavigationBar(title: I18n.MyPage.Block.listTitle)
HStack(spacing: 0) {
Text("")
Text(I18n.MyPage.Common.totalPrefix)
.appFont(size: 13.3, weight: .medium)
.foregroundColor(Color.grayee)
@@ -25,7 +25,7 @@ struct BlockMemberListView: View {
.appFont(size: 13.3, weight: .medium)
.foregroundColor(Color.mainRed3)
Text("")
Text(I18n.MyPage.Common.personUnit)
.appFont(size: 13.3, weight: .medium)
.foregroundColor(Color.grayee)
@@ -56,7 +56,7 @@ struct BlockMemberListView: View {
.padding(.top, 26.7)
}
} else {
Text("차단한 유저가 없습니다.")
Text(I18n.MyPage.Block.emptyBlockedUsers)
.appFont(size: 13.3, weight: .medium)
.foregroundColor(Color.grayee)
.frame(maxHeight: .infinity)