make not_found puctuation translatable. See #14579

git-svn-id: https://develop.svn.wordpress.org/trunk@16121 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
scribu
2010-10-31 23:21:56 +00:00
parent c1afa3472d
commit a3009772e7
2 changed files with 5 additions and 5 deletions
+3 -3
View File
@@ -122,9 +122,9 @@ class WP_Posts_Table extends WP_List_Table {
global $post_type_object;
if ( isset( $_REQUEST['post_status'] ) && 'trash' == $_REQUEST['post_status'] )
echo $post_type_object->labels->not_found_in_trash . '.';
echo $post_type_object->labels->not_found_in_trash;
else
echo $post_type_object->labels->not_found . '.';
echo $post_type_object->labels->not_found;
}
function get_views() {
@@ -313,7 +313,7 @@ class WP_Posts_Table extends WP_List_Table {
function _display_rows( $posts ) {
global $post, $mode;
add_filter( 'the_title','esc_html' );
add_filter( 'the_title', 'esc_html' );
// Create array of post IDs.
$post_ids = array();