Changeset 35443 for trunk/src/wp-admin/includes/dashboard.php
- Timestamp:
- 10/30/2015 01:32:17 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/dashboard.php
r35414 r35443 1266 1266 if ( $response ) { 1267 1267 if ( $response['insecure'] ) { 1268 $msg = sprintf( __( "It looks like you're using an insecure version of <a href='%s'>%s</a>. Using an outdated browser makes your computer unsafe. For the best WordPress experience, please update your browser." ), esc_attr( $response['update_url'] ), esc_html( $response['name'] ) ); 1268 /* translators: %s: browser name and link */ 1269 $msg = sprintf( __( "It looks like you're using an insecure version of %s. Using an outdated browser makes your computer unsafe. For the best WordPress experience, please update your browser." ), 1270 sprintf( '<a href="%s">%s</a>', esc_url( $response['update_url'] ), esc_html( $response['name'] ) ) 1271 ); 1269 1272 } else { 1270 $msg = sprintf( __( "It looks like you're using an old version of <a href='%s'>%s</a>. For the best WordPress experience, please update your browser." ), esc_attr( $response['update_url'] ), esc_html( $response['name'] ) ); 1273 /* translators: %s: browser name and link */ 1274 $msg = sprintf( __( "It looks like you're using an old version of %s. For the best WordPress experience, please update your browser." ), 1275 sprintf( '<a href="%s">%s</a>', esc_url( $response['update_url'] ), esc_html( $response['name'] ) ) 1276 ); 1271 1277 } 1272 1278
Note: See TracChangeset
for help on using the changeset viewer.