Skip to content

Commit

Permalink
Coding Standards: Move some translator comments to the correct place.
Browse files Browse the repository at this point in the history
Follow-up to [48172].

See #52627.

git-svn-id: https://develop.svn.wordpress.org/trunk@50561 602fd350-edb4-49c9-b593-d223f7449a82
  • Loading branch information
SergeyBiryukov committed Mar 21, 2021
1 parent 89e6e2d commit 4cc3f12
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/wp-admin/includes/update-core.php
Expand Up @@ -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 = '</p><p>' . sprintf(
/* translators: %s: URL to Update PHP page. */
__( '<a href="%s">Learn more about updating PHP</a>.' ),
esc_url( wp_get_update_php_url() )
);
Expand Down
2 changes: 1 addition & 1 deletion src/wp-admin/install.php
Expand Up @@ -239,8 +239,8 @@ function display_setup_form( $error = null ) {
sanitize_title( $wp_version )
);

/* translators: %s: URL to Update PHP page. */
$php_update_message = '</p><p>' . sprintf(
/* translators: %s: URL to Update PHP page. */
__( '<a href="%s">Learn more about updating PHP</a>.' ),
esc_url( wp_get_update_php_url() )
);
Expand Down
2 changes: 1 addition & 1 deletion src/wp-admin/upgrade.php
Expand Up @@ -81,8 +81,8 @@
sanitize_title( $wp_version )
);

/* translators: %s: URL to Update PHP page. */
$php_update_message = '</p><p>' . sprintf(
/* translators: %s: URL to Update PHP page. */
__( '<a href="%s">Learn more about updating PHP</a>.' ),
esc_url( wp_get_update_php_url() )
);
Expand Down

0 comments on commit 4cc3f12

Please sign in to comment.