Changeset 39326 for trunk/src/wp-admin/includes/dashboard.php
- Timestamp:
- 11/21/2016 02:45:53 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/dashboard.php
r38825 r39326 393 393 $c_blogs = get_blog_count(); 394 394 395 /* translators: 1: Number of users on the network */ 395 396 $user_text = sprintf( _n( '%s user', '%s users', $c_users ), number_format_i18n( $c_users ) ); 397 /* translators: 1: Number of sites on the network */ 396 398 $blog_text = sprintf( _n( '%s site', '%s sites', $c_blogs ), number_format_i18n( $c_blogs ) ); 397 399 400 /* translators: 1: Text indicating the number of sites on the network, 2: Text indicating the number of users on the network */ 398 401 $sentence = sprintf( __( 'You have %1$s and %2$s.' ), $blog_text, $user_text ); 399 402
Note: See TracChangeset
for help on using the changeset viewer.