Fix: ember-i18n does not provide a default locale configuration for catalan

This commit is contained in:
jelhan 2017-07-31 14:10:43 +02:00
parent 7ab44aa9e5
commit 96ec32aa3e

11
app/locales/ca/config.js Normal file
View file

@ -0,0 +1,11 @@
// ember-i18n does not include a configuration for catalan
export default {
rtl: false,
pluralForm(n) {
if (n === 1) {
return 'one';
}
return 'other';
}
};