Add comments to localized strings

This commit is contained in:
2023-01-06 22:15:12 -05:00
parent dcf328e7ac
commit 887eb902bf
32 changed files with 152 additions and 143 deletions

View File

@@ -59,7 +59,7 @@ struct EventDetailView: View {
Group {
switch cev {
case .collapsed(let c):
Text("··· \(c.count) other notes ···")
Text(String(format: NSLocalizedString("collapsed_event_view_other_notes", comment: "Text to indicate that the thread was collapsed and that there are other notes to view if tapped."), c.count))
.padding([.top,.bottom], 8)
.font(.footnote)
.foregroundColor(.gray)
@@ -114,7 +114,7 @@ struct EventDetailView: View {
scroll_after_load(thread: thread, proxy: proxy)
}
}
.navigationBarTitle("Thread")
.navigationBarTitle(NSLocalizedString("Thread", comment: "Navigation bar title for note thread."))
}