fix(main): 추천 홈 후속 검증을 보완한다

This commit is contained in:
Yu Sung
2026-07-31 21:12:32 +09:00
parent 3ae2dc19d6
commit a8fe416cb5
38 changed files with 3161 additions and 163 deletions

View File

@@ -453,9 +453,9 @@ enum I18n {
static var pinLimitDesc: String {
pick(
ko: "이 콘텐츠를 고정하시겠어요? 채널에 콘텐츠를 최대 3개까지 고정할 수 있습니다. 이 콘텐츠를 고정하면 가장 오래된 콘텐츠가 대체됩니다.",
en: "Do you want to pin this content? You can pin up to 3 contents in a channel. Pinning this will replace the oldest pinned content.",
ja: "このコンテンツを固定しますか?チャンネルには最大3件まで固定できます。このコンテンツを固定すると最も古い固定コンテンツが置き換えられます。"
ko: "이 콘텐츠를 고정하시겠어요? 채널에 콘텐츠를 최대 9개까지 고정할 수 있습니다. 이 콘텐츠를 고정하면 가장 오래된 콘텐츠가 대체됩니다.",
en: "Do you want to pin this content? You can pin up to 9 contents in a channel. Pinning this will replace the oldest pinned content.",
ja: "このコンテンツを固定しますか?チャンネルには最大9件まで固定できます。このコンテンツを固定すると最も古い固定コンテンツが置き換えられます。"
)
}
@@ -3637,6 +3637,18 @@ If you block this user, the following features will be restricted.
pick(ko: "모두 팔로우 완료", en: "All followed", ja: "すべてフォロー済み")
}
static var followAllConfirmTitle: String {
pick(ko: "모두 팔로우할까요?", en: "Follow all creators?", ja: "すべてのクリエイターをフォローしますか?")
}
static var followAllConfirmDescription: String {
pick(ko: "추천된 크리에이터를 모두 팔로우합니다.", en: "Youll follow all recommended creators.", ja: "おすすめのクリエイターをすべてフォローします。")
}
static var followAllConfirmAction: String {
pick(ko: "팔로우 하기", en: "Follow", ja: "フォローする")
}
static var more: String {
pick(ko: "더보기", en: "More", ja: "もっと見る")
}