feat(i18n): 사용자 화면 문구를 I18n 키로 통일한다
This commit is contained in:
@@ -29,7 +29,7 @@ struct ProfileReportMenuView: View {
|
||||
|
||||
VStack(spacing: 13.3) {
|
||||
HStack(spacing: 0) {
|
||||
Text(isBlockedUser ? "사용자 차단해제" : "사용자 차단하기")
|
||||
Text(isBlockedUser ? I18n.User.unblockUserAction : I18n.User.blockUserAction)
|
||||
.appFont(size: 13.3, weight: .medium)
|
||||
.foregroundColor(.white)
|
||||
|
||||
@@ -48,7 +48,7 @@ struct ProfileReportMenuView: View {
|
||||
}
|
||||
|
||||
HStack(spacing: 0) {
|
||||
Text("사용자 신고하기")
|
||||
Text(I18n.User.reportUserAction)
|
||||
.appFont(size: 13.3, weight: .medium)
|
||||
.foregroundColor(.white)
|
||||
|
||||
@@ -63,7 +63,7 @@ struct ProfileReportMenuView: View {
|
||||
}
|
||||
|
||||
HStack(spacing: 0) {
|
||||
Text("프로필 신고하기")
|
||||
Text(I18n.User.reportProfileAction)
|
||||
.appFont(size: 13.3, weight: .medium)
|
||||
.foregroundColor(.white)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user