feat(i18n): 마이페이지 그룹 3~5 하드코딩 문구를 I18n 키로 통일한다
This commit is contained in:
@@ -14,7 +14,7 @@ struct ServiceCenterView: View {
|
||||
var body: some View {
|
||||
BaseView(isLoading: $viewModel.isLoading) {
|
||||
VStack(spacing: 0) {
|
||||
DetailNavigationBar(title: "고객센터")
|
||||
DetailNavigationBar(title: I18n.MyPage.Category.customerCenter)
|
||||
|
||||
ScrollView(.vertical, showsIndicators: false) {
|
||||
VStack(spacing: 0) {
|
||||
@@ -23,7 +23,7 @@ struct ServiceCenterView: View {
|
||||
.scaledToFill()
|
||||
.frame(width: 106.7, height: 106.7, alignment: .top)
|
||||
|
||||
Text("고객센터")
|
||||
Text(I18n.MyPage.Category.customerCenter)
|
||||
.appFont(size: 20, weight: .bold)
|
||||
.foregroundColor(.grayee)
|
||||
.padding(.top, 20)
|
||||
@@ -34,7 +34,7 @@ struct ServiceCenterView: View {
|
||||
.scaledToFill()
|
||||
.frame(width: 21, height: 18.8, alignment: .top)
|
||||
|
||||
Text("TALK 문의")
|
||||
Text(I18n.MyPage.ServiceCenter.talkInquiry)
|
||||
.appFont(size: 13.3, weight: .bold)
|
||||
.foregroundColor(.black)
|
||||
}
|
||||
@@ -53,7 +53,7 @@ struct ServiceCenterView: View {
|
||||
.foregroundColor(.gray23)
|
||||
.padding(.vertical, 20)
|
||||
|
||||
Text("자주 묻는 질문")
|
||||
Text(I18n.MyPage.ServiceCenter.faqTitle)
|
||||
.appFont(size: 18.3, weight: .bold)
|
||||
.foregroundColor(.grayee)
|
||||
.frame(maxWidth: .infinity, alignment: .leading)
|
||||
|
||||
Reference in New Issue
Block a user