I18N: Update translator comments after [45674].

See #47771.
Built from https://develop.svn.wordpress.org/trunk@45676


git-svn-id: http://core.svn.wordpress.org/trunk@45487 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov
2019-07-25 22:52:56 +00:00
parent ac10f9b9e4
commit a186dbcb65
10 changed files with 13 additions and 13 deletions

View File

@@ -663,7 +663,7 @@ function post_excerpt_meta_box( $post ) {
<p>
<?php
printf(
/* translators: %s: Codex URL */
/* translators: %s: Documentation URL */
__( 'Excerpts are optional hand-crafted summaries of your content that can be used in your theme. <a href="%s">Learn more about manual excerpts</a>.' ),
__( 'https://wordpress.org/support/article/excerpt/' )
);
@@ -700,7 +700,7 @@ function post_trackback_meta_box( $post ) {
<p>
<?php
printf(
/* translators: %s: Codex URL */
/* translators: %s: Documentation URL */
__( 'Trackbacks are a way to notify legacy blog systems that you&#8217;ve linked to them. If you link other WordPress sites, they&#8217;ll be notified automatically using <a href="%s">pingbacks</a>, no other action necessary.' ),
__( 'https://wordpress.org/support/article/introduction-to-blogging/#comments' )
);
@@ -737,7 +737,7 @@ function post_custom_meta_box( $post ) {
<p>
<?php
printf(
/* translators: %s: Codex URL */
/* translators: %s: Documentation URL */
__( 'Custom fields can be used to add extra metadata to a post that you can <a href="%s">use in your theme</a>.' ),
__( 'https://wordpress.org/support/article/custom-fields/' )
);
@@ -761,7 +761,7 @@ function post_comment_status_meta_box( $post ) {
<label for="ping_status" class="selectit"><input name="ping_status" type="checkbox" id="ping_status" value="open" <?php checked( $post->ping_status, 'open' ); ?> />
<?php
printf(
/* translators: %s: Codex URL */
/* translators: %s: Documentation URL */
__( 'Allow <a href="%s">trackbacks and pingbacks</a> on this page' ),
__( 'https://wordpress.org/support/article/introduction-to-blogging/#managing-comments' )
);