Skip to content

Commit

Permalink
[locale] ko: Add trailing dot to L and l (#4379)
Browse files Browse the repository at this point in the history
* Add trailing dot to L and l

* Add tests
  • Loading branch information
marwahaha committed Mar 2, 2018
1 parent 338cce5 commit 1e96d87
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/locale/ko.js
Expand Up @@ -14,11 +14,11 @@ export default moment.defineLocale('ko', {
longDateFormat : {
LT : 'A h:mm',
LTS : 'A h:mm:ss',
L : 'YYYY.MM.DD',
L : 'YYYY.MM.DD.',
LL : 'YYYY년 MMMM D일',
LLL : 'YYYY년 MMMM D일 A h:mm',
LLLL : 'YYYY년 MMMM D일 dddd A h:mm',
l : 'YYYY.MM.DD',
l : 'YYYY.MM.DD.',
ll : 'YYYY년 MMMM D일',
lll : 'YYYY년 MMMM D일 A h:mm',
llll : 'YYYY년 MMMM D일 dddd A h:mm'
Expand Down
4 changes: 2 additions & 2 deletions src/test/locale/ko.js
Expand Up @@ -72,11 +72,11 @@ test('format', function (assert) {
['a A', '오후 오후'],
['일년 중 DDDo째 되는 날', '일년 중 45일째 되는 날'],
['LTS', '오후 3:25:50'],
['L', '2010.02.14'],
['L', '2010.02.14.'],
['LL', '2010년 2월 14일'],
['LLL', '2010년 2월 14일 오후 3:25'],
['LLLL', '2010년 2월 14일 일요일 오후 3:25'],
['l', '2010.02.14'],
['l', '2010.02.14.'],
['ll', '2010년 2월 14일'],
['lll', '2010년 2월 14일 오후 3:25'],
['llll', '2010년 2월 14일 일요일 오후 3:25']
Expand Down

0 comments on commit 1e96d87

Please sign in to comment.