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 98d4d5a commit fc1aa30Copy full SHA for fc1aa30
src/wp-admin/about.php
@@ -33,6 +33,26 @@
33
34
<div class="changelog point-releases">
35
<h3><?php _e( 'Maintenance and Security Releases' ); ?></h3>
36
+ <p>
37
+ <?php
38
+ printf(
39
+ /* translators: %s: WordPress version number */
40
+ __( '<strong>Version %s</strong> addressed one security issue.' ),
41
+ '4.9.27'
42
+ );
43
+ ?>
44
45
46
+ /* translators: %s: HelpHub URL */
47
+ __( 'For more information, see <a href="%s">the release notes</a>.' ),
48
+ sprintf(
49
+ /* translators: %s: WordPress version */
50
+ esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
51
+ sanitize_title( '4.9.27' )
52
+ )
53
54
55
+ </p>
56
<p>
57
<?php
58
printf(
0 commit comments