Hi, I'm using `"@syncfusion/ej2-angular-calendars": "^19.3.44",` in
"@angular/core": "~11.1.2".
I want to set locale in 'ko', But got an error message like 'ERROR TypeError: Cannot convert undefined or null to object'.
I installed 'cldr-data', and here is my code.
```
import { loadCldr, L10n } from '@syncfusion/ej2-base';
import * as numberingSystems from 'cldr-data/supplemental/numberingSystems.json';
import * as gregorian from 'cldr-data/main/ko/ca-gregorian.json';
import * as numbers from 'cldr-data/main/ko/numbers.json';
import * as timeZoneNames from 'cldr-data/main/ko/timeZoneNames.json';
loadCldr(numberingSystems, gregorian, numbers, timeZoneNames);
@Component({
// …
})
export class MyComponent implements OnInit, OnDestroy {
// …
ngOnInit(): void {
L10n.load({
ko: {
calendar: { today: '오늘' },
},
});
}
}
```
And my template code as below:
```
<ejs-calendar
[formControl]="datesFormControl"
[isMultiSelection]="multiSelect"
[showTodayButton]="false"
[min]="minDate"
(renderDayCell)="disabledDate($event)"
locale="ko"
></ejs-calendar>
```
I already done with removing my node_modules and reinstall, but still having a same issue.
Hope to get an answer soon!
Thanks.