Changeset 4426
- Timestamp:
- 11/27/2016 08:07:40 AM (7 years ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/themes/pub
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums/functions.php
r4219 r4426 266 266 $notice = sprintf( 267 267 /* translators: %d: number of hours */ 268 _ _( 'This post has been held for moderation by our automated system. It will be reviewed within %d hours.', 'wporg-forums' ),268 _n( 'This post has been held for moderation by our automated system. It will be reviewed within %d hour.', 'This post has been held for moderation by our automated system. It will be reviewed within %d hours.', 72, 'wporg-forums' ), 269 269 72 270 270 ); -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins/header.php
r3734 r4426 32 32 <p class="site-description"> 33 33 <?php 34 /* Translators: Total number of plugins. */ 35 printf( __( 'Extend your WordPress experience with %s plugins.', 'wporg-plugins' ), number_format_i18n( wp_count_posts( 'plugin' )->publish ) ); 34 $plugin_count = wp_count_posts( 'plugin' )->publish; 35 printf( 36 /* Translators: Total number of plugins. */ 37 _n( 'Extend your WordPress experience with %s plugin.', 'Extend your WordPress experience with %s plugins.', $plugin_count, 'wporg-plugins' ), 38 number_format_i18n( $plugin_count ) 39 ); 36 40 ?> 37 41 </p> -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support/functions.php
r4352 r4426 259 259 $notice = sprintf( 260 260 /* translators: %d: number of hours */ 261 _ _( 'This post has been held for moderation by our automated system. It will be reviewed within %d hours.', 'wporg-forums' ),261 _n( 'This post has been held for moderation by our automated system. It will be reviewed within %d hour.', 'This post has been held for moderation by our automated system. It will be reviewed within %d hours.', 72, 'wporg-forums' ), 262 262 72 263 263 );
Note: See TracChangeset
for help on using the changeset viewer.