feat(i18n): 오디션 화면 하드코딩 문구를 I18n 키로 통일한다
This commit is contained in:
@@ -30,7 +30,7 @@ struct ApplyMethodView: View {
|
||||
}
|
||||
}
|
||||
|
||||
Text("오디션 지원방식")
|
||||
Text(I18n.Audition.ApplyMethod.title)
|
||||
.appFont(size: 18.3, weight: .bold)
|
||||
.foregroundColor(Color.graybb)
|
||||
.padding(.top, 33.3)
|
||||
@@ -39,7 +39,7 @@ struct ApplyMethodView: View {
|
||||
HStack(spacing: 3) {
|
||||
Image("ic_upload")
|
||||
|
||||
Text("파일 업로드")
|
||||
Text(I18n.Audition.ApplyMethod.fileUpload)
|
||||
.appFont(size: 14.7, weight: .medium)
|
||||
.foregroundColor(Color.button)
|
||||
}
|
||||
@@ -60,7 +60,7 @@ struct ApplyMethodView: View {
|
||||
HStack(spacing: 3) {
|
||||
Image("ic_mic_color_button")
|
||||
|
||||
Text("바로 녹음")
|
||||
Text(I18n.Audition.ApplyMethod.recordNow)
|
||||
.appFont(size: 14.7, weight: .medium)
|
||||
.foregroundColor(Color.button)
|
||||
}
|
||||
@@ -81,7 +81,7 @@ struct ApplyMethodView: View {
|
||||
.padding(.top, 21.3)
|
||||
|
||||
HStack(spacing: 0) {
|
||||
Text("※ 파일은 mp3, aac만 업로드 가능")
|
||||
Text(I18n.Audition.ApplyMethod.fileFormatNotice)
|
||||
.appFont(size: 12, weight: .medium)
|
||||
.foregroundColor(Color.gray77)
|
||||
.padding(.top, 13.3)
|
||||
|
||||
Reference in New Issue
Block a user