Ticket #31013: 31013.patch
File 31013.patch, 1.6 KB (added by , 10 years ago) |
---|
-
src/wp-admin/includes/class-wp-users-list-table.php
120 120 * @access public 121 121 */ 122 122 public function no_items() { 123 _e( 'No matching users werefound.' );123 _e( 'No users found.' ); 124 124 } 125 125 126 126 /** -
src/wp-admin/includes/deprecated.php
552 552 if ( $this->results ) 553 553 $this->total_users_for_query = $wpdb->get_var("SELECT COUNT(DISTINCT($wpdb->users.ID))" . $this->query_from . $this->query_where); // no limit 554 554 else 555 $this->search_errors = new WP_Error( 'no_matching_users_found', __('No matching users were found!'));555 $this->search_errors = new WP_Error( 'no_matching_users_found', __( 'No users found.' ) ); 556 556 } 557 557 558 558 /** -
src/wp-admin/users.php
327 327 328 328 <div class="wrap"> 329 329 <h2><?php _e('Remove Users from Site'); ?></h2> 330 <p><?php _e('You have specified these users for removal:'); ?></p>330 <p><?php echo _n( 'You have specified this user for removal:', 'You have specified these users for removal:', count( $userids ) ); ?></p> 331 331 <ul> 332 332 <?php 333 333 $go_remove = false;