Fix broken translations. Fixes #5865 props hervada.

git-svn-id: https://develop.svn.wordpress.org/trunk@6869 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Peter Westwood 2008-02-16 11:36:46 +00:00
parent 44ab02799d
commit 1758034577
2 changed files with 2 additions and 2 deletions

View File

@ -91,7 +91,7 @@ foreach ( $post_stati as $status => $label ) {
sprintf($label[2], $num_posts->$status) . '</a>';
}
$class = empty($_GET['post_status']) ? ' class="current"' : '';
$status_links[] = "<li><a href=\"edit-pages.php\"$class><?php _e('All Pages'); ?></a>";
$status_links[] = "<li><a href=\"edit-pages.php\"$class>".__('All Pages')."</a>";
echo implode(' |</li>', $status_links) . '</li>';
unset($status_links);
?>

View File

@ -98,7 +98,7 @@ foreach ( $post_stati as $status => $label ) {
sprintf($label[2], $num_posts->$status) . '</a>';
}
$class = empty($_GET['post_status']) ? ' class="current"' : '';
$status_links[] = "<li><a href=\"edit.php\"$class><?php _e('All Posts'); ?></a>";
$status_links[] = "<li><a href=\"edit.php\"$class>".__('All Posts')."</a>";
echo implode(' |</li>', $status_links) . '</li>';
unset($status_links);
?>