Ticket #34307: 34307.patch
File 34307.patch, 1.3 KB (added by , 9 years ago) |
---|
-
src/wp-admin/about.php
185 185 // These are strings we may use to describe maintenance/security releases, where we aim for no new strings. 186 186 return; 187 187 188 _n_noop( 'Maintenance Release', 'Maintenance Releases' ); 189 _n_noop( 'Security Release', 'Security Releases' ); 190 _n_noop( 'Maintenance and Security Release', 'Maintenance and Security Releases' ); 188 __( 'Maintenance Release' ); 189 __( 'Maintenance Releases' ); 191 190 192 /* translators: 1: WordPress version number. */ 193 _n_noop( '<strong>Version %1$s</strong> addressed a security issue.', 194 '<strong>Version %1$s</strong> addressed some security issues.' ); 191 __( 'Security Release' ); 192 __( 'Security Releases' ); 195 193 194 __( 'Maintenance and Security Release' ); 195 __( 'Maintenance and Security Releases' ); 196 197 /* translators: 1: WordPress version number, 2: plural number of security issues. */ 198 _n_noop( '<strong>Version %1$s</strong> addressed %2$s security issue.', 199 '<strong>Version %1$s</strong> addressed %2$s security issues.' ); 200 196 201 /* translators: 1: WordPress version number, 2: plural number of bugs. */ 197 202 _n_noop( '<strong>Version %1$s</strong> addressed %2$s bug.', 198 203 '<strong>Version %1$s</strong> addressed %2$s bugs.' );