Pertanyaan yang sering diajukan

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

Apakah saya perlu mengelola berkas terjemahan?

Tidak. Tidak ada file JSON, tidak ada langkah ekstraksi kunci, dan tidak ada plugin build-time. Anda menulis kalimat Anda dalam bahasa sumber, SDK mengirimkannya ke API pada permintaan pertama, API menerjemahkannya dengan AI, dan setiap permintaan berikutnya dilayani dari cache. Kode Anda adalah satu-satunya sumber kebenaran.

Apa yang terjadi ketika saya mengubah teks sumber?

Teks sumber adalah kunci. Ubah dan Anda akan mendapatkan kunci baru dengan terjemahan AI yang segar. Kunci lama tidak lagi diminta, dan dasbor membersihkannya setelah 30 hari tidak digunakan. Memperbaiki kesalahan ketik juga sama: perbaiki di kode, deploy, dan teks baru akan diterjemahkan pada permintaan pertama.

Berapa harganya?

Rencana yang di-host dikenakan biaya 8 € per proyek per bulan, ditagih bulanan, dapat dibatalkan kapan saja. Edisi self-hosted gratis untuk satu proyek; 30 € sekali untuk proyek tak terbatas — tanpa langganan, tanpa batasan penggunaan. Anda membawa kunci AI Anda sendiri dalam kedua kasus. Tidak ada penetapan harga per kursi, per kata, atau per permintaan.

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.

Mandiri atau langganan: yang mana?

Langganan: kami yang menjalankannya, pembaruan otomatis, satu harga per proyek. Self-hosted: gambar Docker yang sama persis di server Anda sendiri, gratis untuk diinstal, satu proyek gratis selamanya, €30 sekali untuk proyek tak terbatas, dengan kunci AI Anda sendiri dan data Anda di rumah. Ambil langganan kecuali Anda ingin menjalankan server.

Baca jawaban lengkapnya, dengan kode
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.

Bagaimana cara menangani bentuk jamak?

Tidak ada API plural dengan sengaja. Tulis setiap bentuk sebagai kalimat lengkap tersendiri — "1 item" dan "{count} items" — dan masukkan angkanya dengan penggantian. Model menerjemahkan setiap kalimat dalam bahasanya sendiri, sehingga bahasa dengan lebih banyak bentuk tetap terdengar alami untuk kasus umum.

Baca jawaban lengkapnya, dengan kode
Bagaimana cara saya menangani gender?

Dengan cara yang sama: satu kalimat lengkap per formulir, ditambah konteks yang memberi tahu model siapa yang berbicara dan siapa yang diajak bicara. Dua konteks memberikan dua terjemahan terpisah dari kata-kata yang sama, jadi "Welcome back" untuk wanita dan untuk pria tidak pernah berbenturan.

Baca jawaban lengkapnya, dengan kode
Bagaimana cara memformat tanggal, angka, dan mata uang?

SDK tidak memformatnya, runtime Anda yang melakukannya. Gunakan Intl.DateTimeFormat dan Intl.NumberFormat dengan bahasa saat ini dari SDK, lalu masukkan hasilnya ke dalam kalimat dengan replace. Satu kalimat, satu terjemahan, format yang benar di setiap bahasa.

Baca jawaban lengkapnya, dengan kode
Bisakah saya menyesuaikan prompt terjemahan?

Tidak, dan Anda tidak perlu melakukannya. Prompt membaca konteks Anda untuk setiap kunci: di situlah nada, audiens, dan makna ditentukan, dan itulah yang membuat kata yang sama diterjemahkan secara berbeda di dua tempat. Dan terjemahan apa pun dapat ditimpa secara manual di dasbor; API tidak pernah menimpa apa yang Anda tulis.

Baca jawaban lengkapnya, dengan kode
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.

Bagaimana cara memperbaiki kesalahan ketik?

Teks sumber adalah kunci. Memperbaiki kesalahan ketik pada teks sumber akan memberi Anda kunci baru dengan terjemahan baru; string lama tidak lagi diminta, dan dasbor membersihkannya secara otomatis setelah 30 hari tidak digunakan. Kesalahan ketik dalam terjemahan: edit sel di dasbor, dan perbaikannya bersifat permanen.

Baca jawaban lengkapnya, dengan kode