equal
deleted
inserted
replaced
51 <div class="changelog point-releases"> |
51 <div class="changelog point-releases"> |
52 <h3><?php _e( 'Maintenance and Security Releases' ); ?></h3> |
52 <h3><?php _e( 'Maintenance and Security Releases' ); ?></h3> |
53 <p> |
53 <p> |
54 <?php |
54 <?php |
55 printf( |
55 printf( |
56 /* translators: 1: WordPress version number, 2: plural number of bugs. More than one security issue. */ |
56 /* translators: %s: WordPress version number */ |
|
57 __( '<strong>Version %s</strong> addressed some security issues.' ), |
|
58 '5.2.4' |
|
59 ); |
|
60 ?> |
|
61 <?php |
|
62 printf( |
|
63 /* translators: %s: HelpHub URL */ |
|
64 __( 'For more information, see <a href="%s">the release notes</a>.' ), |
|
65 sprintf( |
|
66 /* translators: %s: WordPress version */ |
|
67 esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ), |
|
68 sanitize_title( '5.2.4' ) |
|
69 ) |
|
70 ); |
|
71 ?> |
|
72 </p> |
|
73 <p> |
|
74 <?php |
|
75 printf( |
|
76 /* translators: 1: WordPress version number, 2: plural number of bugs. More than one security issue. */ |
57 _n( |
77 _n( |
58 '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bug.', |
78 '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bug.', |
59 '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bugs.', |
79 '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bugs.', |
60 29 |
80 29 |
61 ), |
81 ), |
63 number_format_i18n( 29 ) |
83 number_format_i18n( 29 ) |
64 ); |
84 ); |
65 ?> |
85 ?> |
66 <?php |
86 <?php |
67 printf( |
87 printf( |
68 /* translators: %s: HelpHub URL */ |
88 /* translators: %s: HelpHub URL */ |
69 __( 'For more information, see <a href="%s">the release notes</a>.' ), |
89 __( 'For more information, see <a href="%s">the release notes</a>.' ), |
70 sprintf( |
90 sprintf( |
71 /* translators: %s: WordPress version */ |
91 /* translators: %s: WordPress version */ |
72 esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ), |
92 esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ), |
73 sanitize_title( '5.2.3' ) |
93 sanitize_title( '5.2.3' ) |
74 ) |
94 ) |
75 ); |
95 ); |
76 ?> |
96 ?> |