feat(i18n): 설정 화면 하드코딩 문구를 I18n 키로 통일한다
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user