Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[locale] Fixed ('L') format for Georgian and Flemish (Belgium Dutch). #6217

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/locale/ka.js
Expand Up @@ -24,7 +24,7 @@ export default moment.defineLocale('ka', {
longDateFormat: {
LT: 'HH:mm',
LTS: 'HH:mm:ss',
L: 'DD/MM/YYYY',
L: 'DD.MM.YYYY',
LL: 'D MMMM YYYY',
LLL: 'D MMMM YYYY HH:mm',
LLLL: 'dddd, D MMMM YYYY HH:mm',
Expand Down
2 changes: 1 addition & 1 deletion src/locale/nl-be.js
Expand Up @@ -59,7 +59,7 @@ export default moment.defineLocale('nl-be', {
longDateFormat: {
LT: 'HH:mm',
LTS: 'HH:mm:ss',
L: 'DD/MM/YYYY',
L: 'D/MM/YYYY',
LL: 'D MMMM YYYY',
LLL: 'D MMMM YYYY HH:mm',
LLLL: 'dddd D MMMM YYYY HH:mm',
Expand Down
4 changes: 2 additions & 2 deletions src/test/locale/ka.js
Expand Up @@ -52,11 +52,11 @@ test('format', function (assert) {
['a A', 'pm PM'],
['წლის DDDo დღე', 'წლის 45-ე დღე'],
['LTS', '15:25:50'],
['L', '14/02/2010'],
['L', '14.02.2010'],
['LL', '14 თებერვალი 2010'],
['LLL', '14 თებერვალი 2010 15:25'],
['LLLL', 'კვირა, 14 თებერვალი 2010 15:25'],
['l', '14/2/2010'],
['l', '14.2.2010'],
['ll', '14 თებ 2010'],
['lll', '14 თებ 2010 15:25'],
['llll', 'კვი, 14 თებ 2010 15:25'],
Expand Down