Changeset 52978 for trunk/src/wp-admin/users.php
- Timestamp:
- 03/22/2022 04:23:32 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/users.php
r51475 r52978 403 403 404 404 if ( ! is_multisite() ) { 405 wp_die( __( 'You can ’t remove users.' ), 400 );405 wp_die( __( 'You cannot remove users.' ), 400 ); 406 406 } 407 407 … … 435 435 436 436 if ( ! is_multisite() ) { 437 wp_die( __( 'You can ’t remove users.' ), 400 );437 wp_die( __( 'You cannot remove users.' ), 400 ); 438 438 } 439 439 … … 576 576 break; 577 577 case 'err_admin_del': 578 $messages[] = '<div id="message" class="error notice is-dismissible"><p>' . __( 'You can ’t delete the current user.' ) . '</p></div>';578 $messages[] = '<div id="message" class="error notice is-dismissible"><p>' . __( 'You cannot delete the current user.' ) . '</p></div>'; 579 579 $messages[] = '<div id="message" class="updated notice is-dismissible"><p>' . __( 'Other users have been deleted.' ) . '</p></div>'; 580 580 break; … … 583 583 break; 584 584 case 'err_admin_remove': 585 $messages[] = '<div id="message" class="error notice is-dismissible"><p>' . __( "You can't remove the current user.") . '</p></div>';585 $messages[] = '<div id="message" class="error notice is-dismissible"><p>' . __( 'You cannot remove the current user.' ) . '</p></div>'; 586 586 $messages[] = '<div id="message" class="updated notice is-dismissible fade"><p>' . __( 'Other users have been removed.' ) . '</p></div>'; 587 587 break;
Note: See TracChangeset
for help on using the changeset viewer.