Ask your question and get a summary of the document by referencing this page and the AI provider of your choice
Version History
- "Update Solid useIntlayer API usage to direct property access"v8.9.05/4/2026
- "Init doc"v8.4.53/20/2026
If you have an idea for improving this documentation, please feel free to contribute by submitting a pull request on GitHub.
GitHub link to the documentationCopy doc Markdown to clipboard
Intlayer with Storybook
Table of Contents
Why Intlayer over alternatives?
Compared to main solutions like storybook-react-i18next or i18next, Intlayer is a solution that comes with integrated optimizations such as:
Intlayer is optimized to work perfectly with Storybook by offering multilingual story decorators, locale switching, and all the features needed for scaling internationalization (i18n) across your design system.
Instead of loading massive JSON files into your pages, load only the necessary content. Intlayer helps reduce your bundle and page sizes by up to 50%.
Scoping your application's content facilitates maintenance for large-scale applications. You can duplicate or delete a single feature folder without the mental burden of reviewing your entire content codebase. Additionally, Intlayer is fully typed to ensure your content's accuracy.
Co-locating content reduces the context needed by Large Language Models (LLMs). Intlayer also comes with a suite of tools, such as a CLI to test for missing translations,LSP, MCP, and agent skills, to make the developer experience (DX) even smoother for AI agents.
Use automation to translate in your CI/CD pipeline using the LLM of your choice at the cost of your AI provider. Intlayer also offers a compiler to automate content extraction, as well as a web platform to help translate in the background.
Connecting massive JSON files to components can lead to performance and reactivity issues. Intlayer optimizes your content loading at build time.
More than just an i18n solution, Intlayer provides an self-hosted visual editor and a full CMS to help you manage your multilingual content in real-time, making collaboration with translators, copywriters, and other team members seamless. Content can be stored locally and/or remotely.
Why use Intlayer with Storybook?
Storybook is the industry-standard tool for developing and documenting UI components in isolation. Combining it with Intlayer lets you:
- Preview every locale directly inside the Storybook canvas using a toolbar switcher.
- Catch missing translations before they reach production.
- Document multilingual components with real, type-safe content rather than hard-coded strings.
Step-by-Step Setup
</Step>
</Steps>
Declaring Content
Create a *.content.ts file next to each component. Intlayer picks it up automatically during compilation.
For more content declaration formats and features see the content declaration documentation.
Using useIntlayer in a Component
useIntlayer returns the compiled dictionary for the current locale provided by the nearest IntlayerProvider. Switching the locale in the Storybook toolbar automatically re-renders the story with updated translations.
Writing Stories for Internationalized Components
With the IntlayerProvider decorator in place, your stories work exactly as before. The locale toolbar controls the active locale for the entire canvas:
Each story inherits the locale global from the toolbar, so you can verify every locale without changing any story code.
Testing Translations in Stories
Use Storybook's play functions to assert that the correct translated text is rendered for a given locale: