Make WordPress Core

Changeset 16612


Ignore:
Timestamp:
11/29/2010 04:54:06 PM (15 years ago)
Author:
nbachiyski
Message:

Add New string fixes. Fixes #15577

Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/network/settings.php

    r16431 r16612  
    103103                <th scope="row"><?php _e( 'Add New Users' ) ?></th>
    104104                <td>
    105                     <label><input name="add_new_users" type="checkbox" id="add_new_users" value="1"<?php checked( get_site_option( 'add_new_users' ) ) ?> /> <?php _e( 'Allow site administrators to add new users to their site via the "Users->Add New" page.' ); ?></label>
     105                    <label><input name="add_new_users" type="checkbox" id="add_new_users" value="1"<?php checked( get_site_option( 'add_new_users' ) ) ?> /> <?php _e( 'Allow site administrators to add new users to their site via the "Users &rarr; Add New" page.' ); ?></label>
    106106                </td>
    107107            </tr>
  • trunk/wp-admin/network/sites.php

    r16329 r16612  
    9494<?php echo $msg; ?>
    9595<?php if ( current_user_can( 'create_sites') ) : ?>
    96         <a href="<?php echo network_admin_url('site-new.php'); ?>" class="button add-new-h2"><?php echo esc_html_x( 'Add New', 'sites' ); ?></a>
     96        <a href="<?php echo network_admin_url('site-new.php'); ?>" class="button add-new-h2"><?php echo esc_html_x( 'Add New', 'site' ); ?></a>
    9797<?php endif; ?>
    9898
  • trunk/wp-admin/network/users.php

    r16272 r16612  
    6969    <h2><?php esc_html_e( 'Users' );
    7070    if ( current_user_can( 'create_users') ) : ?>
    71         <a href="<?php echo network_admin_url('user-new.php'); ?>" class="button add-new-h2"><?php echo esc_html_x( 'Add New', 'users' ); ?></a><?php
     71        <a href="<?php echo network_admin_url('user-new.php'); ?>" class="button add-new-h2"><?php echo esc_html_x( 'Add New', 'user' ); ?></a><?php
    7272    endif;
    7373   
  • trunk/wp-includes/script-loader.php

    r16607 r16612  
    332332            'tagsUsed' =>  __('Tags used on this post:'),
    333333            'add' => esc_attr(__('Add')),
    334             'addTag' => esc_attr(__('Add new tag')),
     334            'addTag' => esc_attr(__('Add new Tag')),
    335335            'separate' => __('Separate tags with commas'),
    336336            'ok' => __('OK'),
Note: See TracChangeset for help on using the changeset viewer.