fix(i18n): 전체 수량 표기를 통일한다
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user