시리즈 전체보기 제목 현지화

크리에이터 기준 제목을 다국어로 제공한다.
요일 선택 영역을 가로 스크롤로 제공한다.
This commit is contained in:
Yu Sung
2025-12-19 18:48:31 +09:00
parent fdac62fc7a
commit 321d97bf4d
3 changed files with 22 additions and 13 deletions

View File

@@ -267,6 +267,15 @@ enum I18n {
static var totalEpisodes: (Int) -> String = { count in
pick(ko: "\(count)", en: "Total \(count) episodes", ja: "\(count)")
}
// ( )
static func viewAllByCreator(_ nickname: String) -> String {
pick(
ko: "\(nickname) 님의 시리즈 전체보기",
en: "All series by \(nickname)",
ja: "\(nickname) さんのシリーズ一覧"
)
}
}
//