0

I am trying to include langage locale support from my React components in Storybook using "react-intl", I added the following global types in "preview.js" as list of Languages supported to appear in the Storybook toolbar:

export const globalTypes = {
locale: {
    title: 'Locale',
    description: 'Internationalization locale',
    toolbar: {
      icon: 'globe',
      items: [
        { value: 'en', right: '', title: 'English' },
        { value: 'de', right: '', title: 'Deutsch' },
      ],
      dynamicTitle: true,
    },
  },
 };

When I switch the langages it does not work always the default langage is showed, I need to know the code that can be used to implement the langage switcher and make it work with the code implemented within our React application in IdwIntlProvider.. I have to implement the functionality without using the react-intl Addon.

tlaesus
  • 197
  • 3
  • 13

0 Answers0