mirror of
https://github.com/flarum/framework.git
synced 2024-11-29 21:11:55 +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';
|
|
};
|