Skip to content

Commit ac539ca

Browse files
Administration: Change code tags to regular text for dimensions in “Site Icon” help text.
Follow-up to [57713], [58927]. Props juanfra, sabernhardt, niravsherasiya7707, manhar, mukesh27, vgnavada, wpdevsxyz, kevinrobles, SergeyBiryukov. Fixes #64792. git-svn-id: https://develop.svn.wordpress.org/trunk@62412 602fd350-edb4-49c9-b593-d223f7449a82
1 parent 6ddfc9d commit ac539ca

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/wp-admin/options-general.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ class="<?php echo esc_attr( $classes_for_button ); ?>"
212212
<?php
213213
printf(
214214
/* translators: 1: pixel value for icon size. 2: pixel value for icon size. */
215-
__( 'The Site Icon is what you see in browser tabs, bookmark bars, and within the WordPress mobile apps. It should be square and at least <code>%1$s by %2$s</code> pixels.' ),
215+
__( 'The Site Icon is what you see in browser tabs, bookmark bars, and within the WordPress mobile apps. It should be square and at least <strong>%1$s by %2$s</strong> pixels.' ),
216216
512,
217217
512
218218
);

src/wp-includes/class-wp-customize-manager.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5210,7 +5210,7 @@ public function register_controls() {
52105210
'label' => __( 'Site Icon' ),
52115211
'description' => sprintf(
52125212
/* translators: 1: pixel value for icon size. 2: pixel value for icon size. */
5213-
'<p>' . __( 'The Site Icon is what you see in browser tabs, bookmark bars, and within the WordPress mobile apps. It should be square and at least <code>%1$s by %2$s</code> pixels.' ) . '</p>',
5213+
'<p>' . __( 'The Site Icon is what you see in browser tabs, bookmark bars, and within the WordPress mobile apps. It should be square and at least <strong>%1$s by %2$s</strong> pixels.' ) . '</p>',
52145214
512,
52155215
512
52165216
),

0 commit comments

Comments
 (0)