1
0
mirror of https://github.com/flarum/core.git synced 2025-02-25 19:53:48 +01:00
2015-07-22 16:05:24 +09:30

8 lines
107 B
PHP

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