feat(i18n): 오디션 화면 하드코딩 문구를 I18n 키로 통일한다

This commit is contained in:
Yu Sung
2026-03-31 15:39:57 +09:00
parent 136bfc8eee
commit 222520d5e9
13 changed files with 406 additions and 87 deletions

View File

@@ -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)