need to change specific month string for Intl.DateTimeFormat in de-at language

Is there a way to change month title Jänner to Janner while using below code?

var date = new Date(Date.UTC(2020, 0, 20, 3, 23, 16, 738));
console.log(new Intl.DateTimeFormat(‘de-at’, { month: ‘long’ }).format(date));
date = new Date(Date.UTC(2020, 2, 20, 3, 23, 16, 738));
console.log(new Intl.DateTimeFormat(‘de-at’, { month: ‘long’ }).format(date));

Output:- ‘Jänner’
‘März’

Expected output:- ‘Janner’
‘Marz’

we want to replcae this ä with a without any other logic. Is there any other method available in Intl.DateTimeFormat to achieve this behaviour?

Hello, @harh00721

Webix supports data formatting. Localization methods belong to the i18n class and treat data according to the set format.
You could describe the locale with your own rules, using a basic scheme.
Please, check the snippet here:Code Snippet