author | ymh <ymh.work@gmail.com> |
Mon, 14 Oct 2019 18:28:13 +0200 | |
changeset 9 | 177826044cd9 |
parent 7 | cf61fcea0001 |
child 13 | d255fe9cd479 |
permissions | -rw-r--r-- |
0 | 1 |
<?php |
2 |
/** |
|
3 |
* About This Version administration panel. |
|
4 |
* |
|
5 |
* @package WordPress |
|
6 |
* @subpackage Administration |
|
7 |
*/ |
|
8 |
||
9 |
/** WordPress Administration Bootstrap */ |
|
10 |
require_once( dirname( __FILE__ ) . '/admin.php' ); |
|
11 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
12 |
/* translators: Page title of the About WordPress page in the admin. */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
13 |
$title = _x( 'About', 'page title' ); |
0 | 14 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
15 |
list( $display_version ) = explode( '-', get_bloginfo( 'version' ) ); |
0 | 16 |
|
17 |
include( ABSPATH . 'wp-admin/admin-header.php' ); |
|
18 |
?> |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
19 |
<div class="wrap about-wrap full-width-layout"> |
9 | 20 |
<h1> |
21 |
<?php |
|
22 |
/* translators: %s: The current WordPress version number */ |
|
23 |
printf( __( 'Welcome to WordPress %s' ), $display_version ); |
|
24 |
?> |
|
25 |
</h1> |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
26 |
|
9 | 27 |
<p class="about-text"> |
28 |
<?php |
|
29 |
printf( |
|
30 |
/* translators: %s: The current WordPress version number */ |
|
31 |
__( 'Congratulations on updating to WordPress %s! This update makes it easier than ever to fix your site if something goes wrong.' ), |
|
32 |
$display_version |
|
33 |
); |
|
34 |
?> |
|
35 |
</p> |
|
0 | 36 |
|
9 | 37 |
<div class="wp-badge"> |
38 |
<?php |
|
39 |
/* translators: %s: The current WordPress version number */ |
|
40 |
printf( __( 'Version %s' ), $display_version ); |
|
41 |
?> |
|
42 |
</div> |
|
43 |
||
44 |
<nav class="nav-tab-wrapper wp-clearfix" aria-label="<?php esc_attr_e( 'Secondary menu' ); ?>"> |
|
45 |
<a href="about.php" class="nav-tab nav-tab-active" aria-current="page"><?php _e( 'What’s New' ); ?></a> |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
46 |
<a href="credits.php" class="nav-tab"><?php _e( 'Credits' ); ?></a> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
47 |
<a href="freedoms.php" class="nav-tab"><?php _e( 'Freedoms' ); ?></a> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
48 |
<a href="freedoms.php?privacy-notice" class="nav-tab"><?php _e( 'Privacy' ); ?></a> |
9 | 49 |
</nav> |
0 | 50 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
51 |
<div class="changelog point-releases"> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
52 |
<h3><?php _e( 'Maintenance and Security Releases' ); ?></h3> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
53 |
<p> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
54 |
<?php |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
55 |
printf( |
9 | 56 |
/* translators: 1: WordPress version number, 2: plural number of bugs. More than one security issue. */ |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
57 |
_n( |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
58 |
'<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bug.', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
59 |
'<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bugs.', |
9 | 60 |
29 |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
61 |
), |
9 | 62 |
'5.2.3', |
63 |
number_format_i18n( 29 ) |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
64 |
); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
65 |
?> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
66 |
<?php |
9 | 67 |
printf( |
68 |
/* translators: %s: HelpHub URL */ |
|
69 |
__( 'For more information, see <a href="%s">the release notes</a>.' ), |
|
70 |
sprintf( |
|
71 |
/* translators: %s: WordPress version */ |
|
72 |
esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ), |
|
73 |
sanitize_title( '5.2.3' ) |
|
74 |
) |
|
75 |
); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
76 |
?> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
77 |
</p> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
78 |
<p> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
79 |
<?php |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
80 |
printf( |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
81 |
/* translators: 1: WordPress version number, 2: plural number of bugs. */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
82 |
_n( |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
83 |
'<strong>Version %1$s</strong> addressed %2$s bug.', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
84 |
'<strong>Version %1$s</strong> addressed %2$s bugs.', |
9 | 85 |
13 |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
86 |
), |
9 | 87 |
'5.2.2', |
88 |
number_format_i18n( 13 ) |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
89 |
); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
90 |
?> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
91 |
<?php |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
92 |
printf( |
9 | 93 |
/* translators: %s: HelpHub URL */ |
94 |
__( 'For more information, see <a href="%s">the release notes</a>.' ), |
|
95 |
sprintf( |
|
96 |
/* translators: %s: WordPress version */ |
|
97 |
esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ), |
|
98 |
sanitize_title( '5.2.2' ) |
|
99 |
) |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
100 |
); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
101 |
?> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
102 |
</p> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
103 |
<p> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
104 |
<?php |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
105 |
printf( |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
106 |
/* translators: 1: WordPress version number, 2: plural number of bugs. */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
107 |
_n( |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
108 |
'<strong>Version %1$s</strong> addressed %2$s bug.', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
109 |
'<strong>Version %1$s</strong> addressed %2$s bugs.', |
9 | 110 |
33 |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
111 |
), |
9 | 112 |
'5.2.1', |
113 |
number_format_i18n( 33 ) |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
114 |
); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
115 |
?> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
116 |
<?php |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
117 |
printf( |
9 | 118 |
/* translators: %s: HelpHub URL */ |
119 |
__( 'For more information, see <a href="%s">the release notes</a>.' ), |
|
120 |
sprintf( |
|
121 |
/* translators: %s: WordPress version */ |
|
122 |
esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ), |
|
123 |
sanitize_title( '5.2.1' ) |
|
124 |
) |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
125 |
); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
126 |
?> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
127 |
</p> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
128 |
</div> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
129 |
|
9 | 130 |
<div class="headline-feature"> |
131 |
<h2><?php _e( 'Keeping Your Site Safe' ); ?></h2> |
|
132 |
<p class="lead-description"><?php _e( 'WordPress 5.2 gives you even more robust tools for identifying and fixing configuration issues and fatal errors. Whether you are a developer helping clients or you manage your site solo, these tools can help get you the right information when you need it.' ); ?></p> |
|
133 |
<div class="inline-svg aligncenter"> |
|
134 |
<img src="https://s.w.org/images/core/5.2/about_maintain-wordpress-v2.svg" alt=""> |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
135 |
</div> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
136 |
</div> |
0 | 137 |
|
9 | 138 |
<hr /> |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
139 |
|
9 | 140 |
<div class="feature-section is-wide has-2-columns is-wider-left"> |
141 |
<div class="column is-vertically-aligned-center"> |
|
142 |
<h3><?php _e( 'Site Health Check' ); ?></h3> |
|
143 |
<p> |
|
144 |
<?php |
|
145 |
printf( |
|
146 |
/* translators: 1: link to the WordPress 5.1 release post */ |
|
147 |
__( 'Building on <a href="%1$s">the Site Health features introduced in 5.1</a>, this release adds two new pages to help debug common configuration issues. It also adds space where developers can include debugging information for site maintainers.' ), |
|
148 |
__( 'https://wordpress.org/news/2019/02/betty/' ) |
|
149 |
); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
150 |
|
9 | 151 |
if ( current_user_can( 'install_plugins' ) ) { |
152 |
printf( |
|
153 |
/* translators: 1: link to /wp-admin/site-health.php 2: link to /wp-admin/site-health.php?tab=debug */ |
|
154 |
__( ' <a href="%1$s">Check your site status</a>, and <a href="%2$s">learn how to debug issues</a>.' ), |
|
155 |
admin_url( 'site-health.php' ), |
|
156 |
admin_url( 'site-health.php?tab=debug' ) |
|
157 |
); |
|
158 |
} |
|
159 |
?> |
|
160 |
</p> |
|
161 |
</div> |
|
162 |
<div class="column"> |
|
163 |
<div class="inline-svg aligncenter"> |
|
164 |
<img src="https://s.w.org/images/core/5.2/about_site-health.svg" alt=""> |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
165 |
</div> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
166 |
</div> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
167 |
</div> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
168 |
|
9 | 169 |
<hr /> |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
170 |
|
9 | 171 |
<div class="feature-section is-wide has-2-columns is-wider-right"> |
172 |
<div class="column"> |
|
173 |
<div class="inline-svg aligncenter"> |
|
174 |
<img src="https://s.w.org/images/core/5.2/about_error-protection.svg" alt=""> |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
175 |
</div> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
176 |
</div> |
9 | 177 |
<div class="column is-vertically-aligned-center"> |
178 |
<h3><?php _e( 'PHP Error Protection' ); ?></h3> |
|
179 |
<p><?php _e( 'This administrator-focused update will let you safely fix or manage fatal errors without requiring a developer. It features better handling of the so-called “white screen of death”, and a way to enter recovery mode, which pauses error-causing plugins or themes.' ); ?></p> |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
180 |
</div> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
181 |
</div> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
182 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
183 |
<hr /> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
184 |
|
9 | 185 |
<h3 class="aligncenter"><?php _e( 'Improvements for Everyone' ); ?></h3> |
186 |
||
187 |
<div class="has-2-columns"> |
|
188 |
<div class="column aligncenter"> |
|
189 |
<h4><?php _e( 'Accessibility Updates' ); ?></h4> |
|
190 |
<p><?php _e( 'A number of changes work together to improve contextual awareness and keyboard navigation flow for those using screen readers and other assistive technologies.' ); ?></p> |
|
191 |
</div> |
|
192 |
<div class="column aligncenter"> |
|
193 |
<h4><?php _e( 'New Dashboard Icons' ); ?></h4> |
|
194 |
<p><?php _e( 'Thirteen new icons include Instagram, a suite of icons for BuddyPress, and rotated Earth icons for global inclusion. Find them in the Dashboard and have some fun!' ); ?></p> |
|
195 |
</div> |
|
196 |
</div> |
|
197 |
||
198 |
<hr /> |
|
199 |
||
200 |
<h3 class="aligncenter"><?php _e( 'Developer Happiness' ); ?></h3> |
|
5 | 201 |
|
9 | 202 |
<div class="has-2-columns is-fullwidth"> |
203 |
<div class="column"> |
|
204 |
<h4><a href="https://make.wordpress.org/core/2019/03/26/coding-standards-updates-for-php-5-6/"><?php _e( 'PHP Version Bump' ); ?></a></h4> |
|
205 |
<p><?php _e( 'The minimum supported PHP version is now 5.6.20. As of WordPress 5.2, themes and plugins can safely take advantage of namespaces, anonymous functions, and more!' ); ?></p> |
|
206 |
</div> |
|
207 |
<div class="column"> |
|
208 |
<h4><a href="https://make.wordpress.org/core/2019/04/24/developer-focused-privacy-updates-in-5-2/"><?php _e( 'Privacy Updates' ); ?></a></h4> |
|
209 |
<p><?php _e( 'A new theme page template, a conditional function, and two CSS classes make designing and customizing the Privacy Policy page easier.' ); ?></p> |
|
210 |
</div> |
|
211 |
</div> |
|
212 |
<div class="has-2-columns is-fullwidth"> |
|
213 |
<div class="column"> |
|
214 |
<h4><a href="https://make.wordpress.org/core/2019/04/24/miscellaneous-developer-updates-in-5-2/"><?php _e( 'New Body Tag Hook' ); ?></a></h4> |
|
215 |
<p> |
|
216 |
<?php |
|
217 |
printf( |
|
218 |
/* translators: 1: wp_body_open 2: <body> */ |
|
219 |
__( '5.2 introduces a %1$s hook, which lets themes support injecting code right at the beginning of the %2$s element.' ), |
|
220 |
'<code>wp_body_open</code>', |
|
221 |
'<code><body></code>' |
|
222 |
); |
|
223 |
?> |
|
224 |
</p> |
|
225 |
</div> |
|
226 |
<div class="column"> |
|
227 |
<h4><a href="https://make.wordpress.org/core/2019/03/25/building-javascript/"><?php _e( 'Building JavaScript' ); ?></a></h4> |
|
228 |
<p><?php _e( 'With the addition of webpack and Babel configurations in the @wordpress/scripts package, developers won’t have to worry about setting up complex build tools to write modern JavaScript.' ); ?></p> |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
229 |
</div> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
230 |
</div> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
231 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
232 |
<hr /> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
233 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
234 |
<div class="return-to-dashboard"> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
235 |
<?php if ( current_user_can( 'update_core' ) && isset( $_GET['updated'] ) ) : ?> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
236 |
<a href="<?php echo esc_url( self_admin_url( 'update-core.php' ) ); ?>"> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
237 |
<?php is_multisite() ? _e( 'Return to Updates' ) : _e( 'Return to Dashboard → Updates' ); ?> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
238 |
</a> | |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
239 |
<?php endif; ?> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
240 |
<a href="<?php echo esc_url( self_admin_url() ); ?>"><?php is_blog_admin() ? _e( 'Go to Dashboard → Home' ) : _e( 'Go to Dashboard' ); ?></a> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
241 |
</div> |
5 | 242 |
</div> |
0 | 243 |
<?php |
244 |
||
245 |
include( ABSPATH . 'wp-admin/admin-footer.php' ); |
|
246 |
||
247 |
// These are strings we may use to describe maintenance/security releases, where we aim for no new strings. |
|
248 |
return; |
|
249 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
250 |
__( 'Maintenance Release' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
251 |
__( 'Maintenance Releases' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
252 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
253 |
__( 'Security Release' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
254 |
__( 'Security Releases' ); |
0 | 255 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
256 |
__( 'Maintenance and Security Release' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
257 |
__( 'Maintenance and Security Releases' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
258 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
259 |
/* translators: %s: WordPress version number */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
260 |
__( '<strong>Version %s</strong> addressed one security issue.' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
261 |
/* translators: %s: WordPress version number */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
262 |
__( '<strong>Version %s</strong> addressed some security issues.' ); |
0 | 263 |
|
264 |
/* translators: 1: WordPress version number, 2: plural number of bugs. */ |
|
9 | 265 |
_n_noop( |
266 |
'<strong>Version %1$s</strong> addressed %2$s bug.', |
|
267 |
'<strong>Version %1$s</strong> addressed %2$s bugs.' |
|
268 |
); |
|
0 | 269 |
|
270 |
/* translators: 1: WordPress version number, 2: plural number of bugs. Singular security issue. */ |
|
9 | 271 |
_n_noop( |
272 |
'<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bug.', |
|
273 |
'<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bugs.' |
|
274 |
); |
|
0 | 275 |
|
276 |
/* translators: 1: WordPress version number, 2: plural number of bugs. More than one security issue. */ |
|
9 | 277 |
_n_noop( |
278 |
'<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bug.', |
|
279 |
'<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bugs.' |
|
280 |
); |
|
0 | 281 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
282 |
/* translators: %s: Codex URL */ |
0 | 283 |
__( 'For more information, see <a href="%s">the release notes</a>.' ); |