Changeset 37914 for trunk/src/wp-admin/edit-tags.php
- Timestamp:
- 06/29/2016 03:15:40 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/edit-tags.php
r37696 r37914 19 19 20 20 if ( ! in_array( $tax->name, get_taxonomies( array( 'show_ui' => true ) ) ) ) { 21 wp_die( __( ' You are not allowed to manage these items.' ) );21 wp_die( __( 'Sorry, you are not allowed to manage these items.' ) ); 22 22 } 23 23 … … 25 25 wp_die( 26 26 '<h1>' . __( 'Cheatin’ uh?' ) . '</h1>' . 27 '<p>' . __( ' You are not allowed to manage these items.' ) . '</p>',27 '<p>' . __( 'Sorry, you are not allowed to manage these items.' ) . '</p>', 28 28 403 29 29 ); … … 72 72 wp_die( 73 73 '<h1>' . __( 'Cheatin’ uh?' ) . '</h1>' . 74 '<p>' . __( ' You are not allowed to add this item.' ) . '</p>',74 '<p>' . __( 'Sorry, you are not allowed to add this item.' ) . '</p>', 75 75 403 76 76 ); … … 112 112 wp_die( 113 113 '<h1>' . __( 'Cheatin’ uh?' ) . '</h1>' . 114 '<p>' . __( ' You are not allowed to delete this item.' ) . '</p>',114 '<p>' . __( 'Sorry, you are not allowed to delete this item.' ) . '</p>', 115 115 403 116 116 ); … … 129 129 wp_die( 130 130 '<h1>' . __( 'Cheatin’ uh?' ) . '</h1>' . 131 '<p>' . __( ' You are not allowed to delete these items.' ) . '</p>',131 '<p>' . __( 'Sorry, you are not allowed to delete these items.' ) . '</p>', 132 132 403 133 133 ); … … 172 172 wp_die( 173 173 '<h1>' . __( 'Cheatin’ uh?' ) . '</h1>' . 174 '<p>' . __( ' You are not allowed to edit this item.' ) . '</p>',174 '<p>' . __( 'Sorry, you are not allowed to edit this item.' ) . '</p>', 175 175 403 176 176 ); … … 298 298 wp_die( 299 299 '<h1>' . __( 'Cheatin’ uh?' ) . '</h1>' . 300 '<p>' . __( ' You are not allowed to edit this item.' ) . '</p>',300 '<p>' . __( 'Sorry, you are not allowed to edit this item.' ) . '</p>', 301 301 403 302 302 );
Note: See TracChangeset
for help on using the changeset viewer.