mirror of
https://github.com/flarum/core.git
synced 2025-10-09 14:06:26 +02:00
8 lines
107 B
PHP
8 lines
107 B
PHP
<?php
|
|
|
|
return [
|
|
'plural' => function ($count) {
|
|
return $count == 1 ? 'one' : 'other';
|
|
}
|
|
];
|