프로필과 시리즈 문구를 I18n으로 정리

프로필/시리즈 화면의 문자열을 I18n 및 Localizable로 통일한다.
채널 공유·예약·유료 라이브 관련 안내 문구를 다국어로 제공한다.
This commit is contained in:
Yu Sung
2025-12-18 17:52:02 +09:00
parent 982a17bb41
commit 8bcbd3aca0
7 changed files with 182 additions and 90 deletions

View File

@@ -34,7 +34,7 @@ struct CreatorFollowNotifyDialog: View {
CreatorFollowNotifyItem(
image: "ic_notify_all",
title: "전체",
title: I18n.MemberChannel.all,
onTapGesture: {
isShowing = false
onClickNotifyAll()
@@ -42,7 +42,7 @@ struct CreatorFollowNotifyDialog: View {
)
CreatorFollowNotifyItem(
image: "ic_notify_none",
title: "없음",
title: I18n.MemberChannel.none,
onTapGesture: {
isShowing = false
onClickNotifyNone()
@@ -50,7 +50,7 @@ struct CreatorFollowNotifyDialog: View {
)
CreatorFollowNotifyItem(
image: "ic_avatar_unfollow",
title: "팔로우 취소",
title: I18n.MemberChannel.unfollow,
onTapGesture: {
isShowing = false
onClickUnFollow()