Changeset 6991 for branches/2.6/src/includes/admin/tools/upgrade.php
- Timestamp:
- 11/23/2019 10:43:11 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.6/src/includes/admin/tools/upgrade.php
r6927 r6991 247 247 248 248 // Complete results 249 $result = sprintf( _n( 'Complete! %d engagement s upgraded.', 'Complete! %d engagements upgraded.', $engagements, 'bbpress' ), $engagements);249 $result = sprintf( _n( 'Complete! %d engagement upgraded.', 'Complete! %d engagements upgraded.', $engagements, 'bbpress' ), bbp_number_format( $engagements ) ); 250 250 251 251 return array( 0, sprintf( $statement, $result ) ); … … 445 445 446 446 // Complete results 447 $result = sprintf( _n( 'Complete! %d favorite upgraded.', 'Complete! %d favorites upgraded.', $total, 'bbpress' ), $total);447 $result = sprintf( _n( 'Complete! %d favorite upgraded.', 'Complete! %d favorites upgraded.', $total, 'bbpress' ), bbp_number_format( $total ) ); 448 448 449 449 return array( 0, sprintf( $statement, $result ) ); … … 505 505 506 506 // Complete results 507 $result = sprintf( _n( 'Complete! %d topic subscription upgraded.', 'Complete! %d topic subscriptions upgraded.', $total, 'bbpress' ), $total);507 $result = sprintf( _n( 'Complete! %d topic subscription upgraded.', 'Complete! %d topic subscriptions upgraded.', $total, 'bbpress' ), bbp_number_format( $total ) ); 508 508 509 509 return array( 0, sprintf( $statement, $result ) ); … … 565 565 566 566 // Complete results 567 $result = sprintf( _n( 'Complete! %d forum subscription upgraded.', 'Complete! %d forum subscriptions upgraded.', $total, 'bbpress' ), $total);567 $result = sprintf( _n( 'Complete! %d forum subscription upgraded.', 'Complete! %d forum subscriptions upgraded.', $total, 'bbpress' ), bbp_number_format( $total ) ); 568 568 569 569 return array( 0, sprintf( $statement, $result ) ); … … 601 601 602 602 // Complete results 603 $result = sprintf( _n( 'Complete! %d favorite s deleted.', 'Complete! %d favorites deleted.', $total, 'bbpress' ), $total);603 $result = sprintf( _n( 'Complete! %d favorite deleted.', 'Complete! %d favorites deleted.', $total, 'bbpress' ), bbp_number_format( $total ) ); 604 604 605 605 return array( 0, sprintf( $statement, $result ) ); … … 637 637 638 638 // Complete results 639 $result = sprintf( _n( 'Complete! %d topic subscription deleted.', 'Complete! %d topic subscriptions deleted.', $total, 'bbpress' ), $total);639 $result = sprintf( _n( 'Complete! %d topic subscription deleted.', 'Complete! %d topic subscriptions deleted.', $total, 'bbpress' ), bbp_number_format( $total ) ); 640 640 641 641 return array( 0, sprintf( $statement, $result ) ); … … 673 673 674 674 // Complete results 675 $result = sprintf( _n( 'Complete! %d forum subscription deleted.', 'Complete! %d forum subscriptions deleted.', $total, 'bbpress' ), $total);676 677 return array( 0, sprintf( $statement, $result ) ); 678 } 675 $result = sprintf( _n( 'Complete! %d forum subscription deleted.', 'Complete! %d forum subscriptions deleted.', $total, 'bbpress' ), bbp_number_format( $total ) ); 676 677 return array( 0, sprintf( $statement, $result ) ); 678 }
Note: See TracChangeset
for help on using the changeset viewer.