Make WordPress Core


Ignore:
Timestamp:
04/25/2004 01:09:47 AM (20 years ago)
Author:
rboren
Message:

Mark strings for translation.

File:
1 edited

Legend:

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

    r1159 r1160  
    652652    <tr>
    653653      <th width="15%"><?php echo gethelp_link($this_file,'list_o_links');?> <?php _e('Name') ?></th>
    654       <th>URI</th>
    655       <th>Category</th>
    656       <th>rel</th>
    657       <th>Image</th>
    658       <th>Visible</th>
    659       <th colspan="2">Action</th>
     654      <th><?php _e('URI') ?></th>
     655      <th><?php _e('Category') ?></th>
     656      <th><?php _e('rel') ?></th>
     657      <th><?php _e('Image') ?></th>
     658      <th><?php _e('Visible') ?></th>
     659      <th colspan="2"><?php _e('Action') ?></th>
    660660      <th>&nbsp;</th>
    661661  </tr>
     
    688688            $link->link_rel = stripslashes($link->link_rel);
    689689            $link->link_description = stripslashes($link->link_description);
    690             $image = ($link->link_image != null) ? 'Yes' : 'No';
    691             $visible = ($link->link_visible == 'Y') ? 'Yes' : 'No';
     690            $image = ($link->link_image != null) ? __('Yes') : __('No');
     691            $visible = ($link->link_visible == 'Y') ? __('Yes') : __('No');
    692692            ++$i;
    693693            $style = ($i % 2) ? ' class="alternate"' : '';
Note: See TracChangeset for help on using the changeset viewer.