feat(creator): 시리즈 탭을 추가한다

This commit is contained in:
Yu Sung
2026-07-04 18:50:24 +09:00
parent 0dd111f5d6
commit 8c71b6883b
14 changed files with 1022 additions and 6 deletions

View File

@@ -3199,6 +3199,23 @@ If you block this user, the following features will be restricted.
}
}
enum CreatorChannelSeries {
static var contentCountUnit: String { pick(ko: "", en: " episodes", ja: "") }
static var proceeding: String { pick(ko: "연재", en: "Ongoing", ja: "連載") }
static var completed: String { pick(ko: "완결", en: "Completed", ja: "完結") }
static var emptyMessage: String {
pick(
ko: "크리에이터가 시리즈를 준비 중입니다.\n기대해 주세요!",
en: "The creator is preparing series.\nPlease stay tuned!",
ja: "クリエイターがシリーズを準備中です。\nお楽しみに!"
)
}
static func totalContentCount(_ count: Int) -> String {
pick(ko: "\(count)", en: "Total \(count) episodes", ja: "\(count)")
}
}
enum CreatorChannelHome {
static var currentLive: String { pick(ko: "현재 라이브", en: "Live now", ja: "現在ライブ") }
static var latestAudio: String { pick(ko: "최신 오디오 콘텐츠", en: "Latest audio", ja: "最新オーディオ") }