프로필과 시리즈 문구를 I18n으로 정리
프로필/시리즈 화면의 문자열을 I18n 및 Localizable로 통일한다. 채널 공유·예약·유료 라이브 관련 안내 문구를 다국어로 제공한다.
This commit is contained in:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user