I18N: Remove unnecessary context for two strings on "Add New User" screen.

Props ramiy.
Fixes #37784.
Built from https://develop.svn.wordpress.org/trunk@38329


git-svn-id: http://core.svn.wordpress.org/trunk@38270 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2016-08-23 12:54:31 +00:00
parent 08d59c211c
commit ec8f0281fa
2 changed files with 3 additions and 3 deletions

View File

@ -270,9 +270,9 @@ if ( isset($_GET['update']) ) {
<div class="wrap">
<h1 id="add-new-user"><?php
if ( current_user_can( 'create_users' ) ) {
echo _x( 'Add New User', 'user' );
_e( 'Add New User' );
} elseif ( current_user_can( 'promote_users' ) ) {
echo _x( 'Add Existing User', 'user' );
_e( 'Add Existing User' );
} ?>
</h1>

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.7-alpha-38328';
$wp_version = '4.7-alpha-38329';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.