Make WordPress Core

Changeset 33998


Ignore:
Timestamp:
09/10/2015 10:58:58 AM (9 years ago)
Author:
SergeyBiryukov
Message:

Merge two similar strings.

Props dipesh.kakadiya.
Fixes #33777.

Location:
trunk/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/nav-menu.php

    r33734 r33998  
    163163                    <label for="edit-menu-item-target-<?php echo $item_id; ?>">
    164164                        <input type="checkbox" id="edit-menu-item-target-<?php echo $item_id; ?>" value="_blank" name="menu-item-target[<?php echo $item_id; ?>]"<?php checked( $item->target, '_blank' ); ?> />
    165                         <?php _e( 'Open link in a new window/tab' ); ?>
     165                        <?php _e( 'Open link in a new tab' ); ?>
    166166                    </label>
    167167                </p>
  • trunk/src/wp-includes/class-wp-editor.php

    r33970 r33998  
    14101410                </div>
    14111411                <div class="link-target">
    1412                     <label><span>&nbsp;</span><input type="checkbox" id="wp-link-target" /> <?php _e( 'Open link in a new window/tab' ); ?></label>
     1412                    <label><span>&nbsp;</span><input type="checkbox" id="wp-link-target" /> <?php _e( 'Open link in a new tab' ); ?></label>
    14131413                </div>
    14141414            </div>
  • trunk/src/wp-includes/media-template.php

    r33729 r33998  
    10061006                            <div class="advanced-link">
    10071007                                <div class="setting link-target">
    1008                                     <label><input type="checkbox" data-setting="linkTargetBlank" value="_blank" <# if ( data.model.linkTargetBlank ) { #>checked="checked"<# } #>><?php _e( 'Open link in a new window/tab' ); ?></label>
     1008                                    <label><input type="checkbox" data-setting="linkTargetBlank" value="_blank" <# if ( data.model.linkTargetBlank ) { #>checked="checked"<# } #>><?php _e( 'Open link in a new tab' ); ?></label>
    10091009                                </div>
    10101010                                <label class="setting link-rel">
Note: See TracChangeset for help on using the changeset viewer.