mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-08-11 20:30:23 +00:00
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:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user