Gettext strings. Props SteveAgl. fixes #5865

git-svn-id: http://svn.automattic.com/wordpress/trunk@6859 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2008-02-15 17:46:02 +00:00
parent 30fa0eb3c7
commit daa48683de
2 changed files with 2 additions and 2 deletions

View File

@ -88,7 +88,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>All Pages</a>";
$status_links[] = "<li><a href=\"edit-pages.php\"$class><?php _e('All Pages'); ?></a>";
echo implode(' |</li>', $status_links) . '</li>';
unset($status_links);
?>

View File

@ -95,7 +95,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>All Posts</a>";
$status_links[] = "<li><a href=\"edit.php\"$class><?php _e('All Posts'); ?></a>";
echo implode(' |</li>', $status_links) . '</li>';
unset($status_links);
?>