I have a React TS app. There I have i18n. Unfortunatelly the base language of the input with date type depends on the browser settings and independent from the langauge selection inside the app.
It is also independent from the lang property.
If English is selected in the browser then it looks like this:
But if German is the selected one, than it shows:
I have found many question about the topic, but there were no usable responses.
So is it possible to change this text from my React app based on the selected language?
Thanks in advance.