framework/extensions/lang-english/locale/config.php
2015-09-25 15:37:00 +09:30

10 lines
181 B
PHP

<?php
// See http://flarum.org/docs/localization to learn how this file works.
return [
'plural' => function ($count) {
return $count == 1 ? 'one' : 'other';
}
];