restore localization for custom tabs

Signed-off-by: William Casarin <jb55@jb55.com>
This commit is contained in:
William Casarin
2024-07-14 21:56:15 -07:00
committed by Daniel D’Aquino
parent e8fae19b97
commit 8ab1c6a899
5 changed files with 12 additions and 12 deletions
+2 -2
View File
@@ -435,8 +435,8 @@ struct ProfileView: View {
VStack(spacing: 0) {
CustomPicker(tabs: [
("Notes", FilterState.posts),
("Notes & Replies", FilterState.posts_and_replies)
(NSLocalizedString("Notes", comment: "Label for filter for seeing only notes (instead of notes and replies)."), FilterState.posts),
(NSLocalizedString("Notes & Replies", comment: "Label for filter for seeing notes and replies (instead of only notes)."), FilterState.posts_and_replies)
], selection: $filter_state)
Divider()
.frame(height: 1)