Skip to content

Commit

Permalink
Merge pull request #3237 from ichernev:fix-cs
Browse files Browse the repository at this point in the history
Redo #2997, fix #2016
  • Loading branch information
ichernev committed Jun 14, 2016
2 parents c37aa84 + 51d5dc5 commit f4ab83e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/locale/cs.js
Expand Up @@ -96,7 +96,8 @@ export default moment.defineLocale('cs', {
L : 'DD.MM.YYYY',
LL : 'D. MMMM YYYY',
LLL : 'D. MMMM YYYY H:mm',
LLLL : 'dddd D. MMMM YYYY H:mm'
LLLL : 'dddd D. MMMM YYYY H:mm',
l : 'D. M. YYYY'
},
calendar : {
sameDay: '[dnes v] LT',
Expand Down
2 changes: 1 addition & 1 deletion src/test/locale/cs.js
Expand Up @@ -51,7 +51,7 @@ test('format', function (assert) {
['LL', '14. únor 2010'],
['LLL', '14. únor 2010 15:25'],
['LLLL', 'neděle 14. únor 2010 15:25'],
['l', '14.2.2010'],
['l', '14. 2. 2010'],
['ll', '14. úno 2010'],
['lll', '14. úno 2010 15:25'],
['llll', 'ne 14. úno 2010 15:25']
Expand Down

0 comments on commit f4ab83e

Please sign in to comment.