Jitsi Meet - Secure, Simple and Scalable Video Conferences that you use as a standalone app or embed in your web application.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
jitsi-meet/lang
Edgars Voroboks 896fc29af7 fix(lang): Update Latvian language translation 9 months ago
..
languages.json lang: add indonesian translation (#14836) 11 months ago
main-af.json fix(polls/web) check for duplicate poll options (#14541) 1 year ago
main-ar.json fix(polls/web) check for duplicate poll options (#14541) 1 year ago
main-be.json fix(polls/web) check for duplicate poll options (#14541) 1 year ago
main-bg.json fix(polls/web) check for duplicate poll options (#14541) 1 year ago
main-ca.json fix(polls/web) check for duplicate poll options (#14541) 1 year ago
main-cs.json fix(polls/web) check for duplicate poll options (#14541) 1 year ago
main-da.json fix(polls/web) check for duplicate poll options (#14541) 1 year ago
main-de.json fix(lang): update german translation (#15011) 9 months ago
main-dsb.json fix(polls/web) check for duplicate poll options (#14541) 1 year ago
main-el.json fix(polls/web) check for duplicate poll options (#14541) 1 year ago
main-eo.json lang: Correct accusative error in Esperanto translation (#14940) 10 months ago
main-es.json fix(polls/web) check for duplicate poll options (#14541) 1 year ago
main-esUS.json fix(polls/web) check for duplicate poll options (#14541) 1 year ago
main-et.json fix(polls/web) check for duplicate poll options (#14541) 1 year ago
main-eu.json fix(polls/web) check for duplicate poll options (#14541) 1 year ago
main-fa.json fix(polls/web) check for duplicate poll options (#14541) 1 year ago
main-fi.json fix(polls/web) check for duplicate poll options (#14541) 1 year ago
main-fr.json lang: french update 07 2024 (#14906) 11 months ago
main-frCA.json fix(lang) update fr-ca translation 1 year ago
main-gl.json fix(polls/web) check for duplicate poll options (#14541) 1 year ago
main-he.json lang: Hebrew Typo Fix (#14949) 10 months ago
main-hi.json fix(polls/web) check for duplicate poll options (#14541) 1 year ago
main-hr.json fix(polls/web) check for duplicate poll options (#14541) 1 year ago
main-hsb.json fix(polls/web) check for duplicate poll options (#14541) 1 year ago
main-hu.json feat(web) add config to hide login button on WaitForOwnerDialog 1 year ago
main-hy.json fix(polls/web) check for duplicate poll options (#14541) 1 year ago
main-id.json lang: add indonesian translation (#14836) 11 months ago
main-is.json fix(polls/web) check for duplicate poll options (#14541) 1 year ago
main-it.json fix(polls/web) check for duplicate poll options (#14541) 1 year ago
main-ja.json fix(polls/web) check for duplicate poll options (#14541) 1 year ago
main-kab.json fix(polls/web) check for duplicate poll options (#14541) 1 year ago
main-ko.json fix(polls/web) check for duplicate poll options (#14541) 1 year ago
main-lt.json fix(polls/web) check for duplicate poll options (#14541) 1 year ago
main-lv.json fix(lang): Update Latvian language translation 9 months ago
main-ml.json fix(polls/web) check for duplicate poll options (#14541) 1 year ago
main-mn.json fix(polls/web) check for duplicate poll options (#14541) 1 year ago
main-mr.json fix(polls/web) check for duplicate poll options (#14541) 1 year ago
main-nl.json fix(polls/web) check for duplicate poll options (#14541) 1 year ago
main-oc.json fix(polls/web) check for duplicate poll options (#14541) 1 year ago
main-pl.json fix(polls/web) check for duplicate poll options (#14541) 1 year ago
main-pt.json fix(lang) update Portuguese translation 9 months ago
main-ptBR.json fix(polls/web) check for duplicate poll options (#14541) 1 year ago
main-ro.json fix(polls/web) check for duplicate poll options (#14541) 1 year ago
main-ru.json Update main-ru.json fix lang 1 year ago
main-sc.json fix(polls/web) check for duplicate poll options (#14541) 1 year ago
main-sk.json fix(polls/web) check for duplicate poll options (#14541) 1 year ago
main-sl.json fix(polls/web) check for duplicate poll options (#14541) 1 year ago
main-sq.json fix(polls/web) check for duplicate poll options (#14541) 1 year ago
main-sr.json fix(polls/web) check for duplicate poll options (#14541) 1 year ago
main-sv.json fix(polls/web) check for duplicate poll options (#14541) 1 year ago
main-te.json fix(polls/web) check for duplicate poll options (#14541) 1 year ago
main-tr.json lang: added new tr translations (#14908) 11 months ago
main-uk.json fix(polls/web) check for duplicate poll options (#14541) 1 year ago
main-vi.json feat(web) add config to hide login button on WaitForOwnerDialog 1 year ago
main-zhCN.json fix(polls/web) check for duplicate poll options (#14541) 1 year ago
main-zhTW.json fix(polls/web) check for duplicate poll options (#14541) 1 year ago
main.json feat(shared-video): Allow only whitelisted URLs. 9 months ago
readme.md fix(docs) set proper language for codeblocks in lang/readme.md 2 years ago
translation-languages.json feat(lang) add upper sorbian to transcription languages 1 year ago
update-translation.js feat(lang) add helper script for manual translations 4 years ago

readme.md

Jitsi Meet Translation

Jitsi Meet uses i18next library for translation. i18next uses separate json files for each language.

Translating Jitsi Meet

The translation of Jitsi Meet is handled editing manually the language files.

You can use the update-translation.js script as follows to help you with that:

cd lang
node update-translation.js main-es.json

That will cause the main-es.json file to be updated with all the missing keys set as empty strings. All that's missing is for you to fill in the blanks!

Development

If you want to add new functionality for Jitsi Meet and you have texts that need to be translated you must add key and value in main.json file in English for each translatable text. Than you can use the key to get the translated text for the current language.

You can add translatable text in the HTML:

  • via attribute on HTML element - add data-i18n attribute with value the key of the translatable text.
<span data-i18n="dialog.OK">OK</span>

You can also use APP.translation.generateTranslationHTML(key, options) to get this HTML code as Javascript string.

APP.translation.generateTranslationHTML("dialog.OK") // returns <span data-i18n="dialog.OK">OK</span>

The value in the options parameter will be added in data-i18n-options attribute of the element.

Note: If you dynamically add HTML elements don't forget to call APP.translation.translateElement(jquery_selector) to translate the text initially.

APP.translation.translateString("dialog.OK") // returns the value for the key of the current language file. "OK" for example.

For the available values of options parameter for the above methods of translation module see i18next documentation.

Note: It is useful to add attributes in the HTML for persistent HTML elements because when the language is changed the text will be automatically translated.