Skip to content

Commit 97850a0

Browse files
committed
Change log.
1 parent 72c7ab8 commit 97850a0

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
@@ -51,6 +51,26 @@
5151
<div class="about__section changelog">
5252
<div class="column">
5353
<h2><?php _e( 'Maintenance and Security Releases' ); ?></h2>
54+
<p>
55+
<?php
56+
printf(
57+
/* translators: %s: WordPress version number */
58+
__( '<strong>Version %s</strong> addressed one security issue.' ),
59+
'5.3.19'
60+
);
61+
?>
62+
<?php
63+
printf(
64+
/* translators: %s: HelpHub URL */
65+
__( 'For more information, see <a href="%s">the release notes</a>.' ),
66+
sprintf(
67+
/* translators: %s: WordPress version */
68+
esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
69+
sanitize_title( '5.3.19' )
70+
)
71+
);
72+
?>
73+
</p>
5474
<p>
5575
<?php
5676
printf(

0 commit comments

Comments
 (0)