Skip to content

Commit

Permalink
About page update 6.4.1 (three issues).
Browse files Browse the repository at this point in the history
  • Loading branch information
peterwilsoncc committed Nov 8, 2023
1 parent 951941b commit 1c596ac
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions src/wp-admin/about.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,37 @@
<a href="contribute.php" class="nav-tab"><?php _e( 'Get Involved' ); ?></a>
</nav>

<div class="about__section changelog has-subtle-background-color">
<div class="column">
<h2><?php _e( 'Maintenance Release' ); ?></h2>
<p>
<?php
printf(
/* translators: 1: WordPress version number, 2: Plural number of bugs. */
_n(
'<strong>Version %1$s</strong> addressed %2$s bug.',
'<strong>Version %1$s</strong> addressed %2$s bugs.',
10
),
'6.4.1',
'3'
);
?>
<?php
printf(
/* translators: %s: HelpHub URL. */
__( 'For more information, see <a href="%s">the release notes</a>.' ),
sprintf(
/* translators: %s: WordPress version. */
esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
sanitize_title( '6.4.1' )
)
);
?>
</p>
</div>
</div>

<div class="about__section">
<div class="column">
<h2 class="aligncenter">
Expand Down

0 comments on commit 1c596ac

Please sign in to comment.