NEWClaude now translates on every push

Translations that live in your repo, not a spreadsheet.

Lokalyx is translation management for developers. Push keys from your codebase, let Claude translate, review what matters, and publish to a global CDN — all from the command line.

Start translating free
$npm i -g lokalyx
Free up to 1,000 keys · No credit card · Live in 4 minutes
zsh — ~/acme-storefront
$ lokalyx push ./source Scanning namespaces… 4 files, 1,284 keys Uploading homepage.json products.json checkout.json account.json ✦ Claude translating 312 new keys → es, fr, de, pt, ja [████████████████░░░░] 78% · $0.04 spent ✓ Done in 6.2s — 312 keys ready for review $ lokalyx sync # pull approved, deprecate removed ✓ Pulled 1,284 keys across 5 locales → ./locales $ lokalyx publish --prod ↗ Published v42 → cdn.lokalyx.io/acme/v42/{es,fr,de,pt,ja}.json Global edge cache warm in 38ms $
Shipping in every language at
NorthwindCartwheelPolarisHexaLumen AIDriftwood
How it works

Three commands. That's the whole loop.

No portal to learn, no spreadsheets to reconcile. Your source strings stay in git; Lokalyx handles the rest.

01

Push

Extract keys from your source locale and upload them. New strings are detected automatically on every run.

$ lokalyx push ./source
02

Translate

Claude translates new keys instantly using your glossary and tone. Costs pennies. Humans review before anything ships.

es · fr · de · pt · ja
03

Publish

Ship approved translations to a global CDN with one command. Immutable versions, instant rollback.

$ lokalyx publish --prod
Features

Built for teams that ship in git.

Everything you need to localize a product without leaving your workflow — and nothing you don't.

CLI-first workflow

push, pull, and sync from any shell or CI pipeline. Translations live in your repo as plain JSON — diff them, review them, revert them.

$ lokalyx sync

AI translation with Claude

New keys are translated on push using your glossary and brand tone. A 1,000-key project costs a few cents. Every string is human-reviewed before publish.

model: claude · glossary-aware

Namespace-based

One JSON file per feature — homepage.json, products.json — that maps cleanly to useTranslate('homepage') in your app. No giant monolithic files.

homepage.json → useTranslate()

Team collaboration

Invite translators and reviewers with per-project access. Flag keys that need attention, leave comments, and approve inline.

roles: translator · reviewer

CDN publishing

One command pushes approved locales to a global edge cache. Immutable, versioned URLs mean instant rollback and zero-downtime swaps.

cdn.lokalyx.io · 38ms p50

Tokens, SSO & SDK

Scoped API tokens per project, SAML/OIDC SSO via WorkOS with domain enforcement, and lightweight SDKs for React, Vue, Swift, and Kotlin.

@lokalyx/react · SAML · OIDC
Integration

A JSON file in. A typed hook out.

Your namespace files are the source of truth. The SDK loads the right locale from the CDN and gives you a tiny, type-safe lookup.

source/homepage.jsonsource
{
  "hero": {
    "title": "Ship in every language",
    "subtitle": "Translations that live in your repo.",
    "cta": "Start translating"
  },
  "nav": {
    "docs": "Docs",
    "pricing": "Pricing"
  }
}
app/page.tsxreact
import { useTranslate } from '@lokalyx/react'

export default function Home() {
  const t = useTranslate('homepage')

  return (
    <section>
      <h1>{t('hero.title')}</h1>
      <p>{t('hero.subtitle')}</p>
      <button>{t('hero.cta')}</button>
    </section>
  )
}
Keys are type-checked against your source file — autocomplete every translation, catch missing keys at build time.
Pricing

Priced per key, not per seat.

Translators and reviewers are always free. AI translation is included in every plan — no metered surprises.

Free
For solo projects and prototypes.
$0/forever
Start free
  • 1,000 keys
  • 3 target locales
  • AI translation included
  • 2 team members
  • 7-day version history
POPULAR
Pro
For shipping teams that move fast.
$29/month
Start 14-day trial
  • 10,000 keys
  • Unlimited locales
  • Glossary & tone profiles
  • 10 team members
  • Webhooks & SDK access
  • 90-day version history
Team
For org-wide localization at scale.
$99/month
Talk to us
  • 50,000 keys
  • Unlimited team members
  • External collaborators
  • Enterprise SSO (SAML/OIDC)
  • Audit log & SLA
  • Unlimited history

Ship localized in an afternoon, not a quarter.

Drop the CLI into your repo, push your source/ folder, and have your first locale live before standup ends.