Help/About: Replace minor release strings with pre-existing ones.

Also, update the number of bugs fixed in 5.2.1 to include those being fixed after RC1.

Reviewed by desrosj, SergeyBiryukov.

Props ocean90, SergeyBiryukov, mukesh27.
Fixes #47312.
Built from https://develop.svn.wordpress.org/branches/5.2@45364


git-svn-id: http://core.svn.wordpress.org/branches/5.2@45175 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
desrosj 2019-05-20 14:22:02 +00:00
parent d1ff0af1e7
commit b3425b83cd
2 changed files with 5 additions and 5 deletions

View File

@ -55,12 +55,12 @@ include( ABSPATH . 'wp-admin/admin-header.php' );
printf(
/* translators: 1: WordPress version number, 2: plural number of bugs. */
_n(
'<strong>Version %1$s</strong> fixed %2$s bug.',
'<strong>Version %1$s</strong> fixed %2$s bugs.',
32
'<strong>Version %1$s</strong> addressed %2$s bug.',
'<strong>Version %1$s</strong> addressed %2$s bugs.',
33
),
'5.2.1',
number_format_i18n( 32 )
number_format_i18n( 33 )
);
?>
<?php

View File

@ -13,7 +13,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.2.1-RC1-45361';
$wp_version = '5.2.1-RC1-45364';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.