diff --git a/damus/Views/Zaps/CustomizeZapView.swift b/damus/Views/Zaps/CustomizeZapView.swift index 734fd950..b8c20e85 100644 --- 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 index 77efcf85..f54988f8 100644 Binary files a/damus/en-US.lproj/Localizable.strings and b/damus/en-US.lproj/Localizable.strings differ