Use ndash for number range, props demetris, fixes #8088

git-svn-id: https://develop.svn.wordpress.org/trunk@9565 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Ozz
2008-11-08 02:39:18 +00:00
parent 9f5fe913ec
commit 2f0df43916
6 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -666,7 +666,7 @@ class WP_User_Search {
'add_args' => $args
) );
if ( $this->paging_text ) {
$this->paging_text = sprintf( '<span class="displaying-num">' . __( 'Displaying %s-%s of %s' ) . '</span>' . __( '%s' ),
$this->paging_text = sprintf( '<span class="displaying-num">' . __( 'Displaying %s&#8211;%s of %s' ) . '</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 ),