From b011616175762057a0f966fabef8a1d86445310a Mon Sep 17 00:00:00 2001 From: Yu Sung Date: Fri, 14 Aug 2026 13:41:33 +0900 Subject: [PATCH] =?UTF-8?q?fix(i18n):=20=ED=81=AC=EB=A6=AC=EC=97=90?= =?UTF-8?q?=EC=9D=B4=ED=84=B0=20=EC=B1=84=EB=84=90=20=ED=83=AD=EC=9D=84=20?= =?UTF-8?q?=EB=8B=A4=EA=B5=AD=EC=96=B4=ED=99=94=ED=95=9C=EB=8B=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SodaLive/Sources/I18n/I18n.swift | 2 ++ .../V2/CreatorChannel/Models/CreatorChannelTab.swift | 12 ++++++------ 2 files changed, 8 insertions(+), 6 deletions(-) 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 } } }