Rename all usages of the term Post as a noun to Note to conform to the Nostr spec

Changelog-Fixed: Rename all usages of the term Post as a noun to Note to conform to the Nostr spec
This commit is contained in:
2023-06-07 13:06:20 -04:00
committed by William Casarin
parent 60a892d73b
commit baa5454e2a
16 changed files with 194 additions and 178 deletions

View File

@@ -491,8 +491,8 @@ struct ProfileView: View {
VStack(spacing: 0) {
CustomPicker(selection: $filter_state, content: {
Text("Posts", comment: "Label for filter for seeing only your posts (instead of posts and replies).").tag(FilterState.posts)
Text("Posts & Replies", comment: "Label for filter for seeing your posts and replies (instead of only your posts).").tag(FilterState.posts_and_replies)
Text("Notes", comment: "Label for filter for seeing only your notes (instead of notes and replies).").tag(FilterState.posts)
Text("Notes & Replies", comment: "Label for filter for seeing your notes and replies (instead of only your notes).").tag(FilterState.posts_and_replies)
})
Divider()
.frame(height: 1)