Intl-T
August 8, 2026 ยท View on GitHub
A Fully-Typed Object-Based i18n Translation Library.
Fully-Typed Node-Based i18n Translation Library.
Intl T, International Tree, International Translations, International T Object, Internationalization for TypeScript, International T
Features
- ๐ฒ Node-based translations, the tree is the API:
t.page.section.title - ๐ฏ Fully-typed and type-safe translation keys, values and all sub-nodes
- ๐ Supports JSON files and dynamic remote imports on demand
- ๐ช Flexible and familiar drop-in syntax integrating all the best parts of other i18n libraries
- ๐งฉ ICU message format support and extended for complex and nested formatting
- โ๏ธ React components injections out of the box with typed chunks and variables
- ๐ Supports SSR, RSC and Static Rendering with Next.js, serverless friendly
- ๐ On-demand locale loading for lazy per-language chunks of just a few KB
- โ๏ธ Modular and agnostic to any framework or library
- ๐ฆ 6kb Lightweight bundle with no dependencies, no side effects, and Tree-Shakable
Installation
npm install intl-t # or: bun add intl-t ยท pnpm add intl-t ยท yarn add intl-t
Zero external dependencies ยท TypeScript โฅ 5 ยท Node 18+, Bun, Deno, Edge & browsers
Demo
export default function Page() {
const { t } = useTranslation("homepage");
return (
<main>
<h1>{t.title}</h1>
<span>{t("welcome", { user: "Ivan" })}</span>
<span>{t.summary({ count: 4 })}</span>
<ul>
{t.features.map(t => (
<li key={t.id}>{t}</li>
))}
</ul>
<p>{t.page1.section[0].article1.title}</p>
<p>{t("page1.section.0").article1("title")}</p>
<p>{t.account(UserVariables).options.change}</p>
</main>
);
}
View JSON source
// en.json
{
"title": "Homepage",
"welcome": "Welcome, {user}!", // support ICU message format
"summary": "{count, plural, =0 {no items} one {# item} other {# items}}",
"features": [
"Hi {name}. This is Feature 1",
"Hi {name}. This is Feature 2",
"Hi {name}. This is Feature 3",
{
"base": "Hi {name}. This is Feature 4 with html title", // base is default text for objects
"title": "Feature 4",
},
],
"page1": {
"section": [
{
"article1": {
"title": "Article 1",
},
},
],
},
"account": {
"options": {
"change": "Change your account settings. Your account id is {accountId}",
},
"values": {
// default values for this node
"accountId": 0,
},
},
"values": {
// default values
"user": "World",
"name": "{user}",
},
}
โ Read the full Intl-T documentation
Support
If you find this project useful, consider supporting its development โ or leave a โญ on the Github Repo. Also, if you need direct support or help, please don't hesitate to contact.
