PostView: change wording on upload confirmation

This commit is contained in:
William Casarin
2023-04-15 10:26:36 -07:00
parent fad0a6b783
commit 8a8d2ebbc3

View File

@@ -262,7 +262,7 @@ struct PostView: View {
} onVideoPicked: { url in } onVideoPicked: { url in
self.mediaToUpload = .video(url) self.mediaToUpload = .video(url)
} }
.alert("Confirm upload?", isPresented: $image_upload_confirm) { .alert("Are you sure you want to upload this image?", isPresented: $image_upload_confirm) {
Button(NSLocalizedString("Upload", comment: "Button to proceed with uploading."), role: .none) { Button(NSLocalizedString("Upload", comment: "Button to proceed with uploading."), role: .none) {
if let mediaToUpload { if let mediaToUpload {
self.handle_upload(media: mediaToUpload) self.handle_upload(media: mediaToUpload)