Client - update date display in german
This commit is contained in:
parent
9d37f32f6d
commit
1d142ae4dd
@ -94,7 +94,7 @@ const availableDateFormats = [
|
|||||||
'date_string',
|
'date_string',
|
||||||
]
|
]
|
||||||
const dateStringFormats: Record<string, string> = {
|
const dateStringFormats: Record<string, string> = {
|
||||||
de: 'd MMM yyyy',
|
de: 'do MMM yyyy',
|
||||||
en: 'MMM. do, yyyy',
|
en: 'MMM. do, yyyy',
|
||||||
fr: 'd MMM yyyy',
|
fr: 'd MMM yyyy',
|
||||||
}
|
}
|
||||||
|
@ -335,7 +335,7 @@ describe('getDateFormat', () => {
|
|||||||
dateFormat: 'date_string',
|
dateFormat: 'date_string',
|
||||||
language: 'de',
|
language: 'de',
|
||||||
},
|
},
|
||||||
expectedFormat: 'd MMM yyyy',
|
expectedFormat: 'do MMM yyyy',
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
testsParams.map((testParams) => {
|
testsParams.map((testParams) => {
|
||||||
@ -380,7 +380,7 @@ describe('availableDateFormatOptions', () => {
|
|||||||
{ label: 'dd/MM/yyyy - 09/10/2022', value: 'dd/MM/yyyy' },
|
{ label: 'dd/MM/yyyy - 09/10/2022', value: 'dd/MM/yyyy' },
|
||||||
{ label: 'MM/dd/yyyy - 10/09/2022', value: 'MM/dd/yyyy' },
|
{ label: 'MM/dd/yyyy - 10/09/2022', value: 'MM/dd/yyyy' },
|
||||||
{ label: 'yyyy-MM-dd - 2022-10-09', value: 'yyyy-MM-dd' },
|
{ label: 'yyyy-MM-dd - 2022-10-09', value: 'yyyy-MM-dd' },
|
||||||
{ label: 'd MMM yyyy - 9 Okt. 2022', value: 'date_string' },
|
{ label: 'do MMM yyyy - 9. Okt. 2022', value: 'date_string' },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
|
Loading…
Reference in New Issue
Block a user