damus

nostr ios client
git clone git://jb55.com/damus
Log | Files | Refs | README | LICENSE

commit ee94f67b945b80ac5014aa8931fdf4be5998063e
parent 3a25075473b969992f6b5548d15046b125867e97
Author: Terry Yiu <git@tyiu.xyz>
Date:   Wed, 30 Apr 2025 22:29:40 -0400

Remove arbitrary newline from localizable string

Signed-off-by: Terry Yiu <git@tyiu.xyz>

Diffstat:
Mdamus/Views/NoteContentView.swift | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/damus/Views/NoteContentView.swift b/damus/Views/NoteContentView.swift @@ -401,7 +401,7 @@ struct BlurOverlayView: View { .foregroundStyle(.white) .bold() .padding(EdgeInsets(top: 5, leading: 10, bottom: 0, trailing: 10)) - Text(NSLocalizedString("Media from someone you \n don't follow", comment: "Label on the image blur mask")) + Text(NSLocalizedString("Media from someone you don't follow", comment: "Label on the image blur mask")) .multilineTextAlignment(.center) .foregroundStyle(Color.white) .font(.title2)