mirror of
https://github.com/flarum/framework.git
synced 2025-02-18 12:33:22 +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';
|
|
};
|