Make WordPress Core

Ticket #35718: 35718.patch

File 35718.patch, 1.2 KB (added by ramiy, 9 years ago)
  • wp-admin/maint/repair.php

     
    5959
    6060                echo '<h2 class="screen-reader-text">' . __( 'Check secret keys' ) . '</h2>';
    6161
    62                 // Translators: 1: wp-config.php; 2: Secret key service URL.
    63                 echo '<p>' . sprintf( __( 'While you are editing your %1$s file, take a moment to make sure you have all 8 keys and that they are unique. You can generate these using the <a href="%2$s">WordPress.org secret key service</a>.' ), '<code>wp-config.php</code>', 'https://api.wordpress.org/secret-key/1.1/salt/' ) . '</p>';
     62                echo '<p>' .
     63                        sprintf(
     64                                // Translators: 1: wp-config.php; 2 WordPress.org secret key service
     65                                __( 'While you are editing your %1$s file, take a moment to make sure you have all 8 keys and that they are unique. You can generate these using the %2$s.' ),
     66                                '<code>wp-config.php</code>',
     67                                '<a href="' . __( 'https://api.wordpress.org/secret-key/1.1/salt/' ) . '">' . __( 'WordPress.org secret key service' ) . '</a>'
     68                        ) .
     69                        '</p>';
    6470        }
    6571
    6672} elseif ( isset( $_GET['repair'] ) ) {