diff --git a/README.md b/README.md index dbeadaa..0f622d7 100644 --- a/README.md +++ b/README.md @@ -170,6 +170,12 @@ sudo apt-get install libnss3 +## Translations + +The json files are for all the strings inside the application and can be translated [here](/app/i18n/lang). + +New translations require the addition of a line in [index.js](/app/i18n/index.js). + ## License Apache 2. See the [LICENSE] file. diff --git a/app/i18n/index.js b/app/i18n/index.js index 50405b6..3e5ab79 100644 --- a/app/i18n/index.js +++ b/app/i18n/index.js @@ -10,9 +10,9 @@ const languages = { gl: { translation: require('./lang/gl.json') }, hu: { translation: require('./lang/hu.json') }, it: { translation: require('./lang/it.json') }, + nl: { translation: require('./lang/nl.json') }, pt: { translation: require('./lang/pt-br.json') }, ru: { translation: require('./lang/ru.json') }, - nl: { translation: require('./lang/nl.json') }, sq: { translation: require('./lang/sq.json') } }; diff --git a/app/i18n/lang/hu.json b/app/i18n/lang/hu.json index 0a3ea76..355648b 100644 --- a/app/i18n/lang/hu.json +++ b/app/i18n/lang/hu.json @@ -4,10 +4,11 @@ "help": "Súgó", "termsLink": "Feltételek", "privacyLink": "Adatvédelem", + "recentListLabel": "vagy csatlakozzon újra az egyik legutóbbi konferenciateremhez", "sendFeedbackLink": "Visszajelzés", "aboutLink": "Névjegy", "sourceLink": "Forráskód", - "versionLabel": "Változat: {{version}}", + "versionLabel": "Verzió: {{version}}", "onboarding": { "startTour": "Bemutató indítása", "skip": "Kihagyás", @@ -26,7 +27,7 @@ "settings": { "back": "Vissza", "name": "Név", - "email": "E-mail", + "email": "E-mail-cím", "advancedSettings": "Haladó beállítások", "alwaysOnTopWindow": "Mindig látható", "startWithAudioMuted": "Elnémítva kezd", @@ -34,6 +35,7 @@ "invalidServer": "Érvénytelen kiszolgáló URL-címe", "invalidServerTimeout": "A kiszolgáló időkorlátja érvénytelen", "serverUrl": "Kiszolgáló URL-címe", - "serverTimeout": "Kiszolgálói időkorlát (másodperc)" + "serverTimeout": "Kiszolgálói időkorlát (másodperc)", + "disableAGC": "Önműködő erősítésvezérlés letiltása" } }