diff --git src/wp-includes/media.php src/wp-includes/media.php
index 65cf4c7aae..75d74a4c7d 100644
|
|
function wp_enqueue_media( $args = array() ) { |
3495 | 3495 | 'unattached' => __( 'Unattached' ), |
3496 | 3496 | 'trash' => _x( 'Trash', 'noun' ), |
3497 | 3497 | 'uploadedToThisPost' => $post_type_object->labels->uploaded_to_this_item, |
3498 | | 'warnDelete' => __( "You are about to permanently delete this item.\nThis will remove it from your site.\n 'Cancel' to stop, 'OK' to delete." ), |
3499 | | 'warnBulkDelete' => __( "You are about to permanently delete these items.\nThis will remove them from your site.\n 'Cancel' to stop, 'OK' to delete." ), |
| 3498 | 'warnDelete' => __( "You are about to permanently delete this item from your site.\nThis cannot be undone.\n 'Cancel' to stop, 'OK' to delete." ), |
| 3499 | 'warnBulkDelete' => __( "You are about to permanently delete these items from your site.\nThis cannot be undone.\n 'Cancel' to stop, 'OK' to delete." ), |
3500 | 3500 | 'warnBulkTrash' => __( "You are about to trash these items.\n 'Cancel' to stop, 'OK' to delete." ), |
3501 | 3501 | 'bulkSelect' => __( 'Bulk Select' ), |
3502 | 3502 | 'cancelSelection' => __( 'Cancel Selection' ), |
diff --git src/wp-includes/script-loader.php src/wp-includes/script-loader.php
index 43209721f5..ddf392d2a8 100644
|
|
function wp_default_scripts( &$scripts ) { |
77 | 77 | |
78 | 78 | $scripts->add( 'common', "/wp-admin/js/common$suffix.js", array('jquery', 'hoverIntent', 'utils'), false, 1 ); |
79 | 79 | did_action( 'init' ) && $scripts->localize( 'common', 'commonL10n', array( |
80 | | 'warnDelete' => __( "You are about to permanently delete these items.\nThis will remove them from your site.\n 'Cancel' to stop, 'OK' to delete." ), |
| 80 | 'warnDelete' => __( "You are about to permanently delete these items from your site.\nThis cannot be undone.\n 'Cancel' to stop, 'OK' to delete." ), |
81 | 81 | 'dismiss' => __( 'Dismiss this notice.' ), |
82 | 82 | 'collapseMenu' => __( 'Collapse Main menu' ), |
83 | 83 | 'expandMenu' => __( 'Expand Main menu' ), |