Skip to content

Commit dd55ee2

Browse files
authored
fix: Add Korean Day of Month with ordinal (iamkun#2395)
* add '일' suffix to 'Do' format
1 parent b776b22 commit dd55ee2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/locale/ko.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const locale = {
88
weekdaysMin: '일_월_화_수_목_금_토'.split('_'),
99
months: '1월_2월_3월_4월_5월_6월_7월_8월_9월_10월_11월_12월'.split('_'),
1010
monthsShort: '1월_2월_3월_4월_5월_6월_7월_8월_9월_10월_11월_12월'.split('_'),
11-
ordinal: n => n,
11+
ordinal: n => `${n}일`,
1212
formats: {
1313
LT: 'A h:mm',
1414
LTS: 'A h:mm:ss',

0 commit comments

Comments
 (0)