사용하지 않는 불필요한 string catalog 제거

This commit is contained in:
Yu Sung
2025-12-17 11:21:50 +09:00
parent d2ff2782fe
commit da2e8d0209
2 changed files with 2 additions and 52 deletions

View File

@@ -4113,23 +4113,6 @@
} }
} }
}, },
"목소리로 만나는 새로운 세계" : {
"extractionState" : "stale",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "A new world of voices"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
"value" : "声で出会う新しい世界"
}
}
}
},
"무료" : { "무료" : {
"localizations" : { "localizations" : {
"en" : { "en" : {
@@ -5154,23 +5137,6 @@
} }
} }
}, },
"소다라이브" : {
"extractionState" : "stale",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "SodaLive"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
"value" : "ソダライブ"
}
}
}
},
"소장" : { "소장" : {
"localizations" : { "localizations" : {
"en" : { "en" : {
@@ -7523,22 +7489,6 @@
} }
} }
}, },
"전체 " : {
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "All "
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
"value" : "すべて "
}
}
}
},
"전체보기" : { "전체보기" : {
"localizations" : { "localizations" : {
"en" : { "en" : {

View File

@@ -23,10 +23,10 @@ struct NewCharacterListView: View {
VStack(alignment: .leading, spacing: 12) { VStack(alignment: .leading, spacing: 12) {
// n // n
HStack(spacing: 0) { HStack(spacing: 0) {
Text("전체 ") Text("전체")
.font(.custom(Font.preRegular.rawValue, size: 12)) .font(.custom(Font.preRegular.rawValue, size: 12))
.foregroundColor(Color(hex: "e2e2e2")) .foregroundColor(Color(hex: "e2e2e2"))
Text("\(viewModel.totalCount)") Text(" \(viewModel.totalCount)")
.font(.custom(Font.preRegular.rawValue, size: 12)) .font(.custom(Font.preRegular.rawValue, size: 12))
.foregroundColor(Color(hex: "ff5c49")) .foregroundColor(Color(hex: "ff5c49"))
Text("") Text("")