diff options
author | shellheim <116480892+shellheim@users.noreply.github.com> | 2023-07-14 20:19:02 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-14 22:19:02 +0200 |
commit | 481ee44faef30fe69df861eebd144e4603c61574 (patch) | |
tree | 161b40a142ee8400fc9293dfc740d76bfa1349ab | |
parent | fa4cb938d9196bdd0381a636d238defbe92764ae (diff) |
lang: Add hindi translation (#888)
-rw-r--r-- | app/i18n/index.js | 1 | ||||
-rw-r--r-- | app/i18n/lang/hi.json | 33 | ||||
-rw-r--r-- | package.json | 1 |
3 files changed, 35 insertions, 0 deletions
diff --git a/app/i18n/index.js b/app/i18n/index.js index fb92fe3..57dcca9 100644 --- a/app/i18n/index.js +++ b/app/i18n/index.js @@ -8,6 +8,7 @@ const languages = { es: { translation: require('./lang/es.json') }, fr: { translation: require('./lang/fr.json') }, gl: { translation: require('./lang/gl.json') }, + hi: { translation: require('./lang/hi.json') }, hr: { translation: require('./lang/hr.json') }, hu: { translation: require('./lang/hu.json') }, it: { translation: require('./lang/it.json') }, diff --git a/app/i18n/lang/hi.json b/app/i18n/lang/hi.json new file mode 100644 index 0000000..464c385 --- /dev/null +++ b/app/i18n/lang/hi.json @@ -0,0 +1,33 @@ +{ + "enterConferenceNameOrUrl": "अपने सम्मेलन के लिए रुम का नाम या जित्सी लिंक दर्ज करें।", + "go": "शुरु करें", + "help": "सहायता", + "termsLink": "शरतें", + "privacyLink": "गोपनीयता", + "recentListLabel": "या अपने हाल के सम्मेलनों में से किसी एक में पुनः शामिल हों।", + "sendFeedbackLink": "प्रतिक्रिया भेजें", + "aboutLink": "हमारे बारे में", + "sourceLink": "सोर्स कोड", + "versionLabel": "संस्करण: {{version}}", + "onboarding": { + "startTour": "एैप का दौरा करें।", + "skip": "स्किप करें", + "welcome": "{{appName}} में आपका स्वागत है!", + "letUsShowYouAround": "हमें आपको एैप दिखाने दें।", + "next": "आगे", + "conferenceUrl": "अपने रुम का नााम (या लिंक) प्रदान करें। आप कोई भी नाम रख सकते हैं, बस रूम में बाकी लोगों को यह नाम बता दें ताकि वह हमें यहि नाम प्रदान करें।", + "settingsDrawerButton": "यहा कलि्क कर सेटिंगस खोलें।", + "serverSetting": "इस सर्वर पर आपकी कॉन्फ्रेंस होंगी। आप स्वयं का सर्वर भी उपयोग कर सकते हैं, लेकिन आपको इसकी आवश्यकता नहीं है!", + "serverTimeout": "मीटींग टाइमआउट हो गयी हैं, यदि टाइमआउट से पहले मीटिंग में जुड़ा नहीं जा सकता तो मीटिंग रद्द कर दि जाति है।", + "alwaysOnTop": "आप टॉगल कर सकते हैं कि क्या आप \"ऑलवेज़-ऑन-टॉप\" विंडो को इनेबल करना चाहते हैं, जो तब प्रदर्शित होती है जब मुख्य विंडो फोकस खो देती है। यह सभी कॉन्फ्रेंसो में लागू होंगी।" + }, + "settings": { + "back": "पिछे", + "alwaysOnTopWindow": "ऑलवेज़-ऑन-टॉप", + "invalidServer": "अमान्य सर्वर URL", + "invalidServerTimeout": "यह संख्या सर्वर टाइमआउट के लिए अमान्य है!", + "serverUrl": "सर्वर URL", + "serverTimeout": "सर्वर टाइमआउट (सकेंड में)", + "disableAGC": "स्वचालित नियंत्रण बंद करें" + } +} diff --git a/package.json b/package.json index cc100ae..d2c1c7f 100644 --- a/package.json +++ b/package.json @@ -65,6 +65,7 @@ "Comment[de]": "Jitsi Meet Desktop App", "Comment[es]": "Aplicación de escritorio Jitsi Meet", "Comment[fr]": "Application de bureau Jitsi Meet", + "Comment[hi]": "जितसि मीट डेस्कटॉप एैप", "Comment[hr]": "Jitsi Meet desktop aplikacija", "Comment[hu]": "Asztali Jitsi Meet-alkalmazás", "Comment[it]": "Applicazione Jitsi Meet Desktop", |