framework/locale/en.php
2015-07-22 16:05:24 +09:30

8 lines
107 B
PHP

<?php
return [
'plural' => function ($count) {
return $count == 1 ? 'one' : 'other';
}
];