Changeset 8125
- Timestamp:
- 01/22/2019 08:18:03 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-main/front-page.php
r8046 r8125 100 100 </ul> 101 101 <p> 102 <?php102 <?php 103 103 $plugin_count = defined( 'WP_PLUGIN_COUNT' ) ? WP_PLUGIN_COUNT : 54000; 104 104 printf( 105 105 /* translators: 1: Rounded number of plugins. 2: Link to Plugin Directory. */ 106 _n( 'Extend WordPress with over %1$s plugin to help your website meet your needs. Add an online store, galleries, mailing lists, forums, analytics, and <a href="%2$s">much more</a>.', 'Extend WordPress with over %1$s plugins to help your website meet your needs. Add an online store, galleries, mailing lists, forums, analytics, and <a href="%2$s">much more</a>.', $plugin_count, esc_url( home_url( '/plugins/' ) ), 'wporg' ), 106 _n( 107 'Extend WordPress with over %1$s plugin to help your website meet your needs. Add an online store, galleries, mailing lists, forums, analytics, and <a href="%2$s">much more</a>.', 108 'Extend WordPress with over %1$s plugins to help your website meet your needs. Add an online store, galleries, mailing lists, forums, analytics, and <a href="%2$s">much more</a>.', 109 $plugin_count, 110 'wporg' 111 ), 107 112 esc_html( number_format_i18n( $plugin_count ) ), 108 113 esc_url( home_url( '/plugins/' ) ) 109 114 ); 110 ?>115 ?> 111 116 </p> 112 117 </section> … … 122 127 printf( 123 128 /* translators: Number of meetups. */ 124 _n( 'Hundreds of thousands of developers, content creators, and site owners gather at monthly meetups in %s city worldwide.', 'Hundreds of thousands of developers, content creators, and site owners gather at monthly meetups in %s cities worldwide.', $meetups, 'wporg' ), 129 _n( 130 'Hundreds of thousands of developers, content creators, and site owners gather at monthly meetups in %s city worldwide.', 131 'Hundreds of thousands of developers, content creators, and site owners gather at monthly meetups in %s cities worldwide.', 132 $meetups, 133 'wporg' 134 ), 125 135 number_format_i18n( $meetups ) 126 136 );
Note: See TracChangeset
for help on using the changeset viewer.