Fix: ember-i18n does not provide a default locale configuration for catalan
This commit is contained in:
parent
7ab44aa9e5
commit
96ec32aa3e
1 changed files with 11 additions and 0 deletions
11
app/locales/ca/config.js
Normal file
11
app/locales/ca/config.js
Normal 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';
|
||||
}
|
||||
};
|
Loading…
Reference in a new issue