feat(i18n): 시리즈/재생목록 하드코딩 문구를 I18n 키로 통일한다
This commit is contained in:
@@ -27,7 +27,7 @@ struct SeriesItemView: 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 SeriesItemView: View {
|
||||
}
|
||||
|
||||
if item.isNew {
|
||||
Text("신작")
|
||||
Text(I18n.Series.new)
|
||||
.appFont(size: 12, weight: .regular)
|
||||
.foregroundColor(.white)
|
||||
.padding(.horizontal, 10)
|
||||
@@ -56,7 +56,7 @@ struct SeriesItemView: View {
|
||||
}
|
||||
|
||||
if item.isComplete {
|
||||
Text("완결")
|
||||
Text(I18n.Series.complete)
|
||||
.appFont(size: 12, weight: .regular)
|
||||
.foregroundColor(.white)
|
||||
.padding(.horizontal, 10)
|
||||
@@ -71,7 +71,7 @@ struct SeriesItemView: View {
|
||||
HStack {
|
||||
Spacer()
|
||||
|
||||
Text("총 \(item.numberOfContent)화")
|
||||
Text(I18n.Series.totalEpisodes(item.numberOfContent))
|
||||
.appFont(size: 12, weight: .regular)
|
||||
.foregroundColor(.white)
|
||||
.padding(.horizontal, 10)
|
||||
|
||||
Reference in New Issue
Block a user