diff --git a/wp-admin/about.php b/wp-admin/about.php index cf17d163df..1ce28fef89 100644 --- a/wp-admin/about.php +++ b/wp-admin/about.php @@ -298,7 +298,7 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
WordPress Field Guide. It is overflowing with detailed developer notes to help you build with WordPress.' ), __( 'https://make.wordpress.org/core/2022/05/03/wordpress-6-0-field-guide/' ) ); @@ -309,13 +309,14 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
Read the WordPress 6.0 Release Notes for more information on the included enhancements and issues fixed, installation information, developer notes and resources, release contributors, and the list of file changes in this release.' ), + /* translators: 1: WordPress Release Notes link, 2: WordPress version number. */ + __( 'Read the WordPress %2$s Release Notes for more information on the included enhancements and issues fixed, installation information, developer notes and resources, release contributors, and the list of file changes in this release.' ), sprintf( - /* translators: %s: WordPress version. */ + /* translators: %s: WordPress version number. */ esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ), '6-0' - ) + ), + '6.0' ); ?>
diff --git a/wp-includes/version.php b/wp-includes/version.php index 6bcb2a6a0a..19cf415027 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.1-alpha-54218'; +$wp_version = '6.1-alpha-54219'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.