Skip to content

Commit f75bbcd

Browse files
committed
Change log.
1 parent f99bab8 commit f75bbcd

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

src/wp-admin/about.php

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,26 @@
4040
<div class="about__section changelog">
4141
<div class="column">
4242
<h2><?php _e( 'Maintenance and Security Releases' ); ?></h2>
43+
<p>
44+
<?php
45+
printf(
46+
/* translators: %s: WordPress version number. */
47+
__( '<strong>Version %s</strong> addressed one security issue.' ),
48+
'6.0.10'
49+
);
50+
?>
51+
<?php
52+
printf(
53+
/* translators: %s: HelpHub URL. */
54+
__( 'For more information, see <a href="%s">the release notes</a>.' ),
55+
sprintf(
56+
/* translators: %s: WordPress version. */
57+
esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
58+
sanitize_title( '6.0.10' )
59+
)
60+
);
61+
?>
62+
</p>
4363
<p>
4464
<?php
4565
printf(

0 commit comments

Comments
 (0)