Make WordPress Core


Ignore:
Timestamp:
11/08/2008 02:39:18 AM (17 years ago)
Author:
azaozz
Message:

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/user.php

    r9556 r9565  
    667667            ) );
    668668            if ( $this->paging_text ) {
    669                 $this->paging_text = sprintf( '<span class="displaying-num">' . __( 'Displaying %s-%s of %s' ) . '</span>' . __( '%s' ),
     669                $this->paging_text = sprintf( '<span class="displaying-num">' . __( 'Displaying %s&#8211;%s of %s' ) . '</span>' . __( '%s' ),
    670670                    number_format_i18n( ( $this->page - 1 ) * $this->users_per_page + 1 ),
    671671                    number_format_i18n( min( $this->page * $this->users_per_page, $this->total_users_for_query ) ),
Note: See TracChangeset for help on using the changeset viewer.