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

Props ramiy.
Fixes #37784.

git-svn-id: https://develop.svn.wordpress.org/trunk@38329 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2016-08-23 12:53:54 +00:00
parent d96cb127ee
commit 934ffcf5b1
1 changed files with 2 additions and 2 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>