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

@@ -20,7 +20,7 @@ struct FollowCreatorView: View {
VStack(spacing: 0) { VStack(spacing: 0) {
DetailNavigationBar(title: I18n.Follow.followingListTitle) DetailNavigationBar(title: I18n.Follow.followingListTitle)
HStack(spacing: 0) { HStack(spacing: 4) {
Text(I18n.Follow.totalPrefix) Text(I18n.Follow.totalPrefix)
.appFont(size: 13.3, weight: .medium) .appFont(size: 13.3, weight: .medium)
.foregroundColor(Color.grayee) .foregroundColor(Color.grayee)
@@ -29,10 +29,6 @@ struct FollowCreatorView: View {
.appFont(size: 13.3, weight: .medium) .appFont(size: 13.3, weight: .medium)
.foregroundColor(Color.mainRed3) .foregroundColor(Color.mainRed3)
Text(I18n.Follow.personUnit)
.appFont(size: 13.3, weight: .medium)
.foregroundColor(Color.grayee)
Spacer() Spacer()
} }
.padding(.horizontal, 13.3) .padding(.horizontal, 13.3)

View File

@@ -799,8 +799,8 @@ enum I18n {
static var emptyTitle: String { pick(ko: "재생목록이 비어있습니다.", en: "Your playlist is empty.", ja: "プレイリストが空です。") } 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 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 var totalLabel: String { pick(ko: "전체", en: "Total", ja: "すべて") }
static func totalCount(_ 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 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 createTitle: String { pick(ko: "새 재생목록 만들기", en: "Create new playlist", ja: "新しいプレイリストを作成") }
static var createSave: String { pick(ko: "저장", en: "Save", ja: "保存") } static var createSave: String { pick(ko: "저장", en: "Save", ja: "保存") }
static var modifyTitle: String { pick(ko: "재생목록 수정", en: "Edit playlist", ja: "プレイリストを編集") } static var modifyTitle: String { pick(ko: "재생목록 수정", en: "Edit playlist", ja: "プレイリストを編集") }
@@ -1708,7 +1708,7 @@ enum I18n {
} }
static var totalPrefix: String { static var totalPrefix: String {
pick(ko: "", en: "Total", ja: "合計") pick(ko: "전체", en: "Total", ja: "すべて")
} }
static var countUnit: String { static var countUnit: String {
@@ -2126,7 +2126,6 @@ enum I18n {
static var donationRankingTitle: String { pick(ko: "현재 라이브 후원랭킹", en: "Current live donation ranking", ja: "現在のライブ後援ランキング") } 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 heartRankingTitle: String { pick(ko: "현재 라이브 하트랭킹", en: "Current live heart ranking", ja: "現在のライブハートランキング") }
static var totalLabel: String { pick(ko: "전체", en: "Total", 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 sumLabel: String { pick(ko: "합계", en: "Sum", ja: "合計") }
static var normalLabel: String { pick(ko: "일반", en: "Normal", ja: "一般") } static var normalLabel: String { pick(ko: "일반", en: "Normal", ja: "一般") }
static var secretLabel: String { pick(ko: "비밀", en: "Secret", 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 { static var totalPrefix: String {
pick(ko: "", en: "Total", ja: "合計") pick(ko: "전체", en: "Total", ja: "すべて")
}
static var personUnit: String {
pick(ko: "", en: "people", ja: "")
} }
static var emptyFollowingChannels: String { 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 { 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 var age19Badge: String { pick(ko: "19세", en: "19+", ja: "19+") }
static func publishing(_ days: String) -> String { pick(ko: "\(days) 연재", en: "\(days)", ja: "\(days)連載") } static func publishing(_ days: String) -> String { pick(ko: "\(days) 연재", en: "\(days)", ja: "\(days)連載") }
static var totalEpisodes: (Int) -> String = { count in 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 MyPage {
enum Common { enum Common {
static var totalPrefix: String { static var totalPrefix: String {
pick(ko: "", en: "Total", ja: "合計") pick(ko: "전체", en: "Total", ja: "すべて")
}
static var personUnit: String {
pick(ko: "", en: "people", ja: "")
} }
static var countUnit: String { static var countUnit: String {

View File

@@ -32,7 +32,7 @@ struct LiveRoomDonationRankingDialog: View {
LiveRoomDonationRankingTotalCanView(totalCan: donationStatus.totalCan, totalSecretCan: donationStatus.totalSecretCan) LiveRoomDonationRankingTotalCanView(totalCan: donationStatus.totalCan, totalSecretCan: donationStatus.totalSecretCan)
.padding(.top, 25) .padding(.top, 25)
HStack(spacing: 0) { HStack(spacing: 4) {
Text(I18n.CreateLive.totalLabel) Text(I18n.CreateLive.totalLabel)
.appFont(size: 14.7, weight: .medium) .appFont(size: 14.7, weight: .medium)
.foregroundColor(Color.grayee) .foregroundColor(Color.grayee)
@@ -42,10 +42,6 @@ struct LiveRoomDonationRankingDialog: View {
.foregroundColor(Color.button) .foregroundColor(Color.button)
.padding(.leading, 6.7) .padding(.leading, 6.7)
Text(I18n.CreateLive.peopleUnit)
.appFont(size: 12, weight: .medium)
.foregroundColor(Color.gray77)
Spacer() Spacer()
} }
.padding(.top, 13.3) .padding(.top, 13.3)

View File

@@ -55,7 +55,7 @@ struct LiveRoomHeartRankingDialog: View {
.cornerRadius(8) .cornerRadius(8)
.padding(.top, 25) .padding(.top, 25)
HStack(spacing: 0) { HStack(spacing: 4) {
Text(I18n.CreateLive.totalLabel) Text(I18n.CreateLive.totalLabel)
.appFont(size: 14.7, weight: .medium) .appFont(size: 14.7, weight: .medium)
.foregroundColor(Color.grayee) .foregroundColor(Color.grayee)
@@ -65,10 +65,6 @@ struct LiveRoomHeartRankingDialog: View {
.foregroundColor(Color.button) .foregroundColor(Color.button)
.padding(.leading, 6.7) .padding(.leading, 6.7)
Text(I18n.CreateLive.peopleUnit)
.appFont(size: 12, weight: .medium)
.foregroundColor(Color.gray77)
Spacer() Spacer()
} }
.padding(.top, 13.3) .padding(.top, 13.3)

View File

@@ -16,7 +16,7 @@ struct BlockMemberListView: View {
VStack(spacing: 0) { VStack(spacing: 0) {
DetailNavigationBar(title: I18n.MyPage.Block.listTitle) DetailNavigationBar(title: I18n.MyPage.Block.listTitle)
HStack(spacing: 0) { HStack(spacing: 4) {
Text(I18n.MyPage.Common.totalPrefix) Text(I18n.MyPage.Common.totalPrefix)
.appFont(size: 13.3, weight: .medium) .appFont(size: 13.3, weight: .medium)
.foregroundColor(Color.grayee) .foregroundColor(Color.grayee)
@@ -25,10 +25,6 @@ struct BlockMemberListView: View {
.appFont(size: 13.3, weight: .medium) .appFont(size: 13.3, weight: .medium)
.foregroundColor(Color.mainRed3) .foregroundColor(Color.mainRed3)
Text(I18n.MyPage.Common.personUnit)
.appFont(size: 13.3, weight: .medium)
.foregroundColor(Color.grayee)
Spacer() Spacer()
} }
.padding(.horizontal, 13.3) .padding(.horizontal, 13.3)