Making WordPress.org

Ticket #1750: class-support.php.patch

File class-support.php.patch, 861 bytes (added by deconf, 9 years ago)

Adds plural forms for Support Widget text

  • public_html/wp-content/plugins/plugin-directory/widgets/class-support.php

     
    4949                <p>
    5050                        <?php
    5151                        /* translators: 1: Number of resolved threads; 2: Number of all threads; */
    52                         printf( __( '%1$s of %2$s support threads in the last two months have been marked resolved.', 'wporg-plugins' ), $resolved, $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 );
    5353                        ?>
    5454                </p>
    5555                <?php endif; ?>