' . __( 'Displaying %s-%s of %s' ) . '' . __( '%s' ),
+
' . __( 'Displaying %s–%s of %s' ) . '' . __( '%s' ),
number_format_i18n( ( $_GET['paged'] - 1 ) * $wp_query->query_vars['posts_per_page'] + 1 ),
number_format_i18n( min( $_GET['paged'] * $wp_query->query_vars['posts_per_page'], $wp_query->found_posts ) ),
number_format_i18n( $wp_query->found_posts ),
diff --git a/wp-admin/includes/user.php b/wp-admin/includes/user.php
index 2fbc5532d6..f5c19f83fe 100644
--- a/wp-admin/includes/user.php
+++ b/wp-admin/includes/user.php
@@ -666,7 +666,7 @@ class WP_User_Search {
'add_args' => $args
) );
if ( $this->paging_text ) {
- $this->paging_text = sprintf( '
' . __( 'Displaying %s-%s of %s' ) . '' . __( '%s' ),
+ $this->paging_text = sprintf( '
' . __( 'Displaying %s–%s of %s' ) . '' . __( '%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 a/wp-admin/themes.php b/wp-admin/themes.php
index a116346adc..dad2677a40 100644
--- a/wp-admin/themes.php
+++ b/wp-admin/themes.php
@@ -125,7 +125,7 @@ function theme_update_available( $theme ) {
-
' . __( 'Displaying %s-%s of %s' ) . '' . __( '%s' ),
+
' . __( 'Displaying %s–%s of %s' ) . '' . __( '%s' ),
number_format_i18n( $start + 1 ),
number_format_i18n( min( $page * $per_page, $theme_total ) ),
number_format_i18n( $theme_total ),
diff --git a/wp-admin/upload.php b/wp-admin/upload.php
index a6a6c03f04..c4b55c9411 100644
--- a/wp-admin/upload.php
+++ b/wp-admin/upload.php
@@ -236,7 +236,7 @@ $page_links = paginate_links( array(
));
if ( $page_links ) : ?>
-
' . __( 'Displaying %s-%s of %s' ) . '' . __( '%s' ),
+
' . __( 'Displaying %s–%s of %s' ) . '' . __( '%s' ),
number_format_i18n( ( $_GET['paged'] - 1 ) * $wp_query->query_vars['posts_per_page'] + 1 ),
number_format_i18n( min( $_GET['paged'] * $wp_query->query_vars['posts_per_page'], $wp_query->found_posts ) ),
number_format_i18n( $wp_query->found_posts ),