닉네임 변경 화면 국제화

This commit is contained in:
Yu Sung
2026-01-23 06:13:02 +09:00
parent 791ebb0242
commit fb6b623564
2 changed files with 10 additions and 2 deletions

View File

@@ -1074,6 +1074,14 @@ enum I18n {
pick(ko: "비밀번호 변경하기", en: "Change password", ja: "パスワードを変更する") 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 { static var profileImageUpdateFailed: String {
pick( pick(
ko: "프로필 이미지를 업데이트 하지 못했습니다.\n계속 같은 문제가 발생할 경우 고객센터로 문의 주시기 바랍니다.", ko: "프로필 이미지를 업데이트 하지 못했습니다.\n계속 같은 문제가 발생할 경우 고객센터로 문의 주시기 바랍니다.",

View File

@@ -32,8 +32,8 @@ struct NicknameUpdateView: View {
.frame(width: screenSize().width - 40, alignment: .leading) .frame(width: screenSize().width - 40, alignment: .leading)
UserTextField( UserTextField(
title: "닉네임(최대 12자)", title: I18n.ProfileUpdate.nicknameTitle,
hint: "닉네임", hint: I18n.ProfileUpdate.nicknameHint,
isSecure: false, isSecure: false,
variable: $viewModel.nickname variable: $viewModel.nickname
) )