diff --git a/SodaLive/Sources/I18n/I18n.swift b/SodaLive/Sources/I18n/I18n.swift index e7290b3d..6e115aba 100644 --- a/SodaLive/Sources/I18n/I18n.swift +++ b/SodaLive/Sources/I18n/I18n.swift @@ -3427,6 +3427,8 @@ If you block this user, the following features will be restricted. } enum CreatorChannelHome { + static var home: String { pick(ko: "홈", en: "Home", ja: "ホーム") } + static var live: String { pick(ko: "라이브", en: "Live", ja: "ライブ") } static var currentLive: String { pick(ko: "현재 라이브", en: "Live now", ja: "現在ライブ") } static var latestAudio: String { pick(ko: "최신 오디오 콘텐츠", en: "Latest audio", ja: "最新オーディオ") } static var donation: String { pick(ko: "후원", en: "Donations", ja: "サポート") } diff --git a/SodaLive/Sources/V2/CreatorChannel/Models/CreatorChannelTab.swift b/SodaLive/Sources/V2/CreatorChannel/Models/CreatorChannelTab.swift index 4419361c..163462cc 100644 --- a/SodaLive/Sources/V2/CreatorChannel/Models/CreatorChannelTab.swift +++ b/SodaLive/Sources/V2/CreatorChannel/Models/CreatorChannelTab.swift @@ -12,19 +12,19 @@ enum CreatorChannelTab: CaseIterable, Hashable { var title: String { switch self { case .home: - return "홈" + return I18n.CreatorChannelHome.home case .live: - return "라이브" + return I18n.CreatorChannelHome.live case .audio: - return "오디오" + return I18n.CreatorChannelHome.audio case .series: - return "시리즈" + return I18n.CreatorChannelHome.series case .community: - return "커뮤니티" + return I18n.CreatorChannelHome.community case .fanTalk: return I18n.CreatorChannelHome.fanTalk case .donation: - return "후원" + return I18n.CreatorChannelHome.donation } } }