Make WordPress Core

Changeset 31717


Ignore:
Timestamp:
03/11/2015 03:24:04 PM (10 years ago)
Author:
ocean90
Message:

Merge three similar strings.

props pavelevap.
see #31013.

Location:
trunk/src/wp-admin/includes
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/class-wp-users-list-table.php

    r31517 r31717  
    121121     */
    122122    public function no_items() {
    123         _e( 'No matching users were found.' );
     123        _e( 'No users found.' );
    124124    }
    125125
  • trunk/src/wp-admin/includes/deprecated.php

    r31679 r31717  
    549549            $this->total_users_for_query = $wpdb->get_var("SELECT COUNT(DISTINCT($wpdb->users.ID))" . $this->query_from . $this->query_where); // no limit
    550550        else
    551             $this->search_errors = new WP_Error('no_matching_users_found', __('No matching users were found!'));
     551            $this->search_errors = new WP_Error('no_matching_users_found', __('No users found.'));
    552552    }
    553553
Note: See TracChangeset for help on using the changeset viewer.