default.php 498 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * Lithium: the most rad php framework
  4. *
  5. * @copyright Copyright 2013, Union of RAD (http://union-of-rad.org)
  6. * @license http://opensource.org/licenses/bsd-license.php The BSD License
  7. */
  8. /**
  9. * Message data for `en`.
  10. *
  11. * Plural rule and forms derived from the GNU gettext documentation.
  12. *
  13. * @link http://www.gnu.org/software/gettext/manual/gettext.html#Plural-forms
  14. */
  15. return array(
  16. 'pluralForms' => 2,
  17. 'pluralRule' => function ($n) { return $n != 1 ? 1 : 0; }
  18. );
  19. ?>