Skip to content

Commit 49b566d

Browse files
committed
Update replace featured image strings
Strive for a balance of conciseness and clarity.
1 parent adcbab9 commit 49b566d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

WordPress/Classes/ViewRelated/Gutenberg/GutenbergViewController.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -709,12 +709,12 @@ extension GutenbergViewController: GutenbergBridgeDelegate {
709709
message: NSLocalizedString("You already have a featured image set. Do you want to replace it with the new image?", comment: "Main message on dialog that prompts user to confirm or cancel the replacement of a featured image."),
710710
preferredStyle: .actionSheet)
711711

712-
let replaceAction = UIAlertAction(title: NSLocalizedString("Replace with new image", comment: "Button to confirm the replacement of a featured image."), style: .default) { (action) in
712+
let replaceAction = UIAlertAction(title: NSLocalizedString("Replace featured image", comment: "Button to confirm the replacement of a featured image."), style: .default) { (action) in
713713
self.featuredImageHelper.setFeaturedImage(mediaID: mediaID)
714714
}
715715

716716
alertController.addAction(replaceAction)
717-
alertController.addCancelActionWithTitle(NSLocalizedString("Keep current featured image", comment: "Button to cancel the replacement of a featured image."))
717+
alertController.addCancelActionWithTitle(NSLocalizedString("Keep current", comment: "Button to cancel the replacement of a featured image."))
718718

719719
alertController.popoverPresentationController?.sourceView = view
720720
alertController.popoverPresentationController?.sourceRect = view.bounds

0 commit comments

Comments
 (0)