Now showing in 30+ languages

Your app in
every language

General Translation is a full-stack localization platform. You wrap your components in <T>, run one command, and your app serves more than thirty languages from a global CDN. Locadex, the i18n agent, handles the setup.

The T component

You keep writing JSX. The <T> component marks what should be translated, the build translates it, and nothing about your rendering changes.

Before
export default function Page() {
  return (
    <main>
      <h1>Welcome to the show</h1>
      <p>Doors open at seven.</p>
    </main>
  );
}
After gt-next
import { T } from 'gt-next';

export default function Page() {
  return (
    <T>
      <main>
        <h1>Welcome to the show</h1>
        <p>Doors open at seven.</p>
      </main>
    </T>
  );
}

Act I Install

Run npx gt@latest in your repo. Locadex configures the provider, the middleware, and the locale routing for you.

Act II Wrap

Wrap JSX in <T> and strings in useGT. Your source language stays in your code, where you review it.

Act III Ship

Run npx gt translate in CI. Translations build before deploy and serve from the edge in every locale.

Tonight’s program

This board is one <T> component rendered twelve times. GT serves each rendition with the right locale and text direction, so Arabic reads right to left without any change to your markup.

  • HolaesSpanish
  • BonjourfrFrench
  • HallodeGerman
  • CiaoitItalian
  • OláptPortuguese
  • こんにちはjaJapanese
  • 안녕하세요koKorean
  • 你好zhChinese
  • مرحباarArabic
  • नमस्तेhiHindi
  • ΓειαelGreek
  • MerhabatrTurkish

GT supports every CLDR locale, including regional variants such as pt-BR and zh-Hant. The twelve above are a sample.

Plans and rates

Translation is billed per token, and the rates are published. A usage limit is a hard cap that blocks billing even with auto-reload on.

Build time$10 / 10k input tokens
Runtime$1 / 10k input tokens
Development$1 / 10k input tokens
Locadex$5 / LCU
Credits$1 = 1,000,000 credits

Starter

$0 per month

Unlimited users, projects, and languages. The dashboard, the editor, GitHub integration, and Locadex are included. The minimum top-up is $10.

  • Every SDK and the translation CLI
  • Dashboard, glossaries, and the editor
  • Locadex runs on your repo
Get started

Enterprise

Custom annual

Forward-deployed engineers, custom workflows for any format or framework, and shared context across your projects.

  • SSO, RBAC, webhooks, custom SLA
  • SOC 2 Type II, GDPR, ISO 27001
  • Support from the engineers who build it
Contact us