Make WordPress Core

Ticket #34307: 34307.patch

File 34307.patch, 1.3 KB (added by SergeyBiryukov, 9 years ago)
  • src/wp-admin/about.php

     
    185185// These are strings we may use to describe maintenance/security releases, where we aim for no new strings.
    186186return;
    187187
    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' );
    191190
    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' );
    195193
     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
    196201/* translators: 1: WordPress version number, 2: plural number of bugs. */
    197202_n_noop( '<strong>Version %1$s</strong> addressed %2$s bug.',
    198203         '<strong>Version %1$s</strong> addressed %2$s bugs.' );