Changeset 29764
- Timestamp:
- 09/24/2014 01:48:27 PM (10 years ago)
- Location:
- trunk/src/wp-includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/media-template.php
r29724 r29764 418 418 <a class="untrash-attachment" href="#"><?php _e( 'Untrash' ); ?></a> 419 419 <# } else { #> 420 <a class="trash-attachment" href="#"><?php _e ( 'Trash' ); ?></a>420 <a class="trash-attachment" href="#"><?php _ex( 'Trash', 'verb' ); ?></a> 421 421 <# } #> 422 422 <?php else: ?> … … 521 521 <a class="untrash-attachment" href="#"><?php _e( 'Untrash' ); ?></a> 522 522 <# } else { #> 523 <a class="trash-attachment" href="#"><?php _e ( 'Trash' ); ?></a>523 <a class="trash-attachment" href="#"><?php _ex( 'Trash', 'verb' ); ?></a> 524 524 <# } #> 525 525 <?php else: ?> -
trunk/src/wp-includes/media.php
r29760 r29764 2938 2938 'insertIntoPost' => $hier ? __( 'Insert into page' ) : __( 'Insert into post' ), 2939 2939 'unattached' => __( 'Unattached' ), 2940 'trash' => _ _( 'Trash' ),2940 'trash' => _x( 'Trash', 'noun' ), 2941 2941 'uploadedToThisPost' => $hier ? __( 'Uploaded to this page' ) : __( 'Uploaded to this post' ), 2942 2942 'warnDelete' => __( "You are about to permanently delete this item.\n 'Cancel' to stop, 'OK' to delete." ),
Note: See TracChangeset
for help on using the changeset viewer.