Making WordPress.org

Ticket #1750: meta-1750.patch

File meta-1750.patch, 1.3 KB (added by SergeyBiryukov, 7 years ago)
  • sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/widgets/class-support.php

     
    4848                if ( $resolutions ) : ?>
    4949                <p>
    5050                        <?php
    51                         /* translators: 1: Number of resolved threads; 2: Number of all threads; */
    52                         printf( _n( '%1$s of %2$s support thread in the last two months have been marked resolved.', '%1$s of %2$s support threads in the last two months have been marked resolved.', $threads, 'wporg-plugins' ), $resolved, $threads );
     51                        /* translators: 1: Number of resolved threads; 2: String with the number of all threads, e.g. '5 support threads'; */
     52                        printf( _n( '%1$s of %2$s in the last two months has been marked resolved.', '%1$s of %2$s in the last two months have been marked resolved.', $resolved, 'wporg-plugins' ),
     53                                $resolved,
     54                                /* translators: %s: Number of support threads */
     55                                sprintf( _n( '%s support thread', '%s support threads', $threads, 'wporg-plugins' ), $threads )
     56                        );
    5357                        ?>
    5458                </p>
    5559                <?php endif; ?>