I'm trying to set the locale of blueprintjs DateRangeInput
. The docs state that the Component uses Moment.js for localisation. So I tried to set locale="de"
, but the language is English still. Any ideas what is missing to get a translated date input?
I'm fairly new to React programming so I can't be sure that it has nothing to do with my React skills, even tho passing the props seems quite right to me.
<DateRangeInput
locale={"de"}
value={dates}
onChange={...}
/>