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