Hi Juan,
Thanks for contacting Syncfusion Support.
The reported issue occurs because the required JSON files are loaded properly in your application before setting the culture of the component. So, please ensure that the JSON files are available in the referred location (within load culture function). Please check the documentation link to load the culture files in your application.
For your convenience, we have created a sample and attached in the below link. Please check it.
Run the below commands to run the sample.
- npm install
- npm start
Query: I would also like to translate the text "TODAY"
Please use the below way to change the UI string in datepicker.
|
import { L10n } from '@syncfusion/ej2-base';
L10n.load({
'en-US': {
'datepicker': {
today:'heute'
}
}
});
|
Regards,
Rahul Narayanasamy.