mirror of
https://github.com/flarum/framework.git
synced 2024-12-03 07:33:36 +08:00
8 lines
107 B
PHP
8 lines
107 B
PHP
<?php
|
|
|
|
return [
|
|
'plural' => function ($count) {
|
|
return $count == 1 ? 'one' : 'other';
|
|
}
|
|
];
|