Make WordPress Core

Changeset 49110


Ignore:
Timestamp:
10/09/2020 01:04:53 AM (4 years ago)
Author:
SergeyBiryukov
Message:

I18N: Add missing placeholders in some translator comments.

Follow-up to [49109].

See #42790.

Location:
trunk/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/authorize-application.php

    r49109 r49110  
    114114            <p>
    115115            <?php
    116             /* translators: Application Name */
     116            /* translators: %s: Application name. */
    117117            printf( __( 'Would you like to give the application identifying itself as %s access to your account? You should only do this if you trust the app in question.' ), '<strong>' . esc_html( $app_name ) . '</strong>' );
    118118            ?>
     
    181181                    if ( $success_url ) {
    182182                        printf(
    183                             /* translators: The URL the user is being redirected to. */
     183                            /* translators: %s: The URL the user is being redirected to. */
    184184                            __( 'You will be sent to %s' ),
    185185                            '<strong><kbd>' . esc_html(
     
    205205                    if ( $reject_url ) {
    206206                        printf(
    207                             /* translators: The URL the user is being redirected to. */
     207                            /* translators: %s: The URL the user is being redirected to. */
    208208                            __( 'You will be sent to %s' ),
    209209                            '<strong><kbd>' . esc_html(
  • trunk/src/wp-login.php

    r49109 r49110  
    686686                $admin_email_help_url = __( 'https://wordpress.org/support/article/settings-general-screen/#email-address' );
    687687
    688                 /* translators: accessibility text */
     688                /* translators: Accessibility text. */
    689689                $accessibility_text = sprintf( '<span class="screen-reader-text"> %s</span>', __( '(opens in a new tab)' ) );
    690690
     
    13801380                    $message = sprintf( 'Please log in to %1$s to authorize %2$s to connect to your account.', get_bloginfo( 'name', 'display' ), '<strong>' . esc_html( $query['app_name'] ) . '</strong>' );
    13811381                } else {
    1382                     /* translators: Website name. */
     1382                    /* translators: %s: Website name. */
    13831383                    $message = sprintf( 'Please log in to %s to proceed with authorization.', get_bloginfo( 'name', 'display' ) );
    13841384                }
Note: See TracChangeset for help on using the changeset viewer.