feat(creator): 시리즈 탭을 추가한다
This commit is contained in:
@@ -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: "最新オーディオ") }
|
||||
|
||||
Reference in New Issue
Block a user