Export strings for translation

This commit is contained in:
2023-04-21 23:08:48 +02:00
parent 00aa897f05
commit 3440c828e3
5 changed files with 33 additions and 13 deletions

View File

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