Skip to content

Commit

Permalink
fix: Update Korean locale meridiem (#642)
Browse files Browse the repository at this point in the history
  • Loading branch information
cheolheon authored and iamkun committed Jul 29, 2019
1 parent 19affc8 commit b457146
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
Expand Up @@ -18,6 +18,7 @@ const locale = {
lll: 'YYYY년 MMMM D일 A h:mm',
llll: 'YYYY년 MMMM D일 dddd A h:mm'
},
meridiem: hour => (hour < 12 ? '오전' : '오후'),
relativeTime: {
future: '%s 후',
past: '%s 전',
Expand All @@ -38,4 +39,3 @@ const locale = {
dayjs.locale(locale, null, true)

export default locale

0 comments on commit b457146

Please sign in to comment.