프로필 수정 화면 문자열 다국어 적용

마이페이지 프로필 수정에서 소셜 링크와 비밀번호 안내 문구를\n다국어로 제공한다.
This commit is contained in:
Yu Sung
2025-12-19 19:59:27 +09:00
parent f67fd5bb26
commit 0ddb5810b1
3 changed files with 81 additions and 24 deletions

View File

@@ -171,29 +171,29 @@ struct ProfileUpdateView: View {
func InstagramAndYoutubeAccountView() -> some View {
VStack(spacing: 16.7) {
UserTextField(
title: "인스타그램",
hint: "인스타그램 URL",
title: I18n.ProfileUpdate.instagram,
hint: I18n.ProfileUpdate.instagramUrlPlaceholder,
isSecure: false,
variable: $viewModel.instagramUrl
)
UserTextField(
title: "유튜브",
hint: "유튜브 URL",
title: I18n.ProfileUpdate.youtube,
hint: I18n.ProfileUpdate.youtubeUrlPlaceholder,
isSecure: false,
variable: $viewModel.youtubeUrl
)
UserTextField(
title: "웹사이트",
hint: "웹사이트 URL",
title: I18n.ProfileUpdate.website,
hint: I18n.ProfileUpdate.websiteUrlPlaceholder,
isSecure: false,
variable: $viewModel.websiteUrl
)
UserTextField(
title: "블로그",
hint: "블로그 URL",
title: I18n.ProfileUpdate.blog,
hint: I18n.ProfileUpdate.blogUrlPlaceholder,
isSecure: false,
variable: $viewModel.blogUrl
)