I18N: Fix translator comment for a themes list table string with numbered placeholders.
Props garrett-eclipse. Fixes #47515. Built from https://develop.svn.wordpress.org/trunk@46387 git-svn-id: http://core.svn.wordpress.org/trunk@46186 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
6f38c7fb81
commit
d38d1c2c35
|
@ -281,7 +281,7 @@ class WP_Themes_List_Table extends WP_List_Table {
|
||||||
<?php
|
<?php
|
||||||
if ( $theme->parent() ) {
|
if ( $theme->parent() ) {
|
||||||
printf(
|
printf(
|
||||||
/* translators: %s: Link to documentation on child themes. */
|
/* translators: 1: Link to documentation on child themes 2: Name of parent theme. */
|
||||||
' <p class="howto">' . __( 'This <a href="%1$s">child theme</a> requires its parent theme, %2$s.' ) . '</p>',
|
' <p class="howto">' . __( 'This <a href="%1$s">child theme</a> requires its parent theme, %2$s.' ) . '</p>',
|
||||||
__( 'https://developer.wordpress.org/themes/advanced-topics/child-themes/' ),
|
__( 'https://developer.wordpress.org/themes/advanced-topics/child-themes/' ),
|
||||||
$theme->parent()->display( 'Name' )
|
$theme->parent()->display( 'Name' )
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '5.3-beta2-46386';
|
$wp_version = '5.3-beta2-46387';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 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