Skip to content

Commit

Permalink
fix: Add Korean Day of Month with ordinal (iamkun#2395)
Browse files Browse the repository at this point in the history
* add '일' suffix to 'Do' format
sayingu authored Sep 19, 2023

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
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
Original file line number Diff line number Diff line change
@@ -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',

0 comments on commit dd55ee2

Please sign in to comment.