Hello,
my scope is to traslate the gantt chart in italian.
I've already implemented the italian languages for the columns/filter ecc with:
L10n.load({
'it-IT': {
gantt: {
id: 'Id',
name: 'Nome',
startDate: 'Data Partenza',
duration: 'Durata',
progress: 'Progresso',
emptyRecord: 'Nessun task presente',
dependency: 'Dipendenza',
notes: 'Note',
baselineStartDate: 'Data inizio base',
baselineEndDate: 'Data fine base',
ecc..
Now I want to translate the dates in the chart.
Following this example:
https://ej2.syncfusion.com/angular/documentation/gantt/global-local#internationalization
I cannot understand and find the 2 file to add to:
loadCldr(
'./numbers.json',
'./ca-gregorian.json',
);
Where can I found them?
Do I need to download them and include them in the project? And in which json order the numbers and ca-gregorian must be?
In the website there isn't an example of those 2 file and from this page (https://ej2.syncfusion.com/angular/documentation/common/internationalization ) I cannot understand it
Thanks
Matteo