Întrebări frecvente

Everything you need to know about i18n-keyless before you start.

Trebuie să gestionez fișierele de traducere?

Nu. Nu există fișiere JSON, niciun pas de extragere a cheilor și niciun plugin de build-time. Scrieți propozițiile în limba sursă, SDK le trimite API-ului la prima cerere, API-ul le traduce cu AI, iar fiecare cerere ulterioară este servită din cache. Codul dvs. este singura sursă de adevăr.

Ce se întâmplă când schimb textul sursă?

Textul sursă este cheia. Dacă îl modificați, veți obține o nouă cheie cu o traducere AI proaspătă. Cheia veche pur și simplu nu mai este cerută, iar tabloul de bord o curăță după 30 de zile fără utilizare. Corectarea unei greșeli de tipar funcționează la fel: corectați-o în cod, implementați și noul text va fi tradus la prima cerere.

Cât costă?

Planul găzduit costă 8 € pe proiect pe lună, facturat lunar, îl puteți anula în orice moment. Ediția auto-găzduită este gratuită pentru un proiect; 30 € o singură dată pentru proiecte nelimitate — fără abonament, fără limită de utilizare. În ambele cazuri, aduceți propria cheie AI. Nu există o prețuire pe loc, pe cuvânt sau pe cerere.

Can I export my translations?

Yes. The dashboard has an "Export JSON" button that downloads every translation in your project as a single JSON file. The export includes all rows, not just the ones used in the last 30 days, so it is a full backup. There is no lock-in: your data is always one click away.

What frameworks does it support?

React, React Native, Vue, Svelte, Vanilla JS, Node.js, Ruby on Rails, Python, Go, Swift and Kotlin. Every SDK works the same way: wrap your text in a translation call, and the API returns the translation for the current language. The server SDKs are thread-safe and cache translations in memory.

How many languages are supported?

48 languages, including regional variants like zh-Hans / zh-Hant, en / en-GB, fr / fr-CA, pt / pt-BR, and es / es-MX. Arabic, Hebrew and Urdu are in the list, so right-to-left languages work too. Adding a new language to your project is one click in the dashboard.

Does it work with server-side rendering?

Yes. The Node.js SDK uses AsyncLocalStorage so your loaders, head functions and server components can translate without a React provider. On the client side, the React provider hydrates from the server-rendered HTML. There are step-by-step guides for Next.js, Nuxt, and TanStack Start in the documentation.

Does it slow down my app?

The first time a new string is requested, the API calls the AI model — that takes one to two seconds. Every request after that is served from the database, which is a regular cache hit. The SDK also caches translations locally, so returning users see zero network delay. If ten users request the same string at the same time, only one AI call is made.

What happens if the service goes down?

Every SDK caches translations locally — in localStorage on the web, AsyncStorage on mobile, and in memory on the server. If the API is unreachable, the SDK serves the cached translations. Your users see the last known translation, never a blank string. When the API comes back, the SDK refreshes silently.

Which AI provider does it use?

Five providers are supported: Mistral, OpenAI, Anthropic, Google, and any OpenAI-compatible endpoint such as Ollama, Groq, or Together. The operator picks the provider and the model from the dashboard or from the environment. The default on i18n-keyless.com is Mistral. Self-hosted users can run Ollama locally and send nothing to a third party.

Can I override an AI translation?

Yes. Click any cell in the dashboard, type the correct text, and save. The fix is permanent: the API never overwrites a value that was set by hand. You can also override translations through the API or through the MCP server, so an AI coding agent can fix a translation for you.

Can I migrate from i18next or another library?

Yes. There is a step-by-step migration guide for i18next, react-intl, and Lokalise in the documentation. The API has a migrate endpoint that imports your existing translations one by one, with no AI call and nothing billed. The MCP server has the same tool, so an AI agent can do the migration for you.

Is there a free plan?

There is no time-limited free trial. The self-hosted edition gives you one project free forever — install the Docker image, use your own AI key, and keep your data on your own server. The hosted plan is €8 per month per project, with no minimum commitment.

Is the source code available?

The server, the dashboard and the Docker image are published on GitHub under the Elastic License 2.0. You can read every line, run the code, and change it. The SDKs — React, Vue, Node, Rails and the others — are MIT-licensed. The only restriction: you may not offer the software as a hosted service to third parties.

Autogăzduit sau abonament: care?

Abonament: îl gestionăm noi, actualizările sunt automate, un preț per proiect. Auto-gazduit: aceeași imagine Docker pe propriul dvs. server, gratuit de instalat, un proiect gratuit pentru totdeauna, 30 € o dată pentru proiecte nelimitate, cu cheia dvs. AI și datele dvs. acasă. Alegeți abonamentul cu excepția cazului în care doriți să rulați un server.

Citiți răspunsul complet, cu codul
How do I handle dynamic values like names or counts?

Use the replace option. Write the sentence with a placeholder — "Hello {name}, you have {count} items" — and pass the values at render time with replace: { "{name}": userName, "{count}": String(n) }. The AI sees the placeholder and keeps it in every translation. The SDK substitutes the value at runtime.

Cum gestionez pluralurile?

Nu există un API pentru plural, intenționat. Scrieți fiecare formă ca propoziție completă de sine stătătoare — „1 element” și „{count} elemente” — și introduceți numărul prin înlocuire. Modelul traduce fiecare propoziție în limba sa, astfel încât limbile cu mai multe forme să sune în continuare natural pentru cazurile comune.

Citiți răspunsul complet, cu codul
Cum să gestionez genurile?

În același fel: o propoziție completă pentru fiecare formular, plus un context care îi spune modelului cine vorbește și cine este adresat. Două contexte oferă două traduceri separate ale acelorași cuvinte, astfel încât "Welcome back" pentru o femeie și pentru un bărbat nu vor intra niciodată în conflict.

Citiți răspunsul complet, cu codul
Cum formatez datele, numerele și monedele?

SDK-ul nu le formatează, o face runtime-ul tău. Folosește Intl.DateTimeFormat și Intl.NumberFormat cu limba curentă din SDK, apoi pune rezultatul în propoziție cu replace. O propoziție, o traducere, formatul corect în fiecare limbă.

Citiți răspunsul complet, cu codul
Pot personaliza promptul de traducere?

Nu, și nu este nevoie să o faci. Promptul citește contextul tău pentru fiecare cheie: aici se stabilesc tonul, publicul și sensul, și acesta este motivul pentru care aceeași cuvânt se traduce diferit în două locuri. Și orice traducere poate fi suprascrisă manual în tabloul de bord; API-ul nu suprascrie niciodată ceea ce ai scris.

Citiți răspunsul complet, cu codul
Does it have an MCP server for AI coding agents?

Yes. The API is also an MCP server with OAuth 2.1 authentication. An AI agent can list translations, translate strings, override values, import existing translations, and manage project members — the same operations a human does in the dashboard. Connect it from Claude Code, Cursor, Windsurf, or any MCP-compatible client.

Can I use it for backend strings and emails?

Yes. The Node.js, Ruby on Rails, Python and Go SDKs run on the server. Translate an email subject, an error message, or a push notification the same way you translate a UI string. The server SDKs cache translations in memory and refresh in the background, so they do not add latency to your request.

Can my whole team work on translations?

Yes. Add team members to a project from the dashboard or through the API. Every member can see all translations, override any value, and add languages. Admins create projects and manage members. There is no per-seat pricing: add as many people as you need.

Cum pot să corectez o greșeală de tastare?

Textul sursă este cheia. Dacă corectați o greșeală de tipar în textul sursă, veți obține o nouă cheie cu o nouă traducere; vechea secvență pur și simplu nu mai este cerută, iar tabloul de bord o curăță automat după 30 de zile fără utilizare. O greșeală de tipar într-o traducere: editați celula din tabloul de bord, iar corectura este permanentă.

Citiți răspunsul complet, cu codul