mirror of
https://github.com/flarum/framework.git
synced 2024-12-01 22:43:41 +08:00
10 lines
181 B
PHP
10 lines
181 B
PHP
<?php
|
|
|
|
// See http://flarum.org/docs/localization to learn how this file works.
|
|
|
|
return [
|
|
'plural' => function ($count) {
|
|
return $count == 1 ? 'one' : 'other';
|
|
}
|
|
];
|