Make WordPress Core


Ignore:
Timestamp:
02/08/2025 11:42:29 AM (19 months ago)
Author:
audrasjb
Message:

Administration: Replace "Add New {Item}" wording with "Add {Item}" across the administration.

This changeset replaces each occurrence of "Add New {Item}" label with "Add {Item}" in WordPress administration, to make the interface more consistent and simplify the translation effort.

Props jameskoster, audrasjb, ntsekouras, afercia, peterwilsoncc, youknowriad, joedolson, sukhendu2002, jdy68, beryldlg, fxbenard.
See #61219.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/users.php

    r58566 r59784  
    3434                'title'   => __( 'Overview' ),
    3535                '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>' .
    36                 '<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>',
     36                '<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>',
    3737        )
    3838);
     
    779779                                '<a href="%1$s" class="page-title-action">%2$s</a>',
    780780                                esc_url( admin_url( 'user-new.php' ) ),
    781                                 esc_html__( 'Add New User' )
     781                                esc_html__( 'Add User' )
    782782                        );
    783783                } elseif ( is_multisite() && current_user_can( 'promote_users' ) ) {
Note: See TracChangeset for help on using the changeset viewer.