feat(creator): 라이브 탭 빈 상태를 추가한다

This commit is contained in:
Yu Sung
2026-07-04 03:39:41 +09:00
parent b6580e201f
commit 6600cd43c1
4 changed files with 69 additions and 25 deletions

View File

@@ -3165,6 +3165,14 @@ If you block this user, the following features will be restricted.
enum CreatorChannelLive {
static var totalLabel: String { pick(ko: "전체", en: "Total", ja: "全体") }
static var startLive: String { pick(ko: "라이브 시작하기", en: "Start live", ja: "ライブを開始") }
static var emptyMessage: String {
pick(
ko: "크리에이터가 라이브를 준비중입니다.\n기대해 주세요!",
en: "The creator is preparing a live.\nPlease stay tuned!",
ja: "クリエイターがライブを準備中です。\nお楽しみに!"
)
}
enum Sort {
static var latest: String { pick(ko: "최신순", en: "Latest", ja: "最新順") }
static var popular: String { pick(ko: "인기순", en: "Popular", ja: "人気順") }