Skip to content

Commit

Permalink
fix(): add meridiem in ar locales (#1375)
Browse files Browse the repository at this point in the history
  • Loading branch information
sangxxh committed Mar 6, 2021
1 parent e1546d1 commit 319f616
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/locale/ar-dz.js
Expand Up @@ -17,6 +17,7 @@ const locale = {
LLL: 'D MMMM YYYY HH:mm',
LLLL: 'dddd D MMMM YYYY HH:mm'
},
meridiem: hour => (hour > 12 ? 'ص' : 'م'),
relativeTime: {
future: 'في %s',
past: 'منذ %s',
Expand Down
1 change: 1 addition & 0 deletions src/locale/ar-kw.js
Expand Up @@ -17,6 +17,7 @@ const locale = {
LLL: 'D MMMM YYYY HH:mm',
LLLL: 'dddd D MMMM YYYY HH:mm'
},
meridiem: hour => (hour > 12 ? 'ص' : 'م'),
relativeTime: {
future: 'في %s',
past: 'منذ %s',
Expand Down
1 change: 1 addition & 0 deletions src/locale/ar-ly.js
Expand Up @@ -10,6 +10,7 @@ const locale = {
monthsShort: 'يناير_فبراير_مارس_أبريل_مايو_يونيو_يوليو_أغسطس_سبتمبر_أكتوبر_نوفمبر_ديسمبر'.split('_'),
weekdaysMin: 'ح_ن_ث_ر_خ_ج_س'.split('_'),
ordinal: n => n,
meridiem: hour => (hour > 12 ? 'ص' : 'م'),
formats: {
LT: 'HH:mm',
LTS: 'HH:mm:ss',
Expand Down
1 change: 1 addition & 0 deletions src/locale/ar-ma.js
Expand Up @@ -18,6 +18,7 @@ const locale = {
LLL: 'D MMMM YYYY HH:mm',
LLLL: 'dddd D MMMM YYYY HH:mm'
},
meridiem: hour => (hour > 12 ? 'ص' : 'م'),
relativeTime: {
future: 'في %s',
past: 'منذ %s',
Expand Down
1 change: 1 addition & 0 deletions src/locale/ar-sa.js
Expand Up @@ -17,6 +17,7 @@ const locale = {
LLL: 'D MMMM YYYY HH:mm',
LLLL: 'dddd D MMMM YYYY HH:mm'
},
meridiem: hour => (hour > 12 ? 'ص' : 'م'),
relativeTime: {
future: 'في %s',
past: 'منذ %s',
Expand Down
1 change: 1 addition & 0 deletions src/locale/ar-tn.js
Expand Up @@ -18,6 +18,7 @@ const locale = {
LLL: 'D MMMM YYYY HH:mm',
LLLL: 'dddd D MMMM YYYY HH:mm'
},
meridiem: hour => (hour > 12 ? 'ص' : 'م'),
relativeTime: {
future: 'في %s',
past: 'منذ %s',
Expand Down

0 comments on commit 319f616

Please sign in to comment.