Make WordPress Core

Changeset 11114


Ignore:
Timestamp:
04/28/2009 07:45:57 PM (15 years ago)
Author:
ryan
Message:

Better target descriptions. Props RanYanivHartstein, scohoust. fixes #6615

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/edit-link-form.php

    r11109 r11114  
    161161<label for="link_target_blank" class="selectit">
    162162<input id="link_target_blank" type="radio" name="link_target" value="_blank" <?php echo ( isset( $link->link_target ) && ($link->link_target == '_blank') ? 'checked="checked"' : ''); ?> />
    163 <code>_blank</code></label><br />
     163<?php _e('<code>_blank</code> - new window or tab.'); ?></label><br />
    164164<label for="link_target_top" class="selectit">
    165165<input id="link_target_top" type="radio" name="link_target" value="_top" <?php echo ( isset( $link->link_target ) && ($link->link_target == '_top') ? 'checked="checked"' : ''); ?> />
    166 <code>_top</code></label><br />
     166<?php _e('<code>_top</code> - current window or tab, with no frames.'); ?></label><br />
    167167<label for="link_target_none" class="selectit">
    168168<input id="link_target_none" type="radio" name="link_target" value="" <?php echo ( isset( $link->link_target ) && ($link->link_target == '') ? 'checked="checked"' : ''); ?> />
    169 <?php _e('none') ?></label>
     169<?php _e('<code>_none</code> - same window or tab.'); ?></label>
    170170</fieldset>
    171 <p><?php _e('Choose the frame your link targets. Essentially this means if you choose <code>_blank</code> your link will open in a new window.'); ?></p>
     171<p><?php _e('Choose the frame your link targets.'); ?></p>
    172172<?php
    173173}
Note: See TracChangeset for help on using the changeset viewer.