--- a/wp/wp-admin/users.php Fri Sep 05 18:40:08 2025 +0200
+++ b/wp/wp-admin/users.php Fri Sep 05 18:52:52 2025 +0200
@@ -33,7 +33,7 @@
'id' => 'overview',
'title' => __( 'Overview' ),
'content' => '<p>' . __( 'This screen lists all the existing users for your site. Each user has one of five defined roles as set by the site admin: Site Administrator, Editor, Author, Contributor, or Subscriber. Users with roles other than Administrator will see fewer options in the dashboard navigation when they are logged in, based on their role.' ) . '</p>' .
- '<p>' . __( 'To add a new user for your site, click the Add New User button at the top of the screen or Add New User in the Users menu section.' ) . '</p>',
+ '<p>' . __( 'To add a new user for your site, click the Add User button at the top of the screen or Add User in the Users menu section.' ) . '</p>',
)
);
@@ -155,7 +155,7 @@
// If the user doesn't already belong to the blog, bail.
if ( is_multisite() && ! is_user_member_of_blog( $id ) ) {
wp_die(
- '<h1>' . __( 'Something went wrong.' ) . '</h1>' .
+ '<h1>' . __( 'An error occurred.' ) . '</h1>' .
'<p>' . __( 'One of the selected users is not a member of this site.' ) . '</p>',
403
);
@@ -778,7 +778,7 @@
printf(
'<a href="%1$s" class="page-title-action">%2$s</a>',
esc_url( admin_url( 'user-new.php' ) ),
- esc_html__( 'Add New User' )
+ esc_html__( 'Add User' )
);
} elseif ( is_multisite() && current_user_can( 'promote_users' ) ) {
printf(