diff --git src/wp-admin/includes/deprecated.php src/wp-admin/includes/deprecated.php
index e65fe5a..b01f661 100644
|
|
|
class WP_User_Search { |
| 599 | 599 | 'add_args' => $args |
| 600 | 600 | ) ); |
| 601 | 601 | if ( $this->paging_text ) { |
| 602 | | $this->paging_text = sprintf( '<span class="displaying-num">' . __( 'Displaying %s–%s of %s' ) . '</span>%s', |
| | 602 | |
| | 603 | /* translators: Paging text for users search. 1: Starting range on current page 2: Ending range on current page 3: Total number of users */ |
| | 604 | $text = __( 'Displaying %1$s–%2$s of %3$s' ); |
| | 605 | |
| | 606 | $this->paging_text = sprintf( '<span class="displaying-num">' . $text . '</span>%s', |
| 603 | 607 | number_format_i18n( ( $this->page - 1 ) * $this->users_per_page + 1 ), |
| 604 | 608 | number_format_i18n( min( $this->page * $this->users_per_page, $this->total_users_for_query ) ), |
| 605 | 609 | number_format_i18n( $this->total_users_for_query ), |
diff --git src/wp-admin/options-general.php src/wp-admin/options-general.php
index 5be7ad9..c50df61 100644
|
|
|
if ( ! empty( $languages ) || ! empty( $translations ) ) { |
| 158 | 158 | if ( defined( 'WPLANG' ) && ( '' !== WPLANG ) && $locale !== WPLANG ) { |
| 159 | 159 | if ( is_multisite() && current_user_can( 'manage_network_options' ) |
| 160 | 160 | || ! is_multisite() && current_user_can( 'manage_options' ) ) { |
| | 161 | |
| | 162 | /* translators: Deprication note for a constant. 1: Constant, 2: File*/ |
| | 163 | $note = __( 'The %1$s constant in your %2$s file is no longer needed.' ); |
| | 164 | |
| 161 | 165 | ?> |
| 162 | 166 | <p class="description"> |
| 163 | | <strong><?php _e( 'Note:' ); ?></strong> <?php printf( __( 'The %s constant in your %s file is no longer needed.' ), '<code>WPLANG</code>', '<code>wp-config.php</code>' ); ?> |
| | 167 | <strong><?php _e( 'Note:' ); ?></strong> <?php printf( $note, '<code>WPLANG</code>', '<code>wp-config.php</code>' ); ?> |
| 164 | 168 | </p> |
| 165 | 169 | <?php |
| 166 | 170 | } |
| 167 | | _deprecated_argument( 'define()', '4.0.0', sprintf( __( 'The %s constant in your %s file is no longer needed.' ), 'WPLANG', 'wp-config.php' ) ); |
| | 171 | _deprecated_argument( 'define()', '4.0.0', sprintf( $note, 'WPLANG', 'wp-config.php' ) ); |
| 168 | 172 | } |
| 169 | 173 | ?> |
| 170 | 174 | </td> |