Changeset 1352 for trunk/wp-admin/link-manager.php
- Timestamp:
- 05/23/2004 05:24:38 PM (22 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/link-manager.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/link-manager.php
r1300 r1352 608 608 <tr> 609 609 <td> 610 <strong>Show</strong> links in category:<?php echo gethelp_link($this_file,'link_categories');?><br />610 <?php printf(__('<strong>Show</strong> links in category: %s'), gethelp_link($this_file,'link_categories'));?><br /> 611 611 </td> 612 612 <td> 613 < strong>Order</strong> by:<?php echo gethelp_link($this_file,'order_by');?>613 <?php printf(__('<strong>Order</strong> by: %s'), gethelp_link($this_file,'order_by'));?> 614 614 </td> 615 615 <td> </td> … … 623 623 if ($cat_id == 'All') 624 624 echo " selected='selected'"; 625 echo "> All</option>\n";625 echo "> " . __('All') . "</option>\n"; 626 626 foreach ($results as $row) { 627 627 echo " <option value=\"".$row->cat_id."\""; … … 707 707 $style = ($i % 2) ? ' class="alternate"' : ''; 708 708 echo <<<LINKS 709 710 709 711 710 <tr valign="middle" $style> 712 711 <td><strong>$link->link_name</strong><br /> 713 Description: $link->link_description</td> 714 <td><a href="$link->link_url" title="Visit $link->link_name">$short_url</a></td> 712 LINKS; 713 echo sprintf(__('Description: %s'), $link->link_description) . "</td>"; 714 echo "<td><a href=\"$link->link_url\" title=\"" . sprintf(__('Visit %s'), $link->link_name) . "\">$short_url</a></td>"; 715 echo <<<LINKS 715 716 <td>$link->category</td> 716 717 <td>$link->link_rel</td> … … 725 726 726 727 if ($show_buttons) { 727 echo <<<LINKS 728 <td><a href="link-manager.php?link_id=$link->link_id&action=linkedit" class="edit">Edit</a></td> 729 <td><a href="link-manager.php?link_id=$link->link_id&action=Delete" onclick="return confirm('You are about to delete this link.\\n \'Cancel\' to stop, \'OK\' to delete.');" class="delete">Delete</a></td> 730 <td><input type="checkbox" name="linkcheck[]" value="$link->link_id" /></td> 731 LINKS; 728 echo '<td><a href="link-manager.php?link_id=' . $link->link_id . '&action=linkedit" class="edit">' . __('Edit') . '</a></td>'; 729 echo '<td><a href="link-manager.php?link_id=' . $link->link_id . '&action=Delete"' . "onclick=\"return confirm('" . __("You are about to delete this link.\\n \'Cancel\' to stop, \'OK\' to delete.") . "');" . '" class="delete">' . __('Delete') . '</a></td>'; 730 echo '<td><input type="checkbox" name="linkcheck[]" value="' . $link->link_id . '" /></td>'; 732 731 } else { 733 732 echo "<td> </td><td> </td><td> </td>\n";
Note:
See TracChangeset
for help on using the changeset viewer.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)