fix(hi): replace Latin transliteration with Devanagari script in messages.json#821
Open
nitinvishway wants to merge 2 commits into
Open
fix(hi): replace Latin transliteration with Devanagari script in messages.json#821nitinvishway wants to merge 2 commits into
nitinvishway wants to merge 2 commits into
Conversation
Translated all message values from English to Hindi Devanagari script. No changes to message keys, JSON structure, or placeholder definitions. Key translation decisions: - Technical terms such as `API`, `URL`, `CSS`, `JSON`, `Obsidian` and brand names retained in their original form as they have no standard Hindi equivalent. - UI terms like `property`, `provider`, `template`, `vault`, `model` transliterated to Devanagari (`प्रॉपर्टी`, `प्रदाता`, `टेम्पलेट`, `वॉल्ट`, `मॉडल`) rather than literally translated to avoid confusion in a technical context. - Action strings like `+ Add model`, `Cancel`, `Save`, `Delete` translated to natural Hindi equivalents (`मॉडल जोड़ें`, `रद्द करें`, `सेव करें`, `हटाएँ`). - Placeholder variables such as `$1`, `$strong_start$`, `$link_start$` left untouched
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🇮🇳 Fix: Hindi locale translations corrected to Devanagari script
Summary
This PR corrects the Hindi translations in
messages.json. The existing strings were written in Latin transliteration (romanized Hindi) rather than Devanagari, which is the standard and expected script for thehilocale.This is a correctness fix — not a content change. The meaning of the strings is preserved; only the script has been updated to what Hindi speakers actually read and expect.
Root Cause
The original translations appear to have been added using phonetic/transliterated text (e.g.
"Model jodein") instead of proper Unicode Devanagari (e.g."मॉडल जोड़ें"). This likely happened during initial string authoring without a native Hindi reviewer.Changes Made
messages.jsonhilocale message strings that used Latin scriptBefore / After Example
Checklist