diff --git src/wp-admin/includes/deprecated.php src/wp-admin/includes/deprecated.php
index e65fe5a..b01f661 100644
--- src/wp-admin/includes/deprecated.php
+++ src/wp-admin/includes/deprecated.php
@@ -599,7 +599,11 @@ class WP_User_Search {
 				'add_args' => $args
 			) );
 			if ( $this->paging_text ) {
-				$this->paging_text = sprintf( '<span class="displaying-num">' . __( 'Displaying %s&#8211;%s of %s' ) . '</span>%s',
+
+				/* translators: Paging text for users search. 1: Starting range on current page 2: Ending range on current page 3: Total number of users */
+				$text =  __( 'Displaying %1$s&#8211;%2$s of %3$s' );
+
+				$this->paging_text = sprintf( '<span class="displaying-num">' . $text . '</span>%s',
 					number_format_i18n( ( $this->page - 1 ) * $this->users_per_page + 1 ),
 					number_format_i18n( min( $this->page * $this->users_per_page, $this->total_users_for_query ) ),
 					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
--- src/wp-admin/options-general.php
+++ src/wp-admin/options-general.php
@@ -158,13 +158,17 @@ if ( ! empty( $languages ) || ! empty( $translations ) ) {
 			if ( defined( 'WPLANG' ) && ( '' !== WPLANG ) && $locale !== WPLANG ) {
 				if ( is_multisite() && current_user_can( 'manage_network_options' )
 					|| ! is_multisite() && current_user_can( 'manage_options' ) ) {
+
+					/* translators: Deprication note for a constant. 1: Constant, 2: File*/
+					$note = __( 'The %1$s constant in your %2$s file is no longer needed.' );
+
 					?>
 					<p class="description">
-						<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>' ); ?>
+						<strong><?php _e( 'Note:' ); ?></strong> <?php printf( $note, '<code>WPLANG</code>', '<code>wp-config.php</code>' ); ?>
 					</p>
 					<?php
 				}
-				_deprecated_argument( 'define()', '4.0.0', sprintf( __( 'The %s constant in your %s file is no longer needed.' ), 'WPLANG', 'wp-config.php' ) );
+				_deprecated_argument( 'define()', '4.0.0', sprintf( $note, 'WPLANG', 'wp-config.php' ) );
 			}
 			?>
 		</td>
