Changeset 45932 for trunk/src/wp-admin/about.php
- Timestamp:
- 09/03/2019 12:39:13 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/about.php
r45926 r45932 21 21 <?php 22 22 printf( 23 /* translators: %s: The current WordPress version number */23 /* translators: %s: The current WordPress version number. */ 24 24 __( 'Welcome to WordPress %s' ), 25 25 $display_version … … 31 31 <?php 32 32 printf( 33 /* translators: %s: The current WordPress version number */33 /* translators: %s: The current WordPress version number. */ 34 34 __( 'Congratulations on updating to WordPress %s! This update makes it easier than ever to fix your site if something goes wrong.' ), 35 35 $display_version … … 41 41 <?php 42 42 printf( 43 /* translators: %s: The current WordPress version number */43 /* translators: %s: The current WordPress version number. */ 44 44 __( 'Version %s' ), 45 45 $display_version … … 71 71 <?php 72 72 printf( 73 /* translators: 1: link to the WordPress 5.1 release post*/73 /* translators: 1: Link to the WordPress 5.1 release post. */ 74 74 __( 'Building on <a href="%1$s">the Site Health features introduced in 5.1</a>, this release adds two new pages to help debug common configuration issues. It also adds space where developers can include debugging information for site maintainers.' ), 75 75 __( 'https://wordpress.org/news/2019/02/betty/' ) … … 78 78 if ( current_user_can( 'install_plugins' ) ) { 79 79 printf( 80 /* translators: 1: link to /wp-admin/site-health.php, 2: link to /wp-admin/site-health.php?tab=debug*/80 /* translators: 1: URL to Site Health Status screen, 2: URL to Site Health Info screen. */ 81 81 __( ' <a href="%1$s">Check your site status</a>, and <a href="%2$s">learn how to debug issues</a>.' ), 82 82 admin_url( 'site-health.php' ), … … 184 184 __( 'Maintenance and Security Releases' ); 185 185 186 /* translators: %s: WordPress version number */186 /* translators: %s: WordPress version number. */ 187 187 __( '<strong>Version %s</strong> addressed one security issue.' ); 188 /* translators: %s: WordPress version number */188 /* translators: %s: WordPress version number. */ 189 189 __( '<strong>Version %s</strong> addressed some security issues.' ); 190 190 191 /* translators: 1: WordPress version number, 2: plural number of bugs. */191 /* translators: 1: WordPress version number, 2: Plural number of bugs. */ 192 192 _n_noop( 193 193 '<strong>Version %1$s</strong> addressed %2$s bug.', … … 195 195 ); 196 196 197 /* translators: 1: WordPress version number, 2: plural number of bugs. Singular security issue. */197 /* translators: 1: WordPress version number, 2: Plural number of bugs. Singular security issue. */ 198 198 _n_noop( 199 199 '<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bug.', … … 201 201 ); 202 202 203 /* translators: 1: WordPress version number, 2: plural number of bugs. More than one security issue. */203 /* translators: 1: WordPress version number, 2: Plural number of bugs. More than one security issue. */ 204 204 _n_noop( 205 205 '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bug.', … … 207 207 ); 208 208 209 /* translators: %s: Documentation URL */209 /* translators: %s: Documentation URL. */ 210 210 __( 'For more information, see <a href="%s">the release notes</a>.' );
Note: See TracChangeset
for help on using the changeset viewer.