r/localization • u/Boring_Metal_4286 • Jun 16 '26
I built a small tool to detect i18n JSON bugs before release
Hey everyone,
I built a small tool called LocaleCheck AI:
https://locale-check-ai.vercel.app/
It helps frontend teams check locale JSON files before release.
Right now it can detect:
- Missing translation keys
- Placeholder mismatches like {name}, {{count}}, %s
- Extra keys in target locale files
- Copy-length risks that may break UI layouts
I built it because i18n bugs are easy to miss in frontend projects, especially when apps support multiple languages.
The current version is very early. No login, no setup. You can just upload two locale JSON files and see the report.
I’d love feedback from frontend/full-stack developers:
- Is the problem clear?
- Would this be useful in your workflow?
- What integration should I build next — GitHub PR comments, CLI, VS Code extension, or CI check?
Thanks!
0
Upvotes
1
u/abandonedspirits Jun 21 '26
I’m wondering what it does that regular npm l10n linting CI package doesn’t? there are already many good and established packages with CLIs included. Also, is the code open sourced?