Changeset 51463 for trunk/src/wp-admin/authorize-application.php
- Timestamp:
- 07/19/2021 09:13:36 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/authorize-application.php
r50932 r51463 91 91 if ( wp_is_site_protected_by_basic_auth( 'front' ) ) { 92 92 wp_die( 93 __( 'Your website appears to use Basic Authentication, which is not currently compatible with Application Passwords.' ),93 __( 'Your website appears to use Basic Authentication, which is not currently compatible with application passwords.' ), 94 94 __( 'Cannot Authorize Application' ), 95 95 array( … … 148 148 printf( 149 149 /* translators: %s: Application name. */ 150 __( '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.' ),150 __( 'Would you like to give the application identifying itself as %s access to your account? You should only do this if you trust the application in question.' ), 151 151 '<strong>' . esc_html( $app_name ) . '</strong>' 152 152 ); … … 154 154 </p> 155 155 <?php else : ?> 156 <p><?php _e( 'Would you like to give this application access to your account? You should only do this if you trust the app in question.' ); ?></p>156 <p><?php _e( 'Would you like to give this application access to your account? You should only do this if you trust the application in question.' ); ?></p> 157 157 <?php endif; ?> 158 158 … … 248 248 <?php 249 249 submit_button( 250 __( 'Yes, I approve of this connection .' ),250 __( 'Yes, I approve of this connection' ), 251 251 'primary', 252 252 'approve', … … 263 263 /* translators: %s: The URL the user is being redirected to. */ 264 264 __( 'You will be sent to %s' ), 265 '<strong>< kbd>' . esc_html(265 '<strong><code>' . esc_html( 266 266 add_query_arg( 267 267 array( … … 272 272 $success_url 273 273 ) 274 ) . '</ kbd></strong>'274 ) . '</code></strong>' 275 275 ); 276 276 } else { … … 282 282 <?php 283 283 submit_button( 284 __( 'No, I do not approve of this connection .' ),284 __( 'No, I do not approve of this connection' ), 285 285 'secondary', 286 286 'reject', … … 297 297 /* translators: %s: The URL the user is being redirected to. */ 298 298 __( 'You will be sent to %s' ), 299 '<strong>< kbd>' . esc_html( $reject_url ) . '</kbd></strong>'299 '<strong><code>' . esc_html( $reject_url ) . '</code></strong>' 300 300 ); 301 301 } else {
Note: See TracChangeset
for help on using the changeset viewer.