feat(i18n): 사용자 화면 문구를 I18n 키로 통일한다

This commit is contained in:
Yu Sung
2026-03-31 17:37:29 +09:00
parent b2f66cf408
commit 8e4fe7a534
18 changed files with 551 additions and 256 deletions

View File

@@ -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"))
}