diff --git a/SodaLive/Sources/I18n/I18n.swift b/SodaLive/Sources/I18n/I18n.swift index c88fb3b..76b10f2 100644 --- a/SodaLive/Sources/I18n/I18n.swift +++ b/SodaLive/Sources/I18n/I18n.swift @@ -1074,6 +1074,14 @@ enum I18n { pick(ko: "비밀번호 변경하기", en: "Change password", ja: "パスワードを変更する") } + static var nicknameTitle: String { + pick(ko: "닉네임(최대 12자)", en: "Nickname (max 12)", ja: "ハンドルネーム(最大12文字)") + } + + static var nicknameHint: String { + pick(ko: "닉네임", en: "Nickname", ja: "ハンドルネーム") + } + static var profileImageUpdateFailed: String { pick( ko: "프로필 이미지를 업데이트 하지 못했습니다.\n계속 같은 문제가 발생할 경우 고객센터로 문의 주시기 바랍니다.", diff --git a/SodaLive/Sources/MyPage/Profile/Nickname/NicknameUpdateView.swift b/SodaLive/Sources/MyPage/Profile/Nickname/NicknameUpdateView.swift index 9d8060a..f83e976 100644 --- a/SodaLive/Sources/MyPage/Profile/Nickname/NicknameUpdateView.swift +++ b/SodaLive/Sources/MyPage/Profile/Nickname/NicknameUpdateView.swift @@ -32,8 +32,8 @@ struct NicknameUpdateView: View { .frame(width: screenSize().width - 40, alignment: .leading) UserTextField( - title: "닉네임(최대 12자)", - hint: "닉네임", + title: I18n.ProfileUpdate.nicknameTitle, + hint: I18n.ProfileUpdate.nicknameHint, isSecure: false, variable: $viewModel.nickname )