Changeset 8781 for trunk/src/bp-notifications/bp-notifications-template.php
- Timestamp:
- 08/10/2014 05:27:52 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-notifications/bp-notifications-template.php
r8761 r8781 991 991 $to_num = bp_core_number_format( ( $start_num + ( $query_loop->pag_num - 1 ) > $query_loop->total_notification_count ) ? $query_loop->total_notification_count : $start_num + ( $query_loop->pag_num - 1 ) ); 992 992 $total = bp_core_number_format( $query_loop->total_notification_count ); 993 $pag = sprintf( _n( 'Viewing %1$s to %2$s (of %3$s notification)', 'Viewing %1$s to %2$s (of %3$s notifications)', $total, 'buddypress' ), $from_num, $to_num, $total );993 $pag = sprintf( _n( 'Viewing 1 notification', 'Viewing %1$s - %2$s of %3$s notifications', $total, 'buddypress' ), $from_num, $to_num, $total ); 994 994 995 995 return apply_filters( 'bp_notifications_pagination_count', $pag );
Note: See TracChangeset
for help on using the changeset viewer.