plurals.php 309 B

12345678910
  1. <?php
  2. // Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;
  3. // This file is generated by cli/compile.plurals.php.
  4. // Edit the formula comment and run `make fix-all`.
  5. return array(
  6. 'nplurals' => 3,
  7. 'plural' => static fn (int $n): int => ($n === 1 ? 0 : ($n >= 2 && $n <= 4 ? 1 : 2)),
  8. );