Changeset 45932 for trunk/src/wp-login.php
- Timestamp:
- 09/03/2019 12:39:13 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-login.php
r45926 r45932 62 62 $login_title = get_bloginfo( 'name', 'display' ); 63 63 64 /* translators: Login screen title. 1: Login screen name, 2: Network or site name */64 /* translators: Login screen title. 1: Login screen name, 2: Network or site name. */ 65 65 $login_title = sprintf( __( '%1$s ‹ %2$s — WordPress' ), $title, $login_title ); 66 66 … … 278 278 <?php 279 279 280 /* translators: %s: site title*/280 /* translators: %s: Site title. */ 281 281 printf( _x( '← Back to %s', 'site' ), get_bloginfo( 'title', 'display' ) ); 282 282 … … 406 406 407 407 $message = __( 'Someone has requested a password reset for the following account:' ) . "\r\n\r\n"; 408 /* translators: %s: site name*/408 /* translators: %s: Site name. */ 409 409 $message .= sprintf( __( 'Site Name: %s' ), $site_name ) . "\r\n\r\n"; 410 /* translators: %s: user login*/410 /* translators: %s: User login. */ 411 411 $message .= sprintf( __( 'Username: %s' ), $user_login ) . "\r\n\r\n"; 412 412 $message .= __( 'If this was a mistake, just ignore this email and nothing will happen.' ) . "\r\n\r\n"; … … 414 414 $message .= '<' . network_site_url( "wp-login.php?action=rp&key=$key&login=" . rawurlencode( $user_login ), 'login' ) . ">\r\n"; 415 415 416 /* translators: Password reset notification email subject. %s: Site title */416 /* translators: Password reset notification email subject. %s: Site title. */ 417 417 $title = sprintf( __( '[%s] Password Reset' ), $site_name ); 418 418 … … 448 448 'retrieve_password_email_failure', 449 449 sprintf( 450 /* translators: %s: Documentation URL */450 /* translators: %s: Documentation URL. */ 451 451 __( '<strong>ERROR</strong>: The email could not be sent. Your site may not be correctly configured to send emails. <a href="%s">Get support for resetting your password</a>.' ), 452 452 esc_url( __( 'https://wordpress.org/support/article/resetting-your-password/' ) ) … … 653 653 654 654 printf( 655 /* translators: %s: admin email address*/655 /* translators: %s: Admin email address. */ 656 656 __( 'Current administration email: %s' ), 657 657 '<strong>' . esc_html( $admin_email ) . '</strong>' … … 1181 1181 'test_cookie', 1182 1182 sprintf( 1183 /* translators: 1: Browser cookie documentation URL, 2: Support forums URL */1183 /* translators: 1: Browser cookie documentation URL, 2: Support forums URL. */ 1184 1184 __( '<strong>ERROR</strong>: Cookies are blocked due to unexpected output. For help, please see <a href="%1$s">this documentation</a> or try the <a href="%2$s">support forums</a>.' ), 1185 1185 __( 'https://wordpress.org/support/article/cookies/' ), … … 1192 1192 'test_cookie', 1193 1193 sprintf( 1194 /* translators: %s: Browser cookie documentation URL */1194 /* translators: %s: Browser cookie documentation URL. */ 1195 1195 __( '<strong>ERROR</strong>: Cookies are blocked or not supported by your browser. You must <a href="%s">enable cookies</a> to use WordPress.' ), 1196 1196 __( 'https://wordpress.org/support/article/cookies/#enable-cookies-in-your-browser' )
Note: See TracChangeset
for help on using the changeset viewer.