I18N: Use consistent pattern for placeholder references in translator comments for some bundled theme strings.

Follow-up to [42827], [44562], [50234].

See #52628.
Built from https://develop.svn.wordpress.org/trunk@51157


git-svn-id: http://core.svn.wordpress.org/trunk@50766 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2021-06-15 15:38:57 +00:00
parent b018c55899
commit 4811dad603
6 changed files with 7 additions and 7 deletions

View File

@ -42,8 +42,8 @@ get_header(); ?>
</div>
<?php
/* translators: %1$s: Smilie. */
$archive_content = '<p>' . sprintf( __( 'Try looking in the monthly archives. %1$s', 'twentyeleven' ), convert_smilies( ':)' ) ) . '</p>';
/* translators: %s: Smilie. */
$archive_content = '<p>' . sprintf( __( 'Try looking in the monthly archives. %s', 'twentyeleven' ), convert_smilies( ':)' ) ) . '</p>';
the_widget(
'WP_Widget_Archives',
array(

View File

@ -39,7 +39,7 @@
);
} else {
printf(
/* translators: %1$s: The number of comments. %2$s: The post title. */
/* translators: 1: The number of comments, 2: The post title. */
_n( '%1$s thought on &ldquo;%2$s&rdquo;', '%1$s thoughts on &ldquo;%2$s&rdquo;', get_comments_number(), 'twentyeleven' ),
number_format_i18n( get_comments_number() ),
'<span>' . get_the_title() . '</span>'

View File

@ -42,7 +42,7 @@
);
} else {
printf(
/* translators: %1$s: The number of comments. %2$s: The post title. */
/* translators: 1: The number of comments, 2: The post title. */
_n( '%1$s Response to %2$s', '%1$s Responses to %2$s', get_comments_number(), 'twentyten' ),
number_format_i18n( get_comments_number() ),
'<em>' . get_the_title() . '</em>'

View File

@ -31,7 +31,7 @@ if ( post_password_required() ) {
);
} else {
printf(
/* translators: %1$s: The number of comments. %2$s: The post title. */
/* translators: 1: The number of comments, 2: The post title. */
_nx( '%1$s thought on &ldquo;%2$s&rdquo;', '%1$s thoughts on &ldquo;%2$s&rdquo;', get_comments_number(), 'comments title', 'twentythirteen' ),
number_format_i18n( get_comments_number() ),
'<span>' . get_the_title() . '</span>'

View File

@ -37,7 +37,7 @@ if ( post_password_required() ) {
);
} else {
printf(
/* translators: %1$s: The number of comments. %2$s: The post title. */
/* translators: 1: The number of comments, 2: The post title. */
_n( '%1$s thought on &ldquo;%2$s&rdquo;', '%1$s thoughts on &ldquo;%2$s&rdquo;', get_comments_number(), 'twentytwelve' ),
number_format_i18n( get_comments_number() ),
'<span>' . get_the_title() . '</span>'

View File

@ -13,7 +13,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.8-beta1-51156';
$wp_version = '5.8-beta1-51157';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.