Integrates Intlayer internationalization with SolidJS components. Use when the user asks to "setup SolidJS i18n", create a new translated component, use the "useIntlayer" hook in Solid, or configure providers.
Intlayer promotes Component-Level Content Declaration. Instead of a massive global translation file, content is declared in *.content.ts files adjacent to the Solid components that use them.
To create a translated component, you need two files:
myComponent.content.ts) defining the dictionary.MyComponent.tsx) using the useIntlayer hook.Create a content file using t() for translations.
File: src/components/MyComponent/myComponent.content.ts
import { t, type Dictionary } from "intlayer";
const content = {
// The 'key' must be unique and matches what you pass to useIntlayer()
key: "my-component",
content: {
text: t({
en: "Welcome",
fr: "Bienvenue",
es: "Hola",
}),
},
} satisfies Dictionary;
export default content;
[!IMPORTANT] In Solid,
useIntlayerreturns an accessor function (e.g.,content()). You must call this function to access the reactive content.
import { useIntlayer } from "solid-intlayer";
const MyComponent = () => {
const content = useIntlayer("my-component");
return (
<div>
<h1>
{/* Return content */}
{content().text}
</h1>
{/* Return string (.value) */}
<img src={content().text.value} alt={content().text.value} />
</div>
);
};