String localization fixes. http://mosquito.wordpress.org/view.php?id=1112 Props: SteveAgl
git-svn-id: http://svn.automattic.com/wordpress/trunk@2445 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
59ae577d6b
commit
3c12b33710
|
@ -108,7 +108,7 @@ switch ($action) {
|
|||
?>
|
||||
|
||||
<div class="wrap">
|
||||
<h2><?php printf('Edit “%s” Category', wp_specialchars($row->cat_name)); ?></h2>
|
||||
<h2><?php printf(__('Edit “%s” Category'), wp_specialchars($row->cat_name)); ?></h2>
|
||||
|
||||
<form name="editcat" method="post">
|
||||
<input type="hidden" name="action" value="editedcat" />
|
||||
|
@ -443,13 +443,11 @@ foreach ($results as $row) {
|
|||
</div>
|
||||
<div class="wrap">
|
||||
<h3><?php _e('Note:') ?></h3>
|
||||
<?php printf(__('<p>Deleting a link category does not delete links from that category.<br />
|
||||
It will just set them back to the default category <b>%s</b>.'), get_linkcatname(1)) ?>
|
||||
</p>
|
||||
<?php printf(__('<p>Deleting a link category does not delete links from that category.<br />It will just set them back to the default category <b>%s</b>.'), get_linkcatname(1)) ?></p>
|
||||
</div>
|
||||
<?php
|
||||
break;
|
||||
} // end default
|
||||
} // end case
|
||||
?>
|
||||
<?php include('admin-footer.php'); ?>
|
||||
<?php include('admin-footer.php'); ?>
|
||||
|
|
|
@ -391,7 +391,7 @@ switch ($action) {
|
|||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row"> family </th>
|
||||
<th scope="row"> <?php _e('family') ?> </th>
|
||||
<td>
|
||||
<label for="child">
|
||||
<input class="valinp" type="radio" name="family" value="child" id="child" <?php xfn_check('family', 'child', 'radio'); ?> />
|
||||
|
|
Loading…
Reference in New Issue