damus

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

commit 72d141af61c69767aa5105fb065fb09c66c25095
parent 4d43e590e0a075778e90b87b179ce8f100f1c551
Author: William Casarin <jb55@jb55.com>
Date:   Thu, 22 Jun 2023 10:19:21 +0200

wording: send a "message" with the zap, not "reply"

Diffstat:
Mdamus/Views/Zaps/CustomizeZapView.swift | 4++--
Mdamus/en-US.lproj/Localizable.strings | 0
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/damus/Views/Zaps/CustomizeZapView.swift b/damus/Views/Zaps/CustomizeZapView.swift @@ -160,12 +160,12 @@ struct CustomizeZapView: View { var ZapReply: some View { HStack { if #available(iOS 16.0, *) { - TextField(NSLocalizedString("Send a reply with your zap...", comment: "Placeholder text for a comment to send as part of a zap to the user."), text: $comment, axis: .vertical) + TextField(NSLocalizedString("Send a message with your zap...", comment: "Placeholder text for a comment to send as part of a zap to the user."), text: $comment, axis: .vertical) .autocorrectionDisabled(true) .textInputAutocapitalization(.never) .lineLimit(5) } else { - TextField(NSLocalizedString("Send a reply with your zap...", comment: "Placeholder text for a comment to send as part of a zap to the user."), text: $comment) + TextField(NSLocalizedString("Send a message with your zap...", comment: "Placeholder text for a comment to send as part of a zap to the user."), text: $comment) .autocorrectionDisabled(true) .textInputAutocapitalization(.never) } diff --git a/damus/en-US.lproj/Localizable.strings b/damus/en-US.lproj/Localizable.strings Binary files differ.