Merge three similar strings.

props pavelevap.
see #31013.

git-svn-id: https://develop.svn.wordpress.org/trunk@31717 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Dominik Schilling (ocean90) 2015-03-11 15:24:04 +00:00
parent 5b7bd930c6
commit f29a9083fc
2 changed files with 2 additions and 2 deletions

View File

@ -120,7 +120,7 @@ class WP_Users_List_Table extends WP_List_Table {
* @access public
*/
public function no_items() {
_e( 'No matching users were found.' );
_e( 'No users found.' );
}
/**

View File

@ -548,7 +548,7 @@ class WP_User_Search {
if ( $this->results )
$this->total_users_for_query = $wpdb->get_var("SELECT COUNT(DISTINCT($wpdb->users.ID))" . $this->query_from . $this->query_where); // no limit
else
$this->search_errors = new WP_Error('no_matching_users_found', __('No matching users were found!'));
$this->search_errors = new WP_Error('no_matching_users_found', __('No users found.'));
}
/**