Skip to content

Commit

Permalink
fix: Add Korean Day of Month with ordinal (#2395)
Browse files Browse the repository at this point in the history
* add '일' suffix to 'Do' format
  • Loading branch information
sayingu committed Sep 19, 2023
1 parent b776b22 commit dd55ee2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/locale/ko.js
Expand Up @@ -8,7 +8,7 @@ const locale = {
weekdaysMin: '일_월_화_수_목_금_토'.split('_'),
months: '1월_2월_3월_4월_5월_6월_7월_8월_9월_10월_11월_12월'.split('_'),
monthsShort: '1월_2월_3월_4월_5월_6월_7월_8월_9월_10월_11월_12월'.split('_'),
ordinal: n => n,
ordinal: n => `${n}일`,
formats: {
LT: 'A h:mm',
LTS: 'A h:mm:ss',
Expand Down

0 comments on commit dd55ee2

Please sign in to comment.