We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72c7ab8 commit 97850a0Copy full SHA for 97850a0
src/wp-admin/about.php
@@ -51,6 +51,26 @@
51
<div class="about__section changelog">
52
<div class="column">
53
<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
63
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>
74
<p>
75
<?php
76
printf(
0 commit comments