Changeset 36334
- Timestamp:
- 01/17/2016 04:02:24 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-posts-list-table.php
r36333 r36334 1200 1200 wp_nonce_url( admin_url( sprintf( $post_type_object->_edit_link . '&action=untrash', $post->ID ) ), 'untrash-post_' . $post->ID ), 1201 1201 /* translators: %s: post title */ 1202 esc_attr __( sprintf( __( 'Restore “%s” from the Trash' ), $title ) ),1202 esc_attr( sprintf( __( 'Restore “%s” from the Trash' ), $title ) ), 1203 1203 __( 'Restore' ) 1204 1204 ); … … 1208 1208 get_delete_post_link( $post->ID ), 1209 1209 /* translators: %s: post title */ 1210 esc_attr __( sprintf( __( 'Move “%s” to the Trash' ), $title ) ),1210 esc_attr( sprintf( __( 'Move “%s” to the Trash' ), $title ) ), 1211 1211 _x( 'Trash', 'verb' ) 1212 1212 ); … … 1217 1217 get_delete_post_link( $post->ID, '', true ), 1218 1218 /* translators: %s: post title */ 1219 esc_attr __( sprintf( __( 'Delete “%s” permanently' ), $title ) ),1219 esc_attr( sprintf( __( 'Delete “%s” permanently' ), $title ) ), 1220 1220 __( 'Delete Permanently' ) 1221 1221 );
Note: See TracChangeset
for help on using the changeset viewer.