feat(i18n): 마이페이지 하드코딩 문구를 I18n 키로 통일한다
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user