I have english and swedish in my react web application.
I am using react-moment and in my App.js, I have imported moment/locale and placed import Moment from 'react-moment' for every page that I need to have the dates.
import 'moment/locale/sv'
import 'moment/locale/en-gb'
How can I translate it to swedish but not permanently? The user can switch language from english to swedish and vice versa.
<Moment format="ddd DD MMM">
{flight.date}
</Moment>
<Moment format="HH:mm">{stop.arrival}</Moment>
Change locale with moment.locale() and set local to Moment Element
Or you can also do