I18n: ensure all text strings with placeholders have translators comments.

This commit is contained in:
jrfnl 2017-04-03 00:19:17 +02:00
parent b330bbaba7
commit 8cefd8f258
4 changed files with 20 additions and 4 deletions

View file

@ -16,7 +16,10 @@ get_header(); ?>
if ( have_posts() ) : ?>
<header class="page-header">
<h1 class="page-title"><?php printf( esc_html__( 'Search Results for: %s', '_s' ), '<span>' . get_search_query() . '</span>' ); ?></h1>
<h1 class="page-title"><?php
/* translators: %s: search query. */
printf( esc_html__( 'Search Results for: %s', '_s' ), '<span>' . get_search_query() . '</span>' );
?></h1>
</header><!-- .page-header -->
<?php