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

@@ -27,7 +27,7 @@ struct SeriesMainItemView: View {
VStack(alignment: .leading, spacing: 0) {
HStack(spacing: 0) {
if item.isPopular {
Text("인기")
Text(I18n.Series.popular)
.appFont(size: 12, weight: .regular)
.foregroundColor(.white)
.padding(.horizontal, 10)
@@ -37,7 +37,7 @@ struct SeriesMainItemView: View {
}
if item.isNew {
Text("신작")
Text(I18n.Series.new)
.appFont(size: 12, weight: .regular)
.foregroundColor(.white)
.padding(.horizontal, 10)
@@ -56,7 +56,7 @@ struct SeriesMainItemView: View {
}
if item.isComplete {
Text("완결")
Text(I18n.Series.complete)
.appFont(size: 12, weight: .regular)
.foregroundColor(.white)
.padding(.horizontal, 10)
@@ -71,7 +71,7 @@ struct SeriesMainItemView: View {
HStack {
Spacer()
Text("\(item.numberOfContent)")
Text(I18n.Series.totalEpisodes(item.numberOfContent))
.appFont(size: 12, weight: .regular)
.foregroundColor(.white)
.padding(.horizontal, 10)