Changeset 47600
- Timestamp:
- 04/20/2020 08:37:31 AM (4 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/menu.php
r47550 r47600 265 265 } 266 266 267 $submenu['users.php'][15] = array( __( ' YourProfile' ), 'read', 'profile.php' );267 $submenu['users.php'][15] = array( __( 'Profile' ), 'read', 'profile.php' ); 268 268 } else { 269 269 $_wp_real_parent_file['users.php'] = 'profile.php'; 270 $submenu['profile.php'][5] = array( __( ' YourProfile' ), 'read', 'profile.php' );270 $submenu['profile.php'][5] = array( __( 'Profile' ), 'read', 'profile.php' ); 271 271 if ( current_user_can( 'create_users' ) ) { 272 272 $submenu['profile.php'][10] = array( __( 'Add New User' ), 'create_users', 'user-new.php' ); -
trunk/src/wp-admin/user-edit.php
r47550 r47600 128 128 if ( IS_PROFILE_PAGE ) { 129 129 /** 130 * Fires before the page loads on the ' YourProfile' editing screen.130 * Fires before the page loads on the 'Profile' editing screen. 131 131 * 132 132 * The action only fires if the current user is editing their own profile. … … 387 387 if ( IS_PROFILE_PAGE ) { 388 388 /** 389 * Fires after the 'Personal Options' settings table on the ' YourProfile' editing screen.389 * Fires after the 'Personal Options' settings table on the 'Profile' editing screen. 390 390 * 391 391 * The action only fires if the current user is editing their own profile. … … 706 706 if ( IS_PROFILE_PAGE ) { 707 707 /** 708 * Fires after the 'About Yourself' settings table on the ' YourProfile' editing screen.708 * Fires after the 'About Yourself' settings table on the 'Profile' editing screen. 709 709 * 710 710 * The action only fires if the current user is editing their own profile. -
trunk/src/wp-includes/admin-bar.php
r47455 r47600 314 314 'parent' => 'user-actions', 315 315 'id' => 'edit-profile', 316 'title' => __( 'Edit MyProfile' ),316 'title' => __( 'Edit Profile' ), 317 317 'href' => $profile_url, 318 318 ) -
trunk/tests/phpunit/tests/formatting/Autop.php
r47122 r47600 20 20 <p>Then you can start enjoying the WordPress experience:</p> 21 21 <ul> 22 <li>Edit your personal information at <a href="%3$s" title="Edit settings like your password, your display name and your contact information">Users › YourProfile</a></li>22 <li>Edit your personal information at <a href="%3$s" title="Edit settings like your password, your display name and your contact information">Users › Profile</a></li> 23 23 <li>Start publishing at <a href="%4$s" title="Create a new post">Posts › Add New</a> and at <a href="%5$s" title="Create a new page">Pages › Add New</a></li> 24 24 <li>Browse and install plugins at <a href="%6$s" title="Browse and install plugins at the official WordPress repository directly from your Dashboard">Plugins › Add New</a></li> … … 45 45 Then you can start enjoying the WordPress experience: 46 46 <ul> 47 <li>Edit your personal information at <a href="%3$s" title="Edit settings like your password, your display name and your contact information">Users › YourProfile</a></li>47 <li>Edit your personal information at <a href="%3$s" title="Edit settings like your password, your display name and your contact information">Users › Profile</a></li> 48 48 <li>Start publishing at <a href="%4$s" title="Create a new post">Posts › Add New</a> and at <a href="%5$s" title="Create a new page">Pages › Add New</a></li> 49 49 <li>Browse and install plugins at <a href="%6$s" title="Browse and install plugins at the official WordPress repository directly from your Dashboard">Plugins › Add New</a></li>
Note: See TracChangeset
for help on using the changeset viewer.