From 590d59e92fb79f233bce0f2f7de31018920e957d Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sun, 21 Mar 2021 13:13:03 +0000 Subject: [PATCH] Coding Standards: Move some translator comments to the correct place. Follow-up to [48172]. See #52627. Built from https://develop.svn.wordpress.org/trunk@50561 git-svn-id: http://core.svn.wordpress.org/trunk@50174 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/update-core.php | 2 +- wp-admin/install.php | 2 +- wp-admin/upgrade.php | 2 +- wp-includes/version.php | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/wp-admin/includes/update-core.php b/wp-admin/includes/update-core.php index 62ab68f695..1f302cf4a4 100644 --- a/wp-admin/includes/update-core.php +++ b/wp-admin/includes/update-core.php @@ -978,8 +978,8 @@ function update_core( $from, $to ) { $php_update_message = ''; if ( function_exists( 'wp_get_update_php_url' ) ) { - /* translators: %s: URL to Update PHP page. */ $php_update_message = '

' . sprintf( + /* translators: %s: URL to Update PHP page. */ __( 'Learn more about updating PHP.' ), esc_url( wp_get_update_php_url() ) ); diff --git a/wp-admin/install.php b/wp-admin/install.php index 7aea5937a1..5910287139 100644 --- a/wp-admin/install.php +++ b/wp-admin/install.php @@ -239,8 +239,8 @@ $version_url = sprintf( sanitize_title( $wp_version ) ); -/* translators: %s: URL to Update PHP page. */ $php_update_message = '

' . sprintf( + /* translators: %s: URL to Update PHP page. */ __( 'Learn more about updating PHP.' ), esc_url( wp_get_update_php_url() ) ); diff --git a/wp-admin/upgrade.php b/wp-admin/upgrade.php index cf3991e897..32eefd73d0 100644 --- a/wp-admin/upgrade.php +++ b/wp-admin/upgrade.php @@ -81,8 +81,8 @@ elseif ( ! $php_compat || ! $mysql_compat ) : sanitize_title( $wp_version ) ); - /* translators: %s: URL to Update PHP page. */ $php_update_message = '

' . sprintf( + /* translators: %s: URL to Update PHP page. */ __( 'Learn more about updating PHP.' ), esc_url( wp_get_update_php_url() ) ); diff --git a/wp-includes/version.php b/wp-includes/version.php index d8c8e17810..cfc1a35363 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.8-alpha-50560'; +$wp_version = '5.8-alpha-50561'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.