feat(i18n): 사용자 화면 문구를 I18n 키로 통일한다
This commit is contained in:
@@ -25,7 +25,7 @@ struct PushNotificationListItemView: View {
|
||||
.appFont(size: 13.3, weight: .medium)
|
||||
.foregroundColor(Color(hex: "bbbbbb"))
|
||||
|
||||
Text(" · \(item.relativeSentAtText())")
|
||||
Text("\(I18n.NotificationList.timestampSeparator)\(item.relativeSentAtText())")
|
||||
.appFont(size: 10, weight: .medium)
|
||||
.foregroundColor(Color(hex: "909090"))
|
||||
}
|
||||
|
||||
@@ -39,7 +39,7 @@ struct PushNotificationListView: View {
|
||||
.resizable()
|
||||
.frame(width: 60, height: 60)
|
||||
|
||||
Text("알림이 없습니다.")
|
||||
Text(I18n.NotificationList.emptyMessage)
|
||||
.appFont(size: 10.7, weight: .medium)
|
||||
.foregroundColor(Color(hex: "bbbbbb"))
|
||||
}
|
||||
@@ -61,7 +61,7 @@ struct PushNotificationListView: View {
|
||||
|
||||
private var titleBar: some View {
|
||||
ZStack {
|
||||
DetailNavigationBar(title: "알림")
|
||||
DetailNavigationBar(title: I18n.Common.alertTitle)
|
||||
|
||||
HStack(spacing: 0) {
|
||||
Spacer()
|
||||
|
||||
Reference in New Issue
Block a user