diff --git a/.storybook/preview.ts b/.storybook/preview.ts index 3f5f465..95c8a4f 100644 --- a/.storybook/preview.ts +++ b/.storybook/preview.ts @@ -22,9 +22,11 @@ import '../src/theme.postcss'; import '../src/app.postcss'; import './fix.css'; +register('bg', () => import('../src/lib/i18n/locales/bg.json')); register('de', () => import('../src/lib/i18n/locales/de.json')); register('en', () => import('../src/lib/i18n/locales/en.json')); register('he', () => import('../src/lib/i18n/locales/he.json')); +register('pl', () => import('../src/lib/i18n/locales/pl.json')); init({ fallbackLocale: 'en', initialLocale: 'en' }); locale.set('en'); @@ -45,6 +47,10 @@ const preview: Preview = { toolbar: { icon: 'globe', items: [ + { + value: 'bg', + title: 'Bulgarian' + }, { value: 'de', title: 'German' @@ -56,6 +62,10 @@ const preview: Preview = { { value: 'he', title: 'Hebrew' + }, + { + value: 'pl', + title: 'Polish' } ] }