diff --git a/wp-admin/edit-comments.php b/wp-admin/edit-comments.php index 68149aea67..ff4373759d 100644 --- a/wp-admin/edit-comments.php +++ b/wp-admin/edit-comments.php @@ -154,7 +154,7 @@ if ( isset($_GET['approved']) || isset($_GET['deleted']) || isset($_GET['trashed if ( $spammed > 0 ) { printf( _n( '%s comment marked as spam.', '%s comments marked as spam.', $spammed ), $spammed ); $ids = isset($_GET['ids']) ? $_GET['ids'] : 0; - echo ' ' . __('Undo?') . '
'; + echo ' ' . __('Undo') . '
'; } if ( $unspammed > 0 ) { printf( _n( '%s comment restored from the spam', '%s comments restored from the spam', $unspammed ), $unspammed ); @@ -163,7 +163,7 @@ if ( isset($_GET['approved']) || isset($_GET['deleted']) || isset($_GET['trashed if ( $trashed > 0 ) { printf( _n( '%s comment moved to the trash.', '%s comments moved to the trash.', $trashed ), $trashed ); $ids = isset($_GET['ids']) ? $_GET['ids'] : 0; - echo ' ' . __('Undo?') . '
'; + echo ' ' . __('Undo') . '
'; } if ( $untrashed > 0 ) { printf( _n( '%s comment restored from the trash', '%s comments restored from the trash', $untrashed ), $untrashed ); diff --git a/wp-admin/edit-pages.php b/wp-admin/edit-pages.php index f570f2071e..557d106f73 100644 --- a/wp-admin/edit-pages.php +++ b/wp-admin/edit-pages.php @@ -167,7 +167,7 @@ if ( isset($_GET['deleted']) && (int) $_GET['deleted'] ) { if ( isset($_GET['trashed']) && (int) $_GET['trashed'] ) { printf( _n( 'Page moved to the trash.', '%s pages moved to the trash.', $_GET['trashed'] ), number_format_i18n( $_GET['trashed'] ) ); $ids = isset($_GET['ids']) ? $_GET['ids'] : 0; - echo ' ' . __('Undo?') . '
'; + echo ' ' . __('Undo') . '
'; unset($_GET['trashed']); } if ( isset($_GET['untrashed']) && (int) $_GET['untrashed'] ) { diff --git a/wp-admin/edit.php b/wp-admin/edit.php index 445bd1496b..ca17e9b6ee 100644 --- a/wp-admin/edit.php +++ b/wp-admin/edit.php @@ -168,7 +168,7 @@ if ( isset($_GET['deleted']) && (int) $_GET['deleted'] ) { if ( isset($_GET['trashed']) && (int) $_GET['trashed'] ) { printf( _n( 'Post moved to the trash.', '%s posts moved to the trash.', $_GET['trashed'] ), number_format_i18n( $_GET['trashed'] ) ); $ids = isset($_GET['ids']) ? $_GET['ids'] : 0; - echo ' ' . __('Undo?') . '
'; + echo ' ' . __('Undo') . '
'; unset($_GET['trashed']); } diff --git a/wp-admin/includes/media.php b/wp-admin/includes/media.php index b58792087f..9e4a6686e1 100644 --- a/wp-admin/includes/media.php +++ b/wp-admin/includes/media.php @@ -1233,7 +1233,7 @@ function get_media_item( $attachment_id, $args = null ) { if ( !EMPTY_TRASH_DAYS ) $delete = "" . __('Delete Permanently') . ""; else - $delete = "" . __('Move to Trash') . " " . __('Undo?') . ""; + $delete = "" . __('Move to Trash') . " " . __('Undo') . ""; } else { $delete = ''; } diff --git a/wp-admin/upload.php b/wp-admin/upload.php index 768714074d..9d684d9950 100644 --- a/wp-admin/upload.php +++ b/wp-admin/upload.php @@ -206,7 +206,7 @@ if ( isset($_GET['untrashed']) && (int) $_GET['untrashed'] ) { $messages[1] = __('Media attachment updated.'); $messages[2] = __('Media permanently deleted.'); $messages[3] = __('Error saving media attachment.'); -$messages[4] = __('Media moved to the trash.') . ' ' . __('Undo?') . ''; +$messages[4] = __('Media moved to the trash.') . ' ' . __('Undo') . ''; $messages[5] = __('Media restored from the trash.'); if ( isset($_GET['message']) && (int) $_GET['message'] ) {