preConvertPlural( $forms, 3 ); // Form[0] if n mod 10 is 1 and n mod 100 not in 11..19; if ( $count % 10 == 1 && $count % 100 != 11 ) return $forms[0]; // Forms[1] if n mod 10 in 2..9 and n mod 100 not in 11..19; if ( $count % 10 >= 2 && ( $count % 100 < 10 || $count % 100 >= 20 ) ) return $forms[1]; return $forms[2]; } }