author | ymh <ymh.work@gmail.com> |
Tue, 15 Oct 2019 15:48:13 +0200 | |
changeset 13 | d255fe9cd479 |
parent 9 | 177826044cd9 |
child 16 | a86126ab1dd4 |
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( |
13 | 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. */ |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
77 |
_n( |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
78 |
'<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
|
79 |
'<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bugs.', |
9 | 80 |
29 |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
81 |
), |
9 | 82 |
'5.2.3', |
83 |
number_format_i18n( 29 ) |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
84 |
); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
85 |
?> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
86 |
<?php |
9 | 87 |
printf( |
13 | 88 |
/* translators: %s: HelpHub URL */ |
9 | 89 |
__( 'For more information, see <a href="%s">the release notes</a>.' ), |
90 |
sprintf( |
|
13 | 91 |
/* translators: %s: WordPress version */ |
9 | 92 |
esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ), |
93 |
sanitize_title( '5.2.3' ) |
|
94 |
) |
|
95 |
); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
96 |
?> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
97 |
</p> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
98 |
<p> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
99 |
<?php |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
100 |
printf( |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
101 |
/* 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
|
102 |
_n( |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
103 |
'<strong>Version %1$s</strong> addressed %2$s bug.', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
104 |
'<strong>Version %1$s</strong> addressed %2$s bugs.', |
9 | 105 |
13 |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
106 |
), |
9 | 107 |
'5.2.2', |
108 |
number_format_i18n( 13 ) |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
109 |
); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
110 |
?> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
111 |
<?php |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
112 |
printf( |
9 | 113 |
/* translators: %s: HelpHub URL */ |
114 |
__( 'For more information, see <a href="%s">the release notes</a>.' ), |
|
115 |
sprintf( |
|
116 |
/* translators: %s: WordPress version */ |
|
117 |
esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ), |
|
118 |
sanitize_title( '5.2.2' ) |
|
119 |
) |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
120 |
); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
121 |
?> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
122 |
</p> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
123 |
<p> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
124 |
<?php |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
125 |
printf( |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
126 |
/* 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
|
127 |
_n( |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
128 |
'<strong>Version %1$s</strong> addressed %2$s bug.', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
129 |
'<strong>Version %1$s</strong> addressed %2$s bugs.', |
9 | 130 |
33 |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
131 |
), |
9 | 132 |
'5.2.1', |
133 |
number_format_i18n( 33 ) |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
134 |
); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
135 |
?> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
136 |
<?php |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
137 |
printf( |
9 | 138 |
/* translators: %s: HelpHub URL */ |
139 |
__( 'For more information, see <a href="%s">the release notes</a>.' ), |
|
140 |
sprintf( |
|
141 |
/* translators: %s: WordPress version */ |
|
142 |
esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ), |
|
143 |
sanitize_title( '5.2.1' ) |
|
144 |
) |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
145 |
); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
146 |
?> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
147 |
</p> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
148 |
</div> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
149 |
|
9 | 150 |
<div class="headline-feature"> |
151 |
<h2><?php _e( 'Keeping Your Site Safe' ); ?></h2> |
|
152 |
<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> |
|
153 |
<div class="inline-svg aligncenter"> |
|
154 |
<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
|
155 |
</div> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
156 |
</div> |
0 | 157 |
|
9 | 158 |
<hr /> |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
159 |
|
9 | 160 |
<div class="feature-section is-wide has-2-columns is-wider-left"> |
161 |
<div class="column is-vertically-aligned-center"> |
|
162 |
<h3><?php _e( 'Site Health Check' ); ?></h3> |
|
163 |
<p> |
|
164 |
<?php |
|
165 |
printf( |
|
166 |
/* translators: 1: link to the WordPress 5.1 release post */ |
|
167 |
__( '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.' ), |
|
168 |
__( 'https://wordpress.org/news/2019/02/betty/' ) |
|
169 |
); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
170 |
|
9 | 171 |
if ( current_user_can( 'install_plugins' ) ) { |
172 |
printf( |
|
173 |
/* translators: 1: link to /wp-admin/site-health.php 2: link to /wp-admin/site-health.php?tab=debug */ |
|
174 |
__( ' <a href="%1$s">Check your site status</a>, and <a href="%2$s">learn how to debug issues</a>.' ), |
|
175 |
admin_url( 'site-health.php' ), |
|
176 |
admin_url( 'site-health.php?tab=debug' ) |
|
177 |
); |
|
178 |
} |
|
179 |
?> |
|
180 |
</p> |
|
181 |
</div> |
|
182 |
<div class="column"> |
|
183 |
<div class="inline-svg aligncenter"> |
|
184 |
<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
|
185 |
</div> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
186 |
</div> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
187 |
</div> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
188 |
|
9 | 189 |
<hr /> |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
190 |
|
9 | 191 |
<div class="feature-section is-wide has-2-columns is-wider-right"> |
192 |
<div class="column"> |
|
193 |
<div class="inline-svg aligncenter"> |
|
194 |
<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
|
195 |
</div> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
196 |
</div> |
9 | 197 |
<div class="column is-vertically-aligned-center"> |
198 |
<h3><?php _e( 'PHP Error Protection' ); ?></h3> |
|
199 |
<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
|
200 |
</div> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
201 |
</div> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
202 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
203 |
<hr /> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
204 |
|
9 | 205 |
<h3 class="aligncenter"><?php _e( 'Improvements for Everyone' ); ?></h3> |
206 |
||
207 |
<div class="has-2-columns"> |
|
208 |
<div class="column aligncenter"> |
|
209 |
<h4><?php _e( 'Accessibility Updates' ); ?></h4> |
|
210 |
<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> |
|
211 |
</div> |
|
212 |
<div class="column aligncenter"> |
|
213 |
<h4><?php _e( 'New Dashboard Icons' ); ?></h4> |
|
214 |
<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> |
|
215 |
</div> |
|
216 |
</div> |
|
217 |
||
218 |
<hr /> |
|
219 |
||
220 |
<h3 class="aligncenter"><?php _e( 'Developer Happiness' ); ?></h3> |
|
5 | 221 |
|
9 | 222 |
<div class="has-2-columns is-fullwidth"> |
223 |
<div class="column"> |
|
224 |
<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> |
|
225 |
<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> |
|
226 |
</div> |
|
227 |
<div class="column"> |
|
228 |
<h4><a href="https://make.wordpress.org/core/2019/04/24/developer-focused-privacy-updates-in-5-2/"><?php _e( 'Privacy Updates' ); ?></a></h4> |
|
229 |
<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> |
|
230 |
</div> |
|
231 |
</div> |
|
232 |
<div class="has-2-columns is-fullwidth"> |
|
233 |
<div class="column"> |
|
234 |
<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> |
|
235 |
<p> |
|
236 |
<?php |
|
237 |
printf( |
|
238 |
/* translators: 1: wp_body_open 2: <body> */ |
|
239 |
__( '5.2 introduces a %1$s hook, which lets themes support injecting code right at the beginning of the %2$s element.' ), |
|
240 |
'<code>wp_body_open</code>', |
|
241 |
'<code><body></code>' |
|
242 |
); |
|
243 |
?> |
|
244 |
</p> |
|
245 |
</div> |
|
246 |
<div class="column"> |
|
247 |
<h4><a href="https://make.wordpress.org/core/2019/03/25/building-javascript/"><?php _e( 'Building JavaScript' ); ?></a></h4> |
|
248 |
<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
|
249 |
</div> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
250 |
</div> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
251 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
252 |
<hr /> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
253 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
254 |
<div class="return-to-dashboard"> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
255 |
<?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
|
256 |
<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
|
257 |
<?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
|
258 |
</a> | |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
259 |
<?php endif; ?> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
260 |
<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
|
261 |
</div> |
5 | 262 |
</div> |
0 | 263 |
<?php |
264 |
||
265 |
include( ABSPATH . 'wp-admin/admin-footer.php' ); |
|
266 |
||
267 |
// These are strings we may use to describe maintenance/security releases, where we aim for no new strings. |
|
268 |
return; |
|
269 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
270 |
__( 'Maintenance Release' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
271 |
__( 'Maintenance Releases' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
272 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
273 |
__( 'Security Release' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
274 |
__( 'Security Releases' ); |
0 | 275 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
276 |
__( 'Maintenance and Security Release' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
277 |
__( 'Maintenance and Security Releases' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
278 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
279 |
/* translators: %s: WordPress version number */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
280 |
__( '<strong>Version %s</strong> addressed one security issue.' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
281 |
/* translators: %s: WordPress version number */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
282 |
__( '<strong>Version %s</strong> addressed some security issues.' ); |
0 | 283 |
|
284 |
/* translators: 1: WordPress version number, 2: plural number of bugs. */ |
|
9 | 285 |
_n_noop( |
286 |
'<strong>Version %1$s</strong> addressed %2$s bug.', |
|
287 |
'<strong>Version %1$s</strong> addressed %2$s bugs.' |
|
288 |
); |
|
0 | 289 |
|
290 |
/* translators: 1: WordPress version number, 2: plural number of bugs. Singular security issue. */ |
|
9 | 291 |
_n_noop( |
292 |
'<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bug.', |
|
293 |
'<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bugs.' |
|
294 |
); |
|
0 | 295 |
|
296 |
/* translators: 1: WordPress version number, 2: plural number of bugs. More than one security issue. */ |
|
9 | 297 |
_n_noop( |
298 |
'<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bug.', |
|
299 |
'<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bugs.' |
|
300 |
); |
|
0 | 301 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
302 |
/* translators: %s: Codex URL */ |
0 | 303 |
__( 'For more information, see <a href="%s">the release notes</a>.' ); |