Translate additional strings and refine consent message in Hindi#2123
Translate additional strings and refine consent message in Hindi#2123Brainlessnoobcoder wants to merge 4 commits into
Conversation
Greptile SummaryThis PR translates a large batch of previously-untranslated English strings in the Hindi locale file (
Confidence Score: 2/5Not safe to merge as-is — the stray quote on line 589 produces invalid JSON that will silently break the entire Hindi locale for all users. The The only changed file, Important Files Changed
Flowchart%%{init: {'theme': 'neutral'}}%%
flowchart TD
A[App starts / locale selected: hi-in] --> B[Load src/lang/hi-in.json]
B --> C{JSON valid?}
C -- Yes --> D[Hindi strings applied to UI]
C -- No stray quote line 589 --> E[Parse error / fallback]
E --> F[All UI strings revert to raw keys or English]
D --> G[Users see translated labels]
F --> H[Hindi users see broken UI]
Reviews (1): Last reviewed commit: "update: Refined translation for update c..." | Re-trigger Greptile |
| "settings-category-assistance": "Assistance", | ||
| "settings-category-core": "Core settings", | ||
| "settings-category-cursor": "Cursor", | ||
| "lsp-uninstall-command-unavailable": "अनइंस्टॉल कमांड उपलब्ध नहीं है”", |
There was a problem hiding this comment.
Stray quote causes JSON syntax error
The value for lsp-uninstall-command-unavailable ends with two consecutive " characters (है""). The JSON parser treats the first " as the closing delimiter, leaving a bare " outside the string before the comma — this is invalid JSON that will cause the entire hi-in.json file to fail to parse, breaking the Hindi locale for all users. The extra " at the end of the value must be removed.
Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com>
No description provided.