Move translator comment closer to string.

Translator comments should be placed directly in the line above the string to be translated, in order for parser to pick it up.
This commit is contained in:
Konstantin Obenland 2015-07-02 14:21:17 -07:00
parent 5bb0534358
commit b5777c0d7e
1 changed files with 1 additions and 1 deletions

View File

@ -20,8 +20,8 @@
<div class="entry-content">
<?php
/* translators: %s: Name of current post */
the_content( sprintf(
/* translators: %s: Name of current post. */
wp_kses( __( 'Continue reading %s <span class="meta-nav">&rarr;</span>', '_s' ), array( 'span' => array( 'class' => array() ) ) ),
the_title( '<span class="screen-reader-text">"', '"</span>', false )
) );