Clarify button text. fixes #14756

git-svn-id: https://develop.svn.wordpress.org/trunk@17049 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2010-12-19 00:53:45 +00:00
parent 1dea0bc9f4
commit e30b3ef70c
1 changed files with 3 additions and 3 deletions

View File

@ -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') ?>