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 f99bab8 commit f75bbcdCopy full SHA for f75bbcd
src/wp-admin/about.php
@@ -40,6 +40,26 @@
40
<div class="about__section changelog">
41
<div class="column">
42
<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
52
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>
63
<p>
64
<?php
65
printf(
0 commit comments