惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

B
Blog RSS Feed
J
Java Code Geeks
C
Check Point Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Google DeepMind News
Google DeepMind News
阮一峰的网络日志
阮一峰的网络日志
Engineering at Meta
Engineering at Meta
Blog — PlanetScale
Blog — PlanetScale
D
Docker
H
Hackread – Cybersecurity News, Data Breaches, AI and More
月光博客
月光博客
I
InfoQ
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
A
About on SuperTechFans
L
LangChain Blog
腾讯CDC
Y
Y Combinator Blog
MongoDB | Blog
MongoDB | Blog
Vercel News
Vercel News
MyScale Blog
MyScale Blog
博客园 - Franky
IT之家
IT之家
博客园_首页

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Is Claude directly editing your translation JSON files?
i18nexus · 2026-05-30 · via DEV Community

AI Translation Has Been Solved. The Workflow Hasn't.

Over the past year, AI coding agents have become incredibly good at localization. Claude, Codex, Cursor, and similar tools can generate strings, update components, and create translations in multiple languages from a single prompt. For many React applications, generating translations is no longer the difficult part.

The interesting problem now is everything that happens after the translations are generated.

Product managers still want copy changes. Translators still need review workflows. Teams still need context for each string. Developers still need synchronized translation files. The AI can generate the content, but somebody still needs to coordinate the workflow around that content.

While building i18nexus, we started wondering what would happen if AI coding agents created strings, translations, and context through the same system as everyone else instead of writing directly to translation JSON files.

The result is a workflow where AI agents can generate strings, translations, and context through MCP, while PMs and translators review everything in a shared dashboard. Translation files stay synchronized automatically, and developers work with AI coding agents the same way they already do in their application.

Getting Started

The easiest way to get started is to run the init command at the root of your project. It doesn't matter if you're using next-intl, i18next, or react-intl:

npx @i18nexus/cli init

The CLI creates an i18nexus project, imports your existing translations, configures synchronization, and sets up the MCP integration for Claude Code or Codex. No code changes needed. Continue working as you normally do.

Once configured, AI agents automatically add new copy and translations to i18nexus as you code, which are then synced down to your local JSON files. The developer experience doesn't change at all.

Those changes immediately become available for review inside the dashboard, where PMs and translators can edit and verify translations before they are synchronized back to local translation files.

Keeping Everything Synchronized

Whether a PM edits a string in the dashboard or another developer adds a string from their MCP, the local translation files update automatically for all developers. The application updates. The build stays synchronized. Nobody, including AI agents, manually edits JSON files. We often find ourselves gitignore-ing them. They're now simply generated output.

Final Thoughts

The most interesting thing about AI localization isn't that AI can generate translations anymore. That's already becoming expected. The interesting challenge is figuring out how developers, translators, product managers, and AI agents work together around those translations.

For us, the answer has been to treat AI agents as first-class participants in the localization workflow rather than tools that edit translation files directly. The coding experience doesn't change, but the collaboration experience changes dramatically.

Check out the quick setup guide here.

Happy coding!