fix(i18n): 전체 수량 표기를 통일한다

This commit is contained in:
Yu Sung
2026-08-14 14:16:54 +09:00
parent b011616175
commit 080f36e690
5 changed files with 11 additions and 36 deletions

View File

@@ -799,8 +799,8 @@ enum I18n {
static var emptyTitle: String { pick(ko: "재생목록이 비어있습니다.", en: "Your playlist is empty.", ja: "プレイリストが空です。") }
static var emptyDescription: String { pick(ko: "자주 듣는 콘텐츠를\n재생목록으로 만들어 보세요.", en: "Create a playlist with\nyour frequently listened content.", ja: "よく聴くコンテンツで\nプレイリストを作ってみましょう。") }
static var totalLabel: String { pick(ko: "전체", en: "Total", ja: "すべて") }
static func totalCount(_ count: Int) -> String { pick(ko: " \(count)", en: "Total \(count)", ja: "\(count)") }
static func itemCount(_ count: Int) -> String { pick(ko: " \(count)", en: "Total \(count)", ja: "\(count)") }
static func totalCount(_ count: Int) -> String { pick(ko: "전체 \(count)", en: "Total \(count)", ja: "すべて\(count)") }
static func itemCount(_ count: Int) -> String { pick(ko: "전체 \(count)", en: "Total \(count)", ja: "すべて\(count)") }
static var createTitle: String { pick(ko: "새 재생목록 만들기", en: "Create new playlist", ja: "新しいプレイリストを作成") }
static var createSave: String { pick(ko: "저장", en: "Save", ja: "保存") }
static var modifyTitle: String { pick(ko: "재생목록 수정", en: "Edit playlist", ja: "プレイリストを編集") }
@@ -1708,7 +1708,7 @@ enum I18n {
}
static var totalPrefix: String {
pick(ko: "", en: "Total", ja: "合計")
pick(ko: "전체", en: "Total", ja: "すべて")
}
static var countUnit: String {
@@ -2126,7 +2126,6 @@ enum I18n {
static var donationRankingTitle: String { pick(ko: "현재 라이브 후원랭킹", en: "Current live donation ranking", ja: "現在のライブ後援ランキング") }
static var heartRankingTitle: String { pick(ko: "현재 라이브 하트랭킹", en: "Current live heart ranking", ja: "現在のライブハートランキング") }
static var totalLabel: String { pick(ko: "전체", en: "Total", ja: "すべて") }
static var peopleUnit: String { pick(ko: "", en: "people", ja: "") }
static var sumLabel: String { pick(ko: "합계", en: "Sum", ja: "合計") }
static var normalLabel: String { pick(ko: "일반", en: "Normal", ja: "一般") }
static var secretLabel: String { pick(ko: "비밀", en: "Secret", ja: "秘密") }
@@ -2966,11 +2965,7 @@ If you block this user, the following features will be restricted.
}
static var totalPrefix: String {
pick(ko: "", en: "Total", ja: "合計")
}
static var personUnit: String {
pick(ko: "", en: "people", ja: "")
pick(ko: "전체", en: "Total", ja: "すべて")
}
static var emptyFollowingChannels: String {
@@ -3422,7 +3417,7 @@ If you block this user, the following features will be restricted.
}
static func totalContentCount(_ count: Int) -> String {
pick(ko: " \(count)", en: "Total \(count) episodes", ja: "\(count)")
pick(ko: "전체 \(count)", en: "Total \(count) episodes", ja: "すべて\(count)")
}
}
@@ -4323,7 +4318,7 @@ If you block this user, the following features will be restricted.
static var age19Badge: String { pick(ko: "19세", en: "19+", ja: "19+") }
static func publishing(_ days: String) -> String { pick(ko: "\(days) 연재", en: "\(days)", ja: "\(days)連載") }
static var totalEpisodes: (Int) -> String = { count in
pick(ko: " \(count)", en: "Total \(count) episodes", ja: "\(count)")
pick(ko: "전체 \(count)", en: "Total \(count) episodes", ja: "すべて\(count)")
}
// ( )
@@ -4528,11 +4523,7 @@ If you block this user, the following features will be restricted.
enum MyPage {
enum Common {
static var totalPrefix: String {
pick(ko: "", en: "Total", ja: "合計")
}
static var personUnit: String {
pick(ko: "", en: "people", ja: "")
pick(ko: "전체", en: "Total", ja: "すべて")
}
static var countUnit: String {