Skip to content

Commit e29c6c2

Browse files
committed
Merge branch 'release/1.0.22'
2 parents 93676a0 + cea8989 commit e29c6c2

File tree

7 files changed

+1316
-177
lines changed

7 files changed

+1316
-177
lines changed

app/components/isp-consent-form/consentText.js

Lines changed: 23 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/components/language-picker/countries.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,16 @@ export default [
157157
],
158158
"name": "Denmark"
159159
},
160+
{
161+
"code": "EG",
162+
"languages": [
163+
{
164+
"code": "ar-EG",
165+
"name": "العربية"
166+
}
167+
],
168+
"name": "Egypt"
169+
},
160170
{
161171
"code": "EE",
162172
"languages": [

app/locales/ar-eg/config.js

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
// Ember-I18n includes configuration for common locales. Most users
2+
// can safely delete this file. Use it if you need to override behavior
3+
// for a locale or define behavior for a locale that Ember-I18n
4+
// doesn't know about.
5+
export default {
6+
rtl: true,
7+
8+
pluralForm: function(count) {
9+
if (count === 1) { return 'one'; }
10+
return 'other';
11+
}
12+
};

0 commit comments

Comments
 (0)