Skip to content

Commit

Permalink
fix: include 12pm in the night time hours for the ar local
Browse files Browse the repository at this point in the history
  • Loading branch information
neuodev committed Aug 26, 2024
1 parent 365f81d commit a6f98fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/locale/ar.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const locale = {
months,
monthsShort: months,
weekStart: 6,
meridiem: hour => (hour > 12 ? 'م' : 'ص'),
meridiem: hour => (hour >= 12 ? 'م' : 'ص'),
relativeTime: {
future: 'بعد %s',
past: 'منذ %s',
Expand Down

0 comments on commit a6f98fa

Please sign in to comment.