Changeset 49284
- Timestamp:
- 10/23/2020 03:59:34 PM (4 years ago)
- Location:
- trunk/src
- Files:
-
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/js/_enqueues/wp/updates.js
r49151 r49284 2581 2581 sprintf( 2582 2582 /* translators: %s: Search query. */ 2583 __( 'Search results for “%s”' ),2584 _.escape( data.s )2583 __( 'Search results for: %s' ), 2584 '<strong>' + _.escape( data.s ) + '</strong>' 2585 2585 ) ), 2586 2586 $oldSubTitle = $( '.wrap .subtitle' ); -
trunk/src/wp-admin/edit-comments.php
r49193 r49284 233 233 printf( 234 234 /* translators: %s: Search query. */ 235 __( 'Search results for “%s”' ),236 wp_html_excerpt( esc_html( wp_unslash( $_REQUEST['s'] ) ), 50, '…' )235 __( 'Search results for: %s' ), 236 '<strong>' . wp_html_excerpt( esc_html( wp_unslash( $_REQUEST['s'] ) ), 50, '…' . '</strong>' ) 237 237 ); 238 238 echo '</span>'; -
trunk/src/wp-admin/edit-tags.php
r47550 r49284 340 340 if ( isset( $_REQUEST['s'] ) && strlen( $_REQUEST['s'] ) ) { 341 341 /* translators: %s: Search query. */ 342 printf( '<span class="subtitle">' . __( 'Search results for “%s”' ) . '</span>', esc_html( wp_unslash( $_REQUEST['s'] ) ));342 printf( '<span class="subtitle">' . __( 'Search results for: %s' ) . '</span>', '<strong>' . esc_html( wp_unslash( $_REQUEST['s'] ) ) . '</strong>' ); 343 343 } 344 344 ?> -
trunk/src/wp-admin/edit.php
r49193 r49284 408 408 if ( isset( $_REQUEST['s'] ) && strlen( $_REQUEST['s'] ) ) { 409 409 /* translators: %s: Search query. */ 410 printf( ' <span class="subtitle">' . __( 'Search results for “%s”' ) . '</span>', get_search_query());410 printf( ' <span class="subtitle">' . __( 'Search results for: %s' ) . '</span>', '<strong>' . get_search_query() . '</strong>' ); 411 411 } 412 412 ?> -
trunk/src/wp-admin/includes/class-wp-plugins-list-table.php
r49241 r49284 408 408 409 409 /* translators: %s: Plugin search term. */ 410 printf( __( 'No plugins found for “%s”.' ), $s);410 printf( __( 'No plugins found for: %s.' ), '<strong>' . $s . '</strong>' ); 411 411 412 412 // We assume that somebody who can install plugins in multisite is experienced enough to not need this helper link. -
trunk/src/wp-admin/link-manager.php
r47785 r49284 106 106 if ( isset( $_REQUEST['s'] ) && strlen( $_REQUEST['s'] ) ) { 107 107 /* translators: %s: Search query. */ 108 printf( '<span class="subtitle">' . __( 'Search results for “%s”' ) . '</span>', esc_html( wp_unslash( $_REQUEST['s'] ) ));108 printf( '<span class="subtitle">' . __( 'Search results for: %s' ) . '</span>', '<strong>' . esc_html( wp_unslash( $_REQUEST['s'] ) ) . '</strong>' ); 109 109 } 110 110 ?> -
trunk/src/wp-admin/network/sites.php
r49108 r49284 373 373 if ( isset( $_REQUEST['s'] ) && strlen( $_REQUEST['s'] ) ) { 374 374 /* translators: %s: Search query. */ 375 printf( '<span class="subtitle">' . __( 'Search results for “%s”' ) . '</span>', esc_html( $s ));375 printf( '<span class="subtitle">' . __( 'Search results for: %s' ) . '</span>', '<strong>' . esc_html( $s ) . '</strong>' ); 376 376 } 377 377 ?> -
trunk/src/wp-admin/network/themes.php
r49193 r49284 354 354 if ( isset( $_REQUEST['s'] ) && strlen( $_REQUEST['s'] ) ) { 355 355 /* translators: %s: Search query. */ 356 printf( '<span class="subtitle">' . __( 'Search results for “%s”' ) . '</span>', esc_html( $s ));356 printf( '<span class="subtitle">' . __( 'Search results for: %s' ) . '</span>', '<strong>' . esc_html( $s ) . '</strong>' ); 357 357 } 358 358 ?> -
trunk/src/wp-admin/network/users.php
r49108 r49284 280 280 if ( strlen( $usersearch ) ) { 281 281 /* translators: %s: Search query. */ 282 printf( '<span class="subtitle">' . __( 'Search results for “%s”' ) . '</span>', esc_html( $usersearch ));282 printf( '<span class="subtitle">' . __( 'Search results for: %s' ) . '</span>', '<strong>' . esc_html( $usersearch ) . '</strong>' ); 283 283 } 284 284 ?> -
trunk/src/wp-admin/plugins.php
r49193 r49284 729 729 if ( strlen( $s ) ) { 730 730 /* translators: %s: Search query. */ 731 printf( '<span class="subtitle">' . __( 'Search results for “%s”' ) . '</span>', esc_html( urldecode( $s ) ));731 printf( '<span class="subtitle">' . __( 'Search results for: %s' ) . '</span>', '<strong>' . esc_html( urldecode( $s ) ) . '</strong>' ); 732 732 } 733 733 ?> -
trunk/src/wp-admin/upload.php
r49193 r49284 277 277 if ( isset( $_REQUEST['s'] ) && strlen( $_REQUEST['s'] ) ) { 278 278 /* translators: %s: Search query. */ 279 printf( '<span class="subtitle">' . __( 'Search results for “%s”' ) . '</span>', get_search_query());279 printf( '<span class="subtitle">' . __( 'Search results for: %s' ) . '</span>', '<strong>' . get_search_query() . '</strong>' ); 280 280 } 281 281 ?> -
trunk/src/wp-admin/users.php
r49178 r49284 572 572 if ( strlen( $usersearch ) ) { 573 573 /* translators: %s: Search query. */ 574 printf( '<span class="subtitle">' . __( 'Search results for “%s”' ) . '</span>', esc_html( $usersearch ));574 printf( '<span class="subtitle">' . __( 'Search results for: %s' ) . '</span>', '<strong>' . esc_html( $usersearch ) . '</strong>' ); 575 575 } 576 576 ?>
Note: See TracChangeset
for help on using the changeset viewer.