Changeset 61368
- Timestamp:
- 12/11/2025 12:45:50 AM (2 days ago)
- File:
-
- 1 edited
-
trunk/src/wp-login.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-login.php
r61085 r61368 1463 1463 if ( ! empty( $query['app_name'] ) ) { 1464 1464 /* translators: 1: Website name, 2: Application name. */ 1465 $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>' );1465 $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>' ); 1466 1466 } else { 1467 1467 /* translators: %s: Website name. */ 1468 $message = sprintf( 'Please log in to %s to proceed with authorization.', get_bloginfo( 'name', 'display' ) );1468 $message = sprintf( __( 'Please log in to %s to proceed with authorization.' ), get_bloginfo( 'name', 'display' ) ); 1469 1469 } 1470 1470
Note: See TracChangeset
for help on using the changeset viewer.