From fb6b6235640cdb90cf9670bd4931e5fb081f004b Mon Sep 17 00:00:00 2001 From: Yu Sung Date: Fri, 23 Jan 2026 06:13:02 +0900 Subject: [PATCH] =?UTF-8?q?=EB=8B=89=EB=84=A4=EC=9E=84=20=EB=B3=80?= =?UTF-8?q?=EA=B2=BD=20=ED=99=94=EB=A9=B4=20=EA=B5=AD=EC=A0=9C=ED=99=94?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SodaLive/Sources/I18n/I18n.swift | 8 ++++++++ .../MyPage/Profile/Nickname/NicknameUpdateView.swift | 4 ++-- 2 files changed, 10 insertions(+), 2 deletions(-) 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 )