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 | ); |