6 lines
158 B
JavaScript
Raw Normal View History

2015-09-25 15:37:00 +09:30
// See http://flarum.org/docs/localization to learn how this file works.
app.translator.plural = function(count) {
return count == 1 ? 'one' : 'other';
};