plurals.php 257 B

12345678910
  1. <?php
  2. // Plural-Forms: nplurals=2; plural=(n != 1);
  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' => 2,
  7. 'plural' => static fn (int $n): int => (($n !== 1) ? 1 : 0),
  8. );