feat(i18n): 시리즈/재생목록 하드코딩 문구를 I18n 키로 통일한다

This commit is contained in:
Yu Sung
2026-04-01 17:33:13 +09:00
parent c039931f34
commit 1ec56a1f15
27 changed files with 253 additions and 160 deletions

View File

@@ -90,7 +90,7 @@ struct SeriesDetailView: View {
.cornerRadius(2.6)
if seriesDetail.isAdult {
Text("19세")
Text(I18n.Series.age19Badge)
.appFont(size: 12, weight: .medium)
.foregroundColor(Color(hex: "f1291c"))
.padding(.horizontal, 5.3)
@@ -98,7 +98,7 @@ struct SeriesDetailView: View {
.background(Color(hex: "312827"))
.cornerRadius(2.6)
} else {
Text("전체연령가")
Text(I18n.SeriesDetail.ageAll)
.appFont(size: 12, weight: .medium)
.foregroundColor(Color(hex: "d2d2d2"))
.padding(.horizontal, 5.3)
@@ -107,7 +107,7 @@ struct SeriesDetailView: View {
.cornerRadius(2.6)
}
Text("\(seriesDetail.publishedDaysOfWeek) 연재")
Text(I18n.Series.publishing(seriesDetail.publishedDaysOfWeek))
.appFont(size: 12, weight: .medium)
.foregroundColor(Color(hex: "909090"))
}