Changeset 40650
- Timestamp:
- 05/12/2017 12:49:14 PM (7 years ago)
- Location:
- trunk/src/wp-includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/media.php
r40628 r40650 3498 3498 'trash' => _x( 'Trash', 'noun' ), 3499 3499 'uploadedToThisPost' => $post_type_object->labels->uploaded_to_this_item, 3500 'warnDelete' => __( "You are about to permanently delete this item .\nThis will remove it from your site.\n 'Cancel' to stop, 'OK' to delete." ),3501 'warnBulkDelete' => __( "You are about to permanently delete these items .\nThis will remove them from your site.\n 'Cancel' to stop, 'OK' to delete." ),3500 'warnDelete' => __( "You are about to permanently delete this item from your site.\nThis action cannot be undone.\n 'Cancel' to stop, 'OK' to delete." ), 3501 'warnBulkDelete' => __( "You are about to permanently delete these items from your site.\nThis action cannot be undone.\n 'Cancel' to stop, 'OK' to delete." ), 3502 3502 'warnBulkTrash' => __( "You are about to trash these items.\n 'Cancel' to stop, 'OK' to delete." ), 3503 3503 'bulkSelect' => __( 'Bulk Select' ), … … 3746 3746 $srcs = array(); 3747 3747 3748 $shortcode_attrs = shortcode_parse_atts( $shortcode[3] ); 3748 $shortcode_attrs = shortcode_parse_atts( $shortcode[3] ); 3749 3749 if ( ! is_array( $shortcode_attrs ) ) { 3750 3750 $shortcode_attrs = array(); -
trunk/src/wp-includes/script-loader.php
r40640 r40650 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 action cannot be undone.\n 'Cancel' to stop, 'OK' to delete." ), 81 81 'dismiss' => __( 'Dismiss this notice.' ), 82 82 'collapseMenu' => __( 'Collapse Main menu' ),
Note: See TracChangeset
for help on using the changeset viewer.