I18n: ensure all text strings with placeholders have translators comments.
This commit is contained in:
parent
b330bbaba7
commit
8cefd8f258
4 changed files with 20 additions and 4 deletions
|
@ -18,7 +18,10 @@
|
|||
<?php
|
||||
if ( is_home() && current_user_can( 'publish_posts' ) ) : ?>
|
||||
|
||||
<p><?php printf( wp_kses( __( 'Ready to publish your first post? <a href="%1$s">Get started here</a>.', '_s' ), array( 'a' => array( 'href' => array() ) ) ), esc_url( admin_url( 'post-new.php' ) ) ); ?></p>
|
||||
<p><?php
|
||||
/* translators: 1: link to WP admin new post page. */
|
||||
printf( wp_kses( __( 'Ready to publish your first post? <a href="%1$s">Get started here</a>.', '_s' ), array( 'a' => array( 'href' => array() ) ) ), esc_url( admin_url( 'post-new.php' ) ) );
|
||||
?></p>
|
||||
|
||||
<?php elseif ( is_search() ) : ?>
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue