Clarify button text. fixes #14756
git-svn-id: http://svn.automattic.com/wordpress/trunk@17049 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
453fd478a1
commit
e6282fa608
|
@ -245,14 +245,14 @@ if ( is_multisite() ) {
|
||||||
</tr>
|
</tr>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
</table>
|
</table>
|
||||||
<?php submit_button( __( 'Add User '), 'primary', 'adduser', true, array( 'id' => 'addusersub' ) ); ?>
|
<?php submit_button( __( 'Add Existing User '), 'primary', 'adduser', true, array( 'id' => 'addusersub' ) ); ?>
|
||||||
</form>
|
</form>
|
||||||
<?php
|
<?php
|
||||||
} // is_multisite()
|
} // is_multisite()
|
||||||
|
|
||||||
if ( current_user_can( 'create_users') ) {
|
if ( current_user_can( 'create_users') ) {
|
||||||
if ( $do_both )
|
if ( $do_both )
|
||||||
echo '<h3 id="create-new-user">' . __( 'Create New User' ) . '</h3>';
|
echo '<h3 id="create-new-user">' . __( 'Add New User' ) . '</h3>';
|
||||||
?>
|
?>
|
||||||
<p><?php _e('Create a brand new user and add it to this site.'); ?></p>
|
<p><?php _e('Create a brand new user and add it to this site.'); ?></p>
|
||||||
<form action="" method="post" name="createuser" id="createuser" class="add:users: validate"<?php do_action('user_new_form_tag');?>>
|
<form action="" method="post" name="createuser" id="createuser" class="add:users: validate"<?php do_action('user_new_form_tag');?>>
|
||||||
|
@ -330,7 +330,7 @@ foreach ( array( 'user_login' => 'login', 'first_name' => 'firstname', 'last_nam
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
<?php submit_button( __( 'Add User '), 'primary', 'createuser', true, array( 'id' => 'createusersub' ) ); ?>
|
<?php submit_button( __( 'Add New User '), 'primary', 'createuser', true, array( 'id' => 'createusersub' ) ); ?>
|
||||||
|
|
||||||
</form>
|
</form>
|
||||||
<?php } // current_user_can('create_users') ?>
|
<?php } // current_user_can('create_users') ?>
|
||||||
|
|
Loading…
Reference in New Issue