app.translator.plural = function(count) {
  return count == 1 ? 'one' : 'other';
};