feat(home): 랭킹 소식 카드를 추가한다

This commit is contained in:
Yu Sung
2026-07-01 15:27:39 +09:00
parent 9ecb663f7b
commit 54d2787be0
4 changed files with 146 additions and 1 deletions

View File

@@ -3127,6 +3127,22 @@ If you block this user, the following features will be restricted.
pick(ko: "최근 소식", en: "Recent news", ja: "最近のニュース")
}
static func rankingMessagePrefix(_ title: String) -> String {
pick(
ko: "\(title)님이 이번 주 랭킹 ",
en: "\(title) reached ",
ja: "\(title)さんが今週のランキング"
)
}
static func rankingRankText(_ rank: Int) -> String {
pick(ko: "\(rank)", en: "No. \(rank)", ja: "\(rank)")
}
static var rankingMessageSuffix: String {
pick(ko: "에 올랐어요!", en: " in this week's ranking!", ja: "に入りました!")
}
static var audioTag: String {
pick(ko: "오디오", en: "Audio", ja: "オーディオ")
}