feat(i18n): 설정 화면 하드코딩 문구를 I18n 키로 통일한다

This commit is contained in:
Yu Sung
2026-03-31 19:46:21 +09:00
parent 3f61a08a04
commit 4c170e0f97
17 changed files with 354 additions and 94 deletions

View File

@@ -20,7 +20,7 @@ struct NotificationSettingsDialog: View {
VStack(spacing: 0) {
HStack(spacing: 0) {
Text("라이브 알림")
Text(I18n.Settings.Notification.live)
.appFont(size: 15, weight: .bold)
.foregroundColor(Color(hex: "eeeeee"))
@@ -40,7 +40,7 @@ struct NotificationSettingsDialog: View {
.padding(.vertical, 13)
HStack(spacing: 0) {
Text("콘텐츠 업로드 알림")
Text(I18n.Settings.Notification.contentUpload)
.appFont(size: 15, weight: .bold)
.foregroundColor(Color(hex: "eeeeee"))
@@ -60,7 +60,7 @@ struct NotificationSettingsDialog: View {
.padding(.vertical, 13)
HStack(spacing: 0) {
Text("메시지 알림")
Text(I18n.Settings.Notification.message)
.appFont(size: 15, weight: .bold)
.foregroundColor(Color(hex: "eeeeee"))
@@ -74,7 +74,7 @@ struct NotificationSettingsDialog: View {
}
}
Text("확인")
Text(I18n.Settings.Notification.confirm)
.appFont(size: 15.3, weight: .bold)
.foregroundColor(Color(hex: "ffffff"))
.padding(.vertical, 16)