Twenty Twenty-One: Use a more specific link for Dark Mode instructions.
Make both instances of the link translatable, for consistency. Props engahmeds3ed, justinahinon. Merges [49798] to the 5.6 branch. Fixes #52010. Built from https://develop.svn.wordpress.org/branches/5.6@49819 git-svn-id: http://core.svn.wordpress.org/branches/5.6@49538 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
21bd25a8e7
commit
a54ecd84f3
|
@ -39,7 +39,7 @@ class Twenty_Twenty_One_Customize_Notice_Control extends WP_Customize_Control {
|
|||
?>
|
||||
<div class="notice notice-warning">
|
||||
<p><?php esc_html_e( 'To access the Dark Mode settings, select a light background color.', 'twentytwentyone' ); ?></p>
|
||||
<p><a href="https://wordpress.org/support/article/twenty-twenty-one/">
|
||||
<p><a href="<?php echo esc_url( __( 'https://wordpress.org/support/article/twenty-twenty-one/#dark-mode-support', 'twentytwentyone' ) ); ?>">
|
||||
<?php esc_html_e( 'Learn more about Dark Mode.', 'twentytwentyone' ); ?>
|
||||
</a></p>
|
||||
</div>
|
||||
|
|
|
@ -184,9 +184,9 @@ class Twenty_Twenty_One_Dark_Mode {
|
|||
|
||||
$description = '<p>';
|
||||
$description .= sprintf(
|
||||
// translators: %s is the wordpress.org Twenty Twenty-One support article URL.
|
||||
/* translators: %s: Twenty Twenty-One support article URL. */
|
||||
__( 'Dark Mode is a device setting. If a visitor to your site requests it, your site will be shown with a dark background and light text. <a href="%s">Learn more about Dark Mode.</a>', 'twentytwentyone' ),
|
||||
__( 'https://wordpress.org/support/article/twenty-twenty-one/', 'twentytwentyone' )
|
||||
esc_url( __( 'https://wordpress.org/support/article/twenty-twenty-one/#dark-mode-support', 'twentytwentyone' ) )
|
||||
);
|
||||
$description .= '</p>';
|
||||
$description .= '<p>' . __( 'Dark Mode can also be turned on and off with a button that you can find in the bottom right corner of the page.', 'twentytwentyone' ) . '</p>';
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.6.1-alpha-49818';
|
||||
$wp_version = '5.6.1-alpha-49819';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue