diff --git a/wp-admin/edit-pages.php b/wp-admin/edit-pages.php
index d0a2563bc9..0a411c8bb1 100644
--- a/wp-admin/edit-pages.php
+++ b/wp-admin/edit-pages.php
@@ -91,7 +91,7 @@ foreach ( $post_stati as $status => $label ) {
sprintf($label[2], $num_posts->$status) . '';
}
$class = empty($_GET['post_status']) ? ' class="current"' : '';
-$status_links[] = "
";
+$status_links[] = "".__('All Pages')."";
echo implode(' |', $status_links) . '';
unset($status_links);
?>
diff --git a/wp-admin/edit.php b/wp-admin/edit.php
index 107f1c7a02..db39f07656 100644
--- a/wp-admin/edit.php
+++ b/wp-admin/edit.php
@@ -98,7 +98,7 @@ foreach ( $post_stati as $status => $label ) {
sprintf($label[2], $num_posts->$status) . '';
}
$class = empty($_GET['post_status']) ? ' class="current"' : '';
-$status_links[] = "";
+$status_links[] = "".__('All Posts')."";
echo implode(' |', $status_links) . '';
unset($status_links);
?>