Changeset 18247
- Timestamp:
- 06/10/2011 10:13:26 PM (14 years ago)
- Location:
- trunk
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-link-form.php
r17975 r18247 84 84 <div id="post-body-content"> 85 85 <div id="namediv" class="stuffbox"> 86 <h3><label for="link_name"><?php _e ('Name') ?></label></h3>86 <h3><label for="link_name"><?php _ex('Name', 'link name') ?></label></h3> 87 87 <div class="inside"> 88 88 <input type="text" name="link_name" size="30" tabindex="1" value="<?php echo esc_attr($link->link_name); ?>" id="link_name" /> -
trunk/wp-admin/includes/class-wp-links-list-table.php
r17771 r18247 78 78 return array( 79 79 'cb' => '<input type="checkbox" />', 80 'name' => _ _( 'Name' ),80 'name' => _x( 'Name', 'link name' ), 81 81 'url' => __( 'URL' ), 82 82 'categories' => __( 'Categories' ), -
trunk/wp-admin/includes/class-wp-plugin-install-list-table.php
r17435 r18247 139 139 function get_columns() { 140 140 return array( 141 'name' => _ _( 'Name' ),141 'name' => _x( 'Name', 'plugin name' ), 142 142 'version' => __( 'Version' ), 143 143 'rating' => __( 'Rating' ), -
trunk/wp-admin/includes/class-wp-terms-list-table.php
r18194 r18247 98 98 $columns = array( 99 99 'cb' => '<input type="checkbox" />', 100 'name' => _ _( 'Name' ),100 'name' => _x( 'Name', 'term name' ), 101 101 'description' => __( 'Description' ), 102 102 'slug' => __( 'Slug' ), … … 337 337 338 338 <label> 339 <span class="title"><?php _e ( 'Name' ); ?></span>339 <span class="title"><?php _ex( 'Name', 'term name' ); ?></span> 340 340 <span class="input-text-wrap"><input type="text" name="name" class="ptitle" value="" /></span> 341 341 </label> -
trunk/wp-admin/includes/template.php
r17994 r18247 426 426 <thead> 427 427 <tr> 428 <th class="left">' . _ _( 'Name' ) . '</th>428 <th class="left">' . _x( 'Name', 'meta name' ) . '</th> 429 429 <th>' . __( 'Value' ) . '</th> 430 430 </tr> … … 441 441 <thead> 442 442 <tr> 443 <th class="left"><?php _e ( 'Name' ) ?></th>443 <th class="left"><?php _ex( 'Name', 'meta name' ) ?></th> 444 444 <th><?php _e( 'Value' ) ?></th> 445 445 </tr> … … 536 536 <thead> 537 537 <tr> 538 <th class="left"><label for="metakeyselect"><?php _e ( 'Name' ) ?></label></th>538 <th class="left"><label for="metakeyselect"><?php _ex( 'Name', 'meta name' ) ?></label></th> 539 539 <th><label for="metavalue"><?php _e( 'Value' ) ?></label></th> 540 540 </tr> -
trunk/wp-admin/themes.php
r18231 r18247 214 214 <table id="broken-themes"> 215 215 <tr> 216 <th><?php _e ('Name'); ?></th>216 <th><?php _ex('Name', 'theme name'); ?></th> 217 217 <th><?php _e('Description'); ?></th> 218 218 </tr> -
trunk/wp-includes/js/tinymce/langs/wp-langs.php
r17625 r18247 321 321 colorpicker_named_title:"' . mce_escape( __('Named colors') ) . '", 322 322 colorpicker_color:"' . mce_escape( __('Color:') ) . '", 323 colorpicker_name:"' . mce_escape( _ _('Name:') ) . '",323 colorpicker_name:"' . mce_escape( _x('Name:', 'html attribute') ) . '", 324 324 charmap_title:"' . mce_escape( __('Select custom character') ) . '", 325 325 image_title:"' . mce_escape( __('Insert/edit image') ) . '", … … 364 364 type:"' . mce_escape( __('Type') ) . '", 365 365 id:"' . mce_escape( __('Id') ) . '", 366 name:"' . mce_escape( _ _('Name') ) . '",366 name:"' . mce_escape( _x('Name', 'html attribute') ) . '", 367 367 class_name:"' . mce_escape( __('Class') ) . '", 368 368 vspace:"' . mce_escape( __('V-Space') ) . '",
Note: See TracChangeset
for help on using the changeset viewer.