Ticket #29739: 29739.patch
File 29739.patch, 1.9 KB (added by , 10 years ago) |
---|
-
src/wp-includes/media-template.php
415 415 <# if ( 'trash' === data.status ) { #> 416 416 <a class="untrash-attachment" href="#"><?php _e( 'Untrash' ); ?></a> 417 417 <# } else { #> 418 <a class="trash-attachment" href="#"><?php _e ( 'Trash' ); ?></a>418 <a class="trash-attachment" href="#"><?php _ex( 'Trash', 'verb' ); ?></a> 419 419 <# } #> 420 420 <?php else: ?> 421 421 <a class="delete-attachment" href="#"><?php _e( 'Delete Permanently' ); ?></a> … … 518 518 <# if ( 'trash' === data.status ) { #> 519 519 <a class="untrash-attachment" href="#"><?php _e( 'Untrash' ); ?></a> 520 520 <# } else { #> 521 <a class="trash-attachment" href="#"><?php _e ( 'Trash' ); ?></a>521 <a class="trash-attachment" href="#"><?php _ex( 'Trash', 'verb' ); ?></a> 522 522 <# } #> 523 523 <?php else: ?> 524 524 <a class="delete-attachment" href="#"><?php _e( 'Delete Permanently' ); ?></a> -
src/wp-includes/media.php
2932 2932 'noItemsFound' => __( 'No items found.' ), 2933 2933 'insertIntoPost' => $hier ? __( 'Insert into page' ) : __( 'Insert into post' ), 2934 2934 'unattached' => __( 'Unattached' ), 2935 'trash' => _ _( 'Trash' ),2935 'trash' => _x( 'Trash', 'noun' ), 2936 2936 'uploadedToThisPost' => $hier ? __( 'Uploaded to this page' ) : __( 'Uploaded to this post' ), 2937 2937 'warnDelete' => __( "You are about to permanently delete this item.\n 'Cancel' to stop, 'OK' to delete." ), 2938 2938 'warnBulkDelete' => __( "You are about to permanently delete these items.\n 'Cancel' to stop, 'OK' to delete." ),