What problem does it solve? Hardcoded user-facing strings and inconsistent translation keys across locale files break internationalized applications, causing untranslated UI text and missing translations in production. ## Core Features & Use Cases - Hardcoded String Detection: Scans React, Vue, and Python source files for untranslated text in JSX elements, template attributes, and print/flash statements. - Locale Completeness Check: Compares flattened translation keys across language files to find missing or extra keys per namespace. - i18n Implementation Guidance: Provides patterns for react-i18next, next-intl, and Python gettext, plus RTL support with CSS logical properties. - Use Case: Before shipping a multilingual SaaS app, run the checker to find components with hardcoded English strings and verify that the Turkish and Arabic locale files contain all keys present in the English base locale. ## Quick Start Ask the AI to audit this project for hardcoded strings and missing translations using the i18n checker.