From f29a9083fc0d8611e084a82549f0f0dfe6292500 Mon Sep 17 00:00:00 2001 From: "Dominik Schilling (ocean90)" Date: Wed, 11 Mar 2015 15:24:04 +0000 Subject: [PATCH] Merge three similar strings. props pavelevap. see #31013. git-svn-id: https://develop.svn.wordpress.org/trunk@31717 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/includes/class-wp-users-list-table.php | 2 +- src/wp-admin/includes/deprecated.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wp-admin/includes/class-wp-users-list-table.php b/src/wp-admin/includes/class-wp-users-list-table.php index 3b4eed95e9..1c3cd29acf 100644 --- a/src/wp-admin/includes/class-wp-users-list-table.php +++ b/src/wp-admin/includes/class-wp-users-list-table.php @@ -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.' ); } /** diff --git a/src/wp-admin/includes/deprecated.php b/src/wp-admin/includes/deprecated.php index d1eebac0e8..59140b7304 100644 --- a/src/wp-admin/includes/deprecated.php +++ b/src/wp-admin/includes/deprecated.php @@ -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.')); } /**