Coding Standards: Fix the minor `WordPress.WP.I18n` violations.
`WordPress.WP.I18n.MissingTranslatorsComment` is in progress in #44360. See #45934. Built from https://develop.svn.wordpress.org/trunk@44562 git-svn-id: http://core.svn.wordpress.org/trunk@44393 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
e05b19d248
commit
c008959e9e
|
@ -65,8 +65,10 @@ foreach ( $credits['groups'] as $group_slug => $group_data ) {
|
||||||
// Considered a special slug in the API response. (Also, will never be returned for en_US.)
|
// Considered a special slug in the API response. (Also, will never be returned for en_US.)
|
||||||
$title = _x( 'Translators', 'Translate this to be the equivalent of English Translators in your language for the credits page Translators section' );
|
$title = _x( 'Translators', 'Translate this to be the equivalent of English Translators in your language for the credits page Translators section' );
|
||||||
} elseif ( isset( $group_data['placeholders'] ) ) {
|
} elseif ( isset( $group_data['placeholders'] ) ) {
|
||||||
|
// phpcs:ignore WordPress.WP.I18n.LowLevelTranslationFunction,WordPress.WP.I18n.NonSingularStringLiteralText
|
||||||
$title = vsprintf( translate( $group_data['name'] ), $group_data['placeholders'] );
|
$title = vsprintf( translate( $group_data['name'] ), $group_data['placeholders'] );
|
||||||
} else {
|
} else {
|
||||||
|
// phpcs:ignore WordPress.WP.I18n.LowLevelTranslationFunction,WordPress.WP.I18n.NonSingularStringLiteralText
|
||||||
$title = translate( $group_data['name'] );
|
$title = translate( $group_data['name'] );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -100,6 +102,7 @@ foreach ( $credits['groups'] as $group_slug => $group_data ) {
|
||||||
echo '<img src="' . esc_url( $data['url'] ) . '" srcset="' . esc_url( $data2x['url'] ) . ' 2x" class="gravatar" alt="" />' . "\n";
|
echo '<img src="' . esc_url( $data['url'] ) . '" srcset="' . esc_url( $data2x['url'] ) . ' 2x" class="gravatar" alt="" />' . "\n";
|
||||||
echo esc_html( $person_data[0] ) . "</a>\n\t";
|
echo esc_html( $person_data[0] ) . "</a>\n\t";
|
||||||
if ( ! $compact ) {
|
if ( ! $compact ) {
|
||||||
|
// phpcs:ignore WordPress.WP.I18n.LowLevelTranslationFunction,WordPress.WP.I18n.NonSingularStringLiteralText
|
||||||
echo '<span class="title">' . translate( $person_data[3] ) . "</span>\n";
|
echo '<span class="title">' . translate( $person_data[3] ) . "</span>\n";
|
||||||
}
|
}
|
||||||
echo "</li>\n";
|
echo "</li>\n";
|
||||||
|
|
|
@ -167,8 +167,10 @@ function wp_get_popular_importers() {
|
||||||
}
|
}
|
||||||
|
|
||||||
foreach ( $popular_importers['importers'] as &$importer ) {
|
foreach ( $popular_importers['importers'] as &$importer ) {
|
||||||
|
// phpcs:ignore WordPress.WP.I18n.LowLevelTranslationFunction,WordPress.WP.I18n.NonSingularStringLiteralText
|
||||||
$importer['description'] = translate( $importer['description'] );
|
$importer['description'] = translate( $importer['description'] );
|
||||||
if ( $importer['name'] != 'WordPress' ) {
|
if ( $importer['name'] != 'WordPress' ) {
|
||||||
|
// phpcs:ignore WordPress.WP.I18n.LowLevelTranslationFunction,WordPress.WP.I18n.NonSingularStringLiteralText
|
||||||
$importer['name'] = translate( $importer['name'] );
|
$importer['name'] = translate( $importer['name'] );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -137,6 +137,7 @@ function _get_plugin_data_markup_translate( $plugin_file, $plugin_data, $markup
|
||||||
}
|
}
|
||||||
if ( $textdomain ) {
|
if ( $textdomain ) {
|
||||||
foreach ( array( 'Name', 'PluginURI', 'Description', 'Author', 'AuthorURI', 'Version' ) as $field ) {
|
foreach ( array( 'Name', 'PluginURI', 'Description', 'Author', 'AuthorURI', 'Version' ) as $field ) {
|
||||||
|
// phpcs:ignore WordPress.WP.I18n.LowLevelTranslationFunction,WordPress.WP.I18n.NonSingularStringLiteralText,WordPress.WP.I18n.NonSingularStringLiteralDomain
|
||||||
$plugin_data[ $field ] = translate( $plugin_data[ $field ], $textdomain );
|
$plugin_data[ $field ] = translate( $plugin_data[ $field ], $textdomain );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -31,11 +31,20 @@
|
||||||
<?php if ( have_comments() ) : ?>
|
<?php if ( have_comments() ) : ?>
|
||||||
<h2 id="comments-title">
|
<h2 id="comments-title">
|
||||||
<?php
|
<?php
|
||||||
|
if ( 1 === get_comments_number() ) {
|
||||||
printf(
|
printf(
|
||||||
_n( 'One thought on “%2$s”', '%1$s thoughts on “%2$s”', get_comments_number(), 'twentyeleven' ),
|
/* translators: %s: The post title. */
|
||||||
|
__( 'One thought on “%1$s”', 'twentyeleven' ),
|
||||||
|
'<span>' . get_the_title() . '</span>'
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
printf(
|
||||||
|
/* translators: %1$s: The number of comments. %2$s: The post title. */
|
||||||
|
_n( '%1$s thought on “%2$s”', '%1$s thoughts on “%2$s”', get_comments_number(), 'twentyeleven' ),
|
||||||
number_format_i18n( get_comments_number() ),
|
number_format_i18n( get_comments_number() ),
|
||||||
'<span>' . get_the_title() . '</span>'
|
'<span>' . get_the_title() . '</span>'
|
||||||
);
|
);
|
||||||
|
}
|
||||||
?>
|
?>
|
||||||
</h2>
|
</h2>
|
||||||
|
|
||||||
|
|
|
@ -34,11 +34,20 @@
|
||||||
<?php if ( have_comments() ) : ?>
|
<?php if ( have_comments() ) : ?>
|
||||||
<h3 id="comments-title">
|
<h3 id="comments-title">
|
||||||
<?php
|
<?php
|
||||||
printf(
|
if ( 1 === get_comments_number() ) {
|
||||||
_n( 'One Response to %2$s', '%1$s Responses to %2$s', get_comments_number(), 'twentyten' ),
|
printf(
|
||||||
number_format_i18n( get_comments_number() ),
|
/* translators: %s: The post title. */
|
||||||
'<em>' . get_the_title() . '</em>'
|
__( 'One Response to %s', 'twentyten' ),
|
||||||
);
|
'<em>' . get_the_title() . '</em>'
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
/* translators: %1$s: The number of comments. %2$s: The post title. */
|
||||||
|
printf(
|
||||||
|
_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>'
|
||||||
|
);
|
||||||
|
}
|
||||||
?>
|
?>
|
||||||
</h3>
|
</h3>
|
||||||
|
|
||||||
|
|
|
@ -23,11 +23,20 @@ if ( post_password_required() ) {
|
||||||
<?php if ( have_comments() ) : ?>
|
<?php if ( have_comments() ) : ?>
|
||||||
<h2 class="comments-title">
|
<h2 class="comments-title">
|
||||||
<?php
|
<?php
|
||||||
|
if ( 1 === get_comments_number() ) {
|
||||||
printf(
|
printf(
|
||||||
_nx( 'One thought on “%2$s”', '%1$s thoughts on “%2$s”', get_comments_number(), 'comments title', 'twentythirteen' ),
|
/* translators: %s: The post title. */
|
||||||
|
_x( 'One thought on “%s”', 'comments title', 'twentythirteen' ),
|
||||||
|
'<span>' . get_the_title() . '</span>'
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
printf(
|
||||||
|
/* translators: %1$s: The number of comments. %2$s: The post title. */
|
||||||
|
_nx( '%1$s thought on “%2$s”', '%1$s thoughts on “%2$s”', get_comments_number(), 'comments title', 'twentythirteen' ),
|
||||||
number_format_i18n( get_comments_number() ),
|
number_format_i18n( get_comments_number() ),
|
||||||
'<span>' . get_the_title() . '</span>'
|
'<span>' . get_the_title() . '</span>'
|
||||||
);
|
);
|
||||||
|
}
|
||||||
?>
|
?>
|
||||||
</h2>
|
</h2>
|
||||||
|
|
||||||
|
|
|
@ -29,11 +29,20 @@ if ( post_password_required() ) {
|
||||||
<?php if ( have_comments() ) : ?>
|
<?php if ( have_comments() ) : ?>
|
||||||
<h2 class="comments-title">
|
<h2 class="comments-title">
|
||||||
<?php
|
<?php
|
||||||
|
if ( 1 === get_comments_number() ) {
|
||||||
printf(
|
printf(
|
||||||
_n( 'One thought on “%2$s”', '%1$s thoughts on “%2$s”', get_comments_number(), 'twentytwelve' ),
|
/* translators: %s: The post title. */
|
||||||
|
__( 'One thought on “%s”', 'twentytwelve' ),
|
||||||
|
'<span>' . get_the_title() . '</span>'
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
printf(
|
||||||
|
/* translators: %1$s: The number of comments. %2$s: The post title. */
|
||||||
|
_n( '%1$s thought on “%2$s”', '%1$s thoughts on “%2$s”', get_comments_number(), 'twentytwelve' ),
|
||||||
number_format_i18n( get_comments_number() ),
|
number_format_i18n( get_comments_number() ),
|
||||||
'<span>' . get_the_title() . '</span>'
|
'<span>' . get_the_title() . '</span>'
|
||||||
);
|
);
|
||||||
|
}
|
||||||
?>
|
?>
|
||||||
</h2>
|
</h2>
|
||||||
|
|
||||||
|
|
|
@ -836,12 +836,14 @@ function wp_generate_tag_cloud( $tags, $args = '' ) {
|
||||||
} elseif ( ! empty( $args['topic_count_text_callback'] ) ) {
|
} elseif ( ! empty( $args['topic_count_text_callback'] ) ) {
|
||||||
// Look for the alternative callback style. Ignore the previous default.
|
// Look for the alternative callback style. Ignore the previous default.
|
||||||
if ( $args['topic_count_text_callback'] === 'default_topic_count_text' ) {
|
if ( $args['topic_count_text_callback'] === 'default_topic_count_text' ) {
|
||||||
|
// wpcs:ignore WordPress.WP.I18n.NonSingularStringLiteralSingle,WordPress.WP.I18n.NonSingularStringLiteralPlural
|
||||||
$translate_nooped_plural = _n_noop( '%s item', '%s items' );
|
$translate_nooped_plural = _n_noop( '%s item', '%s items' );
|
||||||
} else {
|
} else {
|
||||||
$translate_nooped_plural = false;
|
$translate_nooped_plural = false;
|
||||||
}
|
}
|
||||||
} elseif ( isset( $args['single_text'] ) && isset( $args['multiple_text'] ) ) {
|
} elseif ( isset( $args['single_text'] ) && isset( $args['multiple_text'] ) ) {
|
||||||
// If no callback exists, look for the old-style single_text and multiple_text arguments.
|
// If no callback exists, look for the old-style single_text and multiple_text arguments.
|
||||||
|
// phpcs:ignore WordPress.WP.I18n.NonSingularStringLiteralSingle,WordPress.WP.I18n.NonSingularStringLiteralPlural
|
||||||
$translate_nooped_plural = _n_noop( $args['single_text'], $args['multiple_text'] );
|
$translate_nooped_plural = _n_noop( $args['single_text'], $args['multiple_text'] );
|
||||||
} else {
|
} else {
|
||||||
// This is the default for when no callback, plural, or argument is passed in.
|
// This is the default for when no callback, plural, or argument is passed in.
|
||||||
|
|
|
@ -874,6 +874,7 @@ final class WP_Theme implements ArrayAccess {
|
||||||
if ( isset( $this->name_translated ) ) {
|
if ( isset( $this->name_translated ) ) {
|
||||||
return $this->name_translated;
|
return $this->name_translated;
|
||||||
}
|
}
|
||||||
|
// phpcs:ignore WordPress.WP.I18n.LowLevelTranslationFunction,WordPress.WP.I18n.NonSingularStringLiteralText,WordPress.WP.I18n.NonSingularStringLiteralDomain
|
||||||
$this->name_translated = translate( $value, $this->get( 'TextDomain' ) );
|
$this->name_translated = translate( $value, $this->get( 'TextDomain' ) );
|
||||||
return $this->name_translated;
|
return $this->name_translated;
|
||||||
case 'Tags':
|
case 'Tags':
|
||||||
|
@ -925,6 +926,7 @@ final class WP_Theme implements ArrayAccess {
|
||||||
return $value;
|
return $value;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
|
// phpcs:ignore WordPress.WP.I18n.LowLevelTranslationFunction,WordPress.WP.I18n.NonSingularStringLiteralText,WordPress.WP.I18n.NonSingularStringLiteralDomain
|
||||||
$value = translate( $value, $this->get( 'TextDomain' ) );
|
$value = translate( $value, $this->get( 'TextDomain' ) );
|
||||||
}
|
}
|
||||||
return $value;
|
return $value;
|
||||||
|
|
|
@ -5073,6 +5073,7 @@ function wp_timezone_choice( $selected_zone, $locale = null ) {
|
||||||
$exists[4] = ( $exists[1] && $exists[3] );
|
$exists[4] = ( $exists[1] && $exists[3] );
|
||||||
$exists[5] = ( $exists[2] && $exists[3] );
|
$exists[5] = ( $exists[2] && $exists[3] );
|
||||||
|
|
||||||
|
// phpcs:disable WordPress.WP.I18n.LowLevelTranslationFunction,WordPress.WP.I18n.NonSingularStringLiteralText
|
||||||
$zonen[] = array(
|
$zonen[] = array(
|
||||||
'continent' => ( $exists[0] ? $zone[0] : '' ),
|
'continent' => ( $exists[0] ? $zone[0] : '' ),
|
||||||
'city' => ( $exists[1] ? $zone[1] : '' ),
|
'city' => ( $exists[1] ? $zone[1] : '' ),
|
||||||
|
@ -5081,6 +5082,7 @@ function wp_timezone_choice( $selected_zone, $locale = null ) {
|
||||||
't_city' => ( $exists[4] ? translate( str_replace( '_', ' ', $zone[1] ), 'continents-cities' ) : '' ),
|
't_city' => ( $exists[4] ? translate( str_replace( '_', ' ', $zone[1] ), 'continents-cities' ) : '' ),
|
||||||
't_subcity' => ( $exists[5] ? translate( str_replace( '_', ' ', $zone[2] ), 'continents-cities' ) : '' ),
|
't_subcity' => ( $exists[5] ? translate( str_replace( '_', ' ', $zone[2] ), 'continents-cities' ) : '' ),
|
||||||
);
|
);
|
||||||
|
// phpcs:enable
|
||||||
}
|
}
|
||||||
usort( $zonen, '_wp_timezone_choice_usort_callback' );
|
usort( $zonen, '_wp_timezone_choice_usort_callback' );
|
||||||
|
|
||||||
|
|
|
@ -1037,6 +1037,7 @@ function register_post_status( $post_status, $args = array() ) {
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( false === $args->label_count ) {
|
if ( false === $args->label_count ) {
|
||||||
|
// phpcs:ignore WordPress.WP.I18n.NonSingularStringLiteralSingle,WordPress.WP.I18n.NonSingularStringLiteralPlural
|
||||||
$args->label_count = _n_noop( $args->label, $args->label );
|
$args->label_count = _n_noop( $args->label, $args->label );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '5.1-beta1-44561';
|
$wp_version = '5.1-beta1-44562';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue