mirror of
https://github.com/flarum/framework.git
synced 2024-12-01 22:43:41 +08:00
6 lines
158 B
JavaScript
6 lines
158 B
JavaScript
|
// See http://flarum.org/docs/localization to learn how this file works.
|
||
|
|
||
|
app.translator.plural = function(count) {
|
||
|
return count == 1 ? 'one' : 'other';
|
||
|
};
|