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

@@ -31,9 +31,9 @@ struct MutedEventView: View {
.foregroundColor(DamusColors.adaptableGrey)
HStack {
Text("Post from a user you've muted", comment: "Text to indicate that what is being shown is a post from a user who has been muted.")
Text("Note from a user you've muted", comment: "Text to indicate that what is being shown is a note from a user who has been muted.")
Spacer()
Button(shown ? NSLocalizedString("Hide", comment: "Button to hide a post from a user who has been muted.") : NSLocalizedString("Show", comment: "Button to show a post from a user who has been muted.")) {
Button(shown ? NSLocalizedString("Hide", comment: "Button to hide a note from a user who has been muted.") : NSLocalizedString("Show", comment: "Button to show a note from a user who has been muted.")) {
shown.toggle()
}
}