From 5b31589b3ab56112940b1ccd9852ff82aa49088c Mon Sep 17 00:00:00 2001 From: "J. Ryan Stinnett" Date: Mon, 13 Jul 2020 14:12:44 +0100 Subject: [PATCH 01/10] Use brand name from config in all strings --- src/async-components/structures/CompatibilityView.tsx | 8 ++++++-- src/i18n/strings/en_EN.json | 10 +++++----- src/vector/index.ts | 8 +++++--- src/vector/platform/ElectronPlatform.tsx | 7 ++++++- 4 files changed, 22 insertions(+), 11 deletions(-) diff --git a/src/async-components/structures/CompatibilityView.tsx b/src/async-components/structures/CompatibilityView.tsx index 07bee042ee..b42c3f7fd0 100644 --- a/src/async-components/structures/CompatibilityView.tsx +++ b/src/async-components/structures/CompatibilityView.tsx @@ -16,6 +16,7 @@ limitations under the License. import * as React from "react"; import { _t } from "matrix-react-sdk/src/languageHandler"; +import SdkConfig from 'matrix-react-sdk/src/SdkConfig'; // directly import the style here as this layer does not support rethemedex at this time so no matrix-react-sdk // scss variables will be accessible. @@ -26,6 +27,7 @@ interface IProps { } const CompatibilityView: React.FC = ({ onAccept }) => { + const brand = SdkConfig.get().brand; return
@@ -38,10 +40,12 @@ const CompatibilityView: React.FC = ({ onAccept }) => {
-

{ _t("Your browser can't run Riot") }

+

{ _t("Your browser can't run %(brand)s", { brand }) }

{ _t( - "Riot uses advanced browser features which aren't supported by your current browser.", + "%(brand)s uses advanced browser features which aren't " + + "supported by your current browser.", + { brand }, ) }

diff --git a/src/i18n/strings/en_EN.json b/src/i18n/strings/en_EN.json index d2a95c8daf..952ac7e4f1 100644 --- a/src/i18n/strings/en_EN.json +++ b/src/i18n/strings/en_EN.json @@ -2,8 +2,8 @@ "Missing indexeddb worker script!": "Missing indexeddb worker script!", "Invalid configuration: can only specify one of default_server_config, default_server_name, or default_hs_url.": "Invalid configuration: can only specify one of default_server_config, default_server_name, or default_hs_url.", "Invalid configuration: no default server specified.": "Invalid configuration: no default server specified.", - "Your Riot is misconfigured": "Your Riot is misconfigured", - "Your Riot configuration contains invalid JSON. Please correct the problem and reload the page.": "Your Riot configuration contains invalid JSON. Please correct the problem and reload the page.", + "Your Element is misconfigured": "Your Element is misconfigured", + "Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "Your Element configuration contains invalid JSON. Please correct the problem and reload the page.", "The message from the parser is: %(message)s": "The message from the parser is: %(message)s", "Invalid JSON": "Invalid JSON", "Unable to load config file: please refresh the page to try again.": "Unable to load config file: please refresh the page to try again.", @@ -13,7 +13,7 @@ "Dismiss": "Dismiss", "Open user settings": "Open user settings", "Previous/next recently visited room or community": "Previous/next recently visited room or community", - "Riot Desktop (%(platformName)s)": "Riot Desktop (%(platformName)s)", + "%(brand)s Desktop (%(platformName)s)": "%(brand)s Desktop (%(platformName)s)", "Go to your browser to complete Sign In": "Go to your browser to complete Sign In", "Unknown device": "Unknown device", "%(appName)s (%(browserName)s, %(osName)s)": "%(appName)s (%(browserName)s, %(osName)s)", @@ -22,8 +22,8 @@ "Custom Server Options": "Custom Server Options", "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.", "Unsupported browser": "Unsupported browser", - "Your browser can't run Riot": "Your browser can't run Riot", - "Riot uses advanced browser features which aren't supported by your current browser.": "Riot uses advanced browser features which aren't supported by your current browser.", + "Your browser can't run %(brand)s": "Your browser can't run %(brand)s", + "%(brand)s uses advanced browser features which aren't supported by your current browser.": "%(brand)s uses advanced browser features which aren't supported by your current browser.", "Please install Chrome, Firefox, or Safari for the best experience.": "Please install Chrome, Firefox, or Safari for the best experience.", "You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.", "I understand the risks and wish to continue": "I understand the risks and wish to continue", diff --git a/src/vector/index.ts b/src/vector/index.ts index b3e25a5893..e4701cede1 100644 --- a/src/vector/index.ts +++ b/src/vector/index.ts @@ -173,8 +173,9 @@ async function start() { } catch (error) { // Now that we've loaded the theme (CSS), display the config syntax error if needed. if (error.err && error.err instanceof SyntaxError) { - return showError(_t("Your Riot is misconfigured"), [ - _t("Your Riot configuration contains invalid JSON. Please correct the problem and reload the page."), + // This uses the default brand since the app config is unavailable. + return showError(_t("Your Element is misconfigured"), [ + _t("Your Element configuration contains invalid JSON. Please correct the problem and reload the page."), _t("The message from the parser is: %(message)s", { message: error.err.message || _t("Invalid JSON")}), ]); } @@ -196,7 +197,8 @@ async function start() { } catch (err) { console.error(err); // Like the compatibility page, AWOOOOOGA at the user - await showError(_t("Your Riot is misconfigured"), [ + // This uses the default brand since the app config is unavailable. + await showError(_t("Your Element is misconfigured"), [ err.translatedMessage || _t("Unexpected error preparing the app. See console for details."), ]); } diff --git a/src/vector/platform/ElectronPlatform.tsx b/src/vector/platform/ElectronPlatform.tsx index c356e0b052..e777e9b586 100644 --- a/src/vector/platform/ElectronPlatform.tsx +++ b/src/vector/platform/ElectronPlatform.tsx @@ -31,6 +31,7 @@ import BaseEventIndexManager, { } from 'matrix-react-sdk/src/indexing/BaseEventIndexManager'; import dis from 'matrix-react-sdk/src/dispatcher/dispatcher'; import {_t, _td} from 'matrix-react-sdk/src/languageHandler'; +import SdkConfig from 'matrix-react-sdk/src/SdkConfig'; import * as rageshake from 'matrix-react-sdk/src/rageshake/rageshake'; import {MatrixClient} from "matrix-js-sdk/src/client"; import {Room} from "matrix-js-sdk/src/models/room"; @@ -437,7 +438,11 @@ export default class ElectronPlatform extends VectorBasePlatform { } getDefaultDeviceDisplayName(): string { - return _t('Riot Desktop (%(platformName)s)', { platformName: platformFriendlyName() }); + const brand = SdkConfig.get().brand; + return _t('%(brand)s Desktop (%(platformName)s)', { + brand, + platformName: platformFriendlyName(), + }); } screenCaptureErrorString(): string | null { From 5a344253606676442b4c62fe3a228f796936f24b Mon Sep 17 00:00:00 2001 From: "J. Ryan Stinnett" Date: Mon, 13 Jul 2020 14:21:07 +0100 Subject: [PATCH 02/10] Replace brand name in existing translations --- src/i18n/strings/ar.json | 2 +- src/i18n/strings/az.json | 2 +- src/i18n/strings/bg.json | 4 ++-- src/i18n/strings/ca.json | 2 +- src/i18n/strings/cs.json | 2 +- src/i18n/strings/cy.json | 2 +- src/i18n/strings/da.json | 2 +- src/i18n/strings/de_DE.json | 4 ++-- src/i18n/strings/el.json | 2 +- src/i18n/strings/en_US.json | 2 +- src/i18n/strings/eo.json | 4 ++-- src/i18n/strings/es.json | 4 ++-- src/i18n/strings/et.json | 4 ++-- src/i18n/strings/eu.json | 4 ++-- src/i18n/strings/fa.json | 2 +- src/i18n/strings/fi.json | 4 ++-- src/i18n/strings/fr.json | 4 ++-- src/i18n/strings/ga.json | 2 +- src/i18n/strings/gl.json | 4 ++-- src/i18n/strings/he.json | 2 +- src/i18n/strings/hi.json | 2 +- src/i18n/strings/hr.json | 2 +- src/i18n/strings/hu.json | 4 ++-- src/i18n/strings/id.json | 2 +- src/i18n/strings/is.json | 2 +- src/i18n/strings/it.json | 4 ++-- src/i18n/strings/ja.json | 4 ++-- src/i18n/strings/jbo.json | 2 +- src/i18n/strings/ka.json | 2 +- src/i18n/strings/kab.json | 2 +- src/i18n/strings/ko.json | 4 ++-- src/i18n/strings/lt.json | 4 ++-- src/i18n/strings/lv.json | 2 +- src/i18n/strings/ml.json | 2 +- src/i18n/strings/mn.json | 2 +- src/i18n/strings/nb_NO.json | 2 +- src/i18n/strings/nl.json | 4 ++-- src/i18n/strings/nn.json | 2 +- src/i18n/strings/oc.json | 2 +- src/i18n/strings/pl.json | 4 ++-- src/i18n/strings/pt.json | 2 +- src/i18n/strings/pt_BR.json | 4 ++-- src/i18n/strings/ro.json | 4 ++-- src/i18n/strings/ru.json | 4 ++-- src/i18n/strings/sk.json | 4 ++-- src/i18n/strings/sl.json | 2 +- src/i18n/strings/sq.json | 4 ++-- src/i18n/strings/sr.json | 2 +- src/i18n/strings/sr_Latn.json | 2 +- src/i18n/strings/sv.json | 4 ++-- src/i18n/strings/ta.json | 2 +- src/i18n/strings/te.json | 2 +- src/i18n/strings/th.json | 2 +- src/i18n/strings/tr.json | 2 +- src/i18n/strings/uk.json | 2 +- src/i18n/strings/vi.json | 2 +- src/i18n/strings/vls.json | 2 +- src/i18n/strings/zh_Hans.json | 4 ++-- src/i18n/strings/zh_Hant.json | 4 ++-- 59 files changed, 83 insertions(+), 83 deletions(-) diff --git a/src/i18n/strings/ar.json b/src/i18n/strings/ar.json index 0942600eca..31b863a692 100644 --- a/src/i18n/strings/ar.json +++ b/src/i18n/strings/ar.json @@ -1,7 +1,7 @@ { "Custom Server Options": "الإعدادات الشخصية للخادوم", "Dismiss": "تجاهل", - "Riot Desktop on %(platformName)s": "الواجهة المكتبية لرايوت على %(platformName)s", + "%(brand)s Desktop on %(platformName)s": "الواجهة المكتبية لرايوت على %(platformName)s", "Unknown device": "جهاز مجهول", "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s عبر %(browserName)s على %(osName)s", "You need to be using HTTPS to place a screen-sharing call.": "تحتاج الى استخدام الاتصال الآمن (HTTPS) للسماح بمشاركة الشاشة.", diff --git a/src/i18n/strings/az.json b/src/i18n/strings/az.json index 9773436fa1..d4582c0737 100644 --- a/src/i18n/strings/az.json +++ b/src/i18n/strings/az.json @@ -1,5 +1,5 @@ { - "Riot Desktop on %(platformName)s": "%(platformName)s-da Riot Desktop", + "%(brand)s Desktop on %(platformName)s": "%(platformName)s-da %(brand)s Desktop", "Unknown device": "Naməlum qurğu", "You need to be using HTTPS to place a screen-sharing call.": "İş stolunun birgə istifadəsi üçün HTTPS-dan istifadə tələb olunur.", "Your Riot configuration contains invalid JSON. Please correct the problem and reload the page.": "Riot konfiqurasiyanızda yanlış JSON var. Lütfən, xətanı düzəldin və səhifəni yeniləyin.", diff --git a/src/i18n/strings/bg.json b/src/i18n/strings/bg.json index 8580d111a1..39e39c4c1f 100644 --- a/src/i18n/strings/bg.json +++ b/src/i18n/strings/bg.json @@ -1,5 +1,5 @@ { - "Riot Desktop on %(platformName)s": "Riot Desktop под %(platformName)s", + "%(brand)s Desktop on %(platformName)s": "%(brand)s Desktop под %(platformName)s", "Unknown device": "Непознато устройство", "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s в %(browserName)s под %(osName)s", "You need to be using HTTPS to place a screen-sharing call.": "Трябва да използвате HTTPS, за да споделите екрана си.", @@ -27,7 +27,7 @@ "Missing indexeddb worker script!": "Липсва indexdb worker скриптът!", "Unable to load config file: please refresh the page to try again.": "Неуспешно зареждане на конфигурационния файл: презаредете страницата за да опитате пак.", "Previous/next recently visited room or community": "Предишна/следваща наскоро-посетена стая или общност", - "Riot Desktop (%(platformName)s)": "Riot Desktop (%(platformName)s)", + "%(brand)s Desktop (%(platformName)s)": "%(brand)s Desktop (%(platformName)s)", "%(appName)s (%(browserName)s, %(osName)s)": "%(appName)s (%(browserName)s, %(osName)s)", "Unsupported browser": "Неподдържан браузър", "Your browser can't run Riot": "Браузърът ви не може да подкара Riot", diff --git a/src/i18n/strings/ca.json b/src/i18n/strings/ca.json index 6b8a9991b9..06103be0b3 100644 --- a/src/i18n/strings/ca.json +++ b/src/i18n/strings/ca.json @@ -5,7 +5,7 @@ "Unknown device": "Dispositiu desconegut", "Welcome to Riot.im": "Us donem la benvinguda a Riot.im", "Chat with Riot Bot": "Conversa amb el Bot de Riot", - "Riot Desktop on %(platformName)s": "Riot d'escriptori per a %(platformName)s", + "%(brand)s Desktop on %(platformName)s": "Riot d'escriptori per a %(platformName)s", "You need to be using HTTPS to place a screen-sharing call.": "Heu d'utilitzar HTTPS per poder fer una trucada amb pantalla compartida.", "powered by Matrix": "amb tecnologia de Matrix", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Xat descentralitzat, encriptat i col·laboratiu amb tecnologia de [matrix]", diff --git a/src/i18n/strings/cs.json b/src/i18n/strings/cs.json index 334cf3f940..d2f5f9184b 100644 --- a/src/i18n/strings/cs.json +++ b/src/i18n/strings/cs.json @@ -5,7 +5,7 @@ "Chat with Riot Bot": "Konverzovat s Riot Botem", "Dismiss": "Zahodit", "powered by Matrix": "používá protokol Matrix", - "Riot Desktop on %(platformName)s": "Riot Desktop pro %(platformName)s", + "%(brand)s Desktop on %(platformName)s": "%(brand)s Desktop pro %(platformName)s", "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s přes %(browserName)s na %(osName)s", "Custom Server Options": "Vlastní nastavení serveru", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Decentralizovaný, šifrovaný chat a spolupráce na platformě [matrix]", diff --git a/src/i18n/strings/cy.json b/src/i18n/strings/cy.json index 85986d02da..69bd58db85 100644 --- a/src/i18n/strings/cy.json +++ b/src/i18n/strings/cy.json @@ -6,7 +6,7 @@ "Unexpected error preparing the app. See console for details.": "Gwall annisgwyl wrth baratoi'r app. Gweler y consol am fanylion.", "Invalid configuration: can only specify one of default_server_config, default_server_name, or default_hs_url.": "Gosodiad annilys: dim ond un o default_server_config, default_server_name, neu default_hs_url y gall ei nodi.", "Invalid configuration: no default server specified.": "Gosodiad annilys: ni nodwyd gweinydd diofyn.", - "Riot Desktop on %(platformName)s": "Riot Cyfrifiadur ar %(platformName)s", + "%(brand)s Desktop on %(platformName)s": "Riot Cyfrifiadur ar %(platformName)s", "Unknown device": "Dyfais anhysbys", "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s trwy %(browserName)s ar %(osName)s", "You need to be using HTTPS to place a screen-sharing call.": "Mae angen i chi fod yn defnyddio HTTPS i osod galwad rhannu sgrin.", diff --git a/src/i18n/strings/da.json b/src/i18n/strings/da.json index b8bdf8ceac..4fe0f05260 100644 --- a/src/i18n/strings/da.json +++ b/src/i18n/strings/da.json @@ -2,7 +2,7 @@ "Custom Server Options": "Brugerdefinerede serverindstillinger", "Dismiss": "Afslut", "powered by Matrix": "Drevet af Matrix", - "Riot Desktop on %(platformName)s": "Riot Desktop på %(platformName)s", + "%(brand)s Desktop on %(platformName)s": "%(brand)s Desktop på %(platformName)s", "Unknown device": "Ukendt enhed", "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s via %(browserName)s på %(osName)s", "You need to be using HTTPS to place a screen-sharing call.": "Du skal bruge HTTPS for at lave skærmdelings opkald.", diff --git a/src/i18n/strings/de_DE.json b/src/i18n/strings/de_DE.json index 4845643794..4a800a6e8d 100644 --- a/src/i18n/strings/de_DE.json +++ b/src/i18n/strings/de_DE.json @@ -3,7 +3,7 @@ "Custom Server Options": "Benutzerdefinierte Server-Optionen", "Dismiss": "Ablehnen", "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s via %(browserName)s auf %(osName)s", - "Riot Desktop on %(platformName)s": "Riot Desktop auf %(platformName)s", + "%(brand)s Desktop on %(platformName)s": "%(brand)s Desktop auf %(platformName)s", "Unknown device": "Unbekanntes Gerät", "You need to be using HTTPS to place a screen-sharing call.": "Du musst HTTPS nutzen um einen Anruf mit Bildschirmfreigabe durchzuführen.", "Welcome to Riot.im": "Willkommen bei Riot.im", @@ -32,7 +32,7 @@ "Riot uses advanced browser features which aren't supported by your current browser.": "Riot nutzt fortgeschrittene Browser-Eigenschaften, die dein aktueller Browser nicht unterstützt.", "Go to Riot.im": "Gehe zu Riot.im", "Failed to start": "Start fehlgeschlagen", - "Riot Desktop (%(platformName)s)": "Riot Desktop (%(platformName)s)", + "%(brand)s Desktop (%(platformName)s)": "%(brand)s Desktop (%(platformName)s)", "%(appName)s (%(browserName)s, %(osName)s)": "%(appName)s (%(browserName)s, %(osName)s)", "Please install Chrome, Firefox, or Safari for the best experience.": "Bitte installiere Chrome, Firefox, oder Safari für das beste Erlebnis.", "You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Du kannst mit diesem Browser weitermachen, aber einiges könnte nicht funktionieren und die Darstellung könnte fehlerhaft sein.", diff --git a/src/i18n/strings/el.json b/src/i18n/strings/el.json index d4b2268ec9..ff9855a6e7 100644 --- a/src/i18n/strings/el.json +++ b/src/i18n/strings/el.json @@ -2,7 +2,7 @@ "Custom Server Options": "Προσαρμοσμένες ρυθμίσεις διακομιστή", "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s μέσω %(browserName)s σε %(osName)s", "Dismiss": "Απόρριψη", - "Riot Desktop on %(platformName)s": "Riot Desktop σε %(platformName)s", + "%(brand)s Desktop on %(platformName)s": "%(brand)s Desktop σε %(platformName)s", "Unknown device": "Άγνωστη συσκευή", "You need to be using HTTPS to place a screen-sharing call.": "Απαιτείται η χρήση HTTPS για την πραγματοποίηση κλήσης διαμοιρασμού επιφάνειας εργασίας.", "powered by Matrix": "λειτουργεί με το Matrix", diff --git a/src/i18n/strings/en_US.json b/src/i18n/strings/en_US.json index fb3b824aa6..7e8d5d62ed 100644 --- a/src/i18n/strings/en_US.json +++ b/src/i18n/strings/en_US.json @@ -3,7 +3,7 @@ "Custom Server Options": "Custom Server Options", "Dismiss": "Dismiss", "powered by Matrix": "powered by Matrix", - "Riot Desktop on %(platformName)s": "Riot Desktop on %(platformName)s", + "%(brand)s Desktop on %(platformName)s": "%(brand)s Desktop on %(platformName)s", "Unknown device": "Unknown device", "You need to be using HTTPS to place a screen-sharing call.": "You need to be using HTTPS to place a screen-sharing call.", "Welcome to Riot.im": "Welcome to Riot.im", diff --git a/src/i18n/strings/eo.json b/src/i18n/strings/eo.json index 98c8edda2c..a9f079cf1c 100644 --- a/src/i18n/strings/eo.json +++ b/src/i18n/strings/eo.json @@ -2,7 +2,7 @@ "Dismiss": "Rezigni", "powered by Matrix": "povigita per Matrix", "Custom Server Options": "Propraj servilaj elektoj", - "Riot Desktop on %(platformName)s": "Riot Labortablo sur %(platformName)s", + "%(brand)s Desktop on %(platformName)s": "Riot Labortablo sur %(platformName)s", "Unknown device": "Nekonata aparato", "You need to be using HTTPS to place a screen-sharing call.": "Vi devas uzi HTTPS por ekranvidadi.", "Welcome to Riot.im": "Bonvenon al Riot.im", @@ -27,7 +27,7 @@ "Unable to load config file: please refresh the page to try again.": "Ne povas enlegi agordan dosieron: bonvolu reprovi per aktualigo de la paĝo.", "Previous/next recently visited room or community": "Antaŭa/sekva freŝe vizitita ĉambro aŭ komunumo", "Missing indexeddb worker script!": "Mankas fonskripto «indexeddb»!", - "Riot Desktop (%(platformName)s)": "Riot labortabla (%(platformName)s)", + "%(brand)s Desktop (%(platformName)s)": "Riot labortabla (%(platformName)s)", "%(appName)s (%(browserName)s, %(osName)s)": "%(appName)s (%(browserName)s, %(osName)s)", "Unsupported browser": "Nesubtenata foliumilo", "Your browser can't run Riot": "Via foliumilo ne povas ruli Rioton", diff --git a/src/i18n/strings/es.json b/src/i18n/strings/es.json index 8bb48e0dba..c1035f85cb 100644 --- a/src/i18n/strings/es.json +++ b/src/i18n/strings/es.json @@ -4,7 +4,7 @@ "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s via %(browserName)s en %(osName)s", "Dismiss": "Omitir", "powered by Matrix": "con el poder de Matrix", - "Riot Desktop on %(platformName)s": "Riot Desktop en %(platformName)s", + "%(brand)s Desktop on %(platformName)s": "%(brand)s Desktop en %(platformName)s", "You need to be using HTTPS to place a screen-sharing call.": "Debes usar HTTPS para hacer una llamada con pantalla compartida.", "Welcome to Riot.im": "Bienvenido a Riot.im", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Conversaciones cifradas y descentralizadas y colaboración con el poder de [matrix]", @@ -27,7 +27,7 @@ "Missing indexeddb worker script!": "¡Worker script “indexeddb” faltante!", "Unable to load config file: please refresh the page to try again.": "No se ha podido cargar el archivo de configuración. Recarga la página para intentar nuevamente.", "Previous/next recently visited room or community": "Anterior/siguiente sala o comunidad visitada recientemente", - "Riot Desktop (%(platformName)s)": "Riot Desktop (%(platformName)s)", + "%(brand)s Desktop (%(platformName)s)": "%(brand)s Desktop (%(platformName)s)", "%(appName)s (%(browserName)s, %(osName)s)": "%(appName)s (%(browserName)s, %(osName)s)", "Unsupported browser": "Navegador no soportado", "Your browser can't run Riot": "Tu navegador no puede ejecutar Riot", diff --git a/src/i18n/strings/et.json b/src/i18n/strings/et.json index ff98ac5b3c..70718c1b70 100644 --- a/src/i18n/strings/et.json +++ b/src/i18n/strings/et.json @@ -16,7 +16,7 @@ "Missing indexeddb worker script!": "Lahendusest puudub indexeddb skript!", "Invalid configuration: can only specify one of default_server_config, default_server_name, or default_hs_url.": "Vigane seadistus. Sa võid määrata vaid ühe alljärgnevatest: default_server_config, default_server_name või default_hs_url.", "Previous/next recently visited room or community": "Eelmine/järgmine hiljuti kasutatud jututuba või kogukond", - "Riot Desktop on %(platformName)s": "Riot Desktop, %(platformName)s", + "%(brand)s Desktop on %(platformName)s": "%(brand)s Desktop, %(platformName)s", "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s, %(browserName)s, %(osName)s", "You need to be using HTTPS to place a screen-sharing call.": "Ekraani jagava kõne jaoks pead kasutama HTTPS-ühendust.", "powered by Matrix": "põhineb Matrix'il", @@ -27,7 +27,7 @@ "Create Account": "Loo konto", "Need help?": "Kas vajad abi?", "Room Directory": "Jututubade loend", - "Riot Desktop (%(platformName)s)": "Riot'i töölauaversioon (%(platformName)s)", + "%(brand)s Desktop (%(platformName)s)": "Riot'i töölauaversioon (%(platformName)s)", "%(appName)s (%(browserName)s, %(osName)s)": "%(appName)s (%(browserName)s, %(osName)s)", "Unsupported browser": "Sellele brauserile puudub tugi", "Your browser can't run Riot": "Riot ei tööta sinu brauseris", diff --git a/src/i18n/strings/eu.json b/src/i18n/strings/eu.json index 6ee009b4a1..5b97198e41 100644 --- a/src/i18n/strings/eu.json +++ b/src/i18n/strings/eu.json @@ -3,7 +3,7 @@ "Custom Server Options": "Zerbitzari pertsonalizatuaren aukerak", "Dismiss": "Baztertu", "powered by Matrix": "Matrix mamian", - "Riot Desktop on %(platformName)s": "Riot Desktop %(platformName)s plataforman", + "%(brand)s Desktop on %(platformName)s": "%(brand)s Desktop %(platformName)s plataforman", "Unknown device": "Gailu ezezaguna", "You need to be using HTTPS to place a screen-sharing call.": "HTTPS erabili behar duzu sekretuak partekatzeko dei bat ezartzeko.", "Welcome to Riot.im": "Ongi etorri Riot.im mezularitzara", @@ -27,7 +27,7 @@ "Missing indexeddb worker script!": "indexeddb langile scripta falta da!", "Unable to load config file: please refresh the page to try again.": "Ezin izan da konfigurazio fitxategia kargatu: Saiatu orria birkargatzen.", "Previous/next recently visited room or community": "Berriki bisitatutako aurreko/hurrengo gela edo komunitatea", - "Riot Desktop (%(platformName)s)": "Riot Desktop (%(platformName)s)", + "%(brand)s Desktop (%(platformName)s)": "%(brand)s Desktop (%(platformName)s)", "%(appName)s (%(browserName)s, %(osName)s)": "%(appName)s (%(browserName)s, %(osName)s)", "Unsupported browser": "Onartu gabeko nabigatzailea", "Your browser can't run Riot": "Zure nabigatzaileak ezin du Riot abiatu", diff --git a/src/i18n/strings/fa.json b/src/i18n/strings/fa.json index 4b0496ebb8..56858e2330 100644 --- a/src/i18n/strings/fa.json +++ b/src/i18n/strings/fa.json @@ -1,6 +1,6 @@ { "powered by Matrix": "قدرت‌یافته از ماتریکس", - "Riot Desktop on %(platformName)s": "رایوت دسکتاپ بر %(platformName)s", + "%(brand)s Desktop on %(platformName)s": "رایوت دسکتاپ بر %(platformName)s", "Unknown device": "دستگاه ناشناخته", "Welcome to Riot.im": "به Riot.im خوش‌آمدید", "Chat with Riot Bot": "با رایوت‌بات چت کنید", diff --git a/src/i18n/strings/fi.json b/src/i18n/strings/fi.json index 1195c664df..5863e155ab 100644 --- a/src/i18n/strings/fi.json +++ b/src/i18n/strings/fi.json @@ -3,7 +3,7 @@ "Unknown device": "Tuntematon laite", "Welcome to Riot.im": "Tervetuloa Riot.im-sovellukseen", "Custom Server Options": "Palvelinasetukset", - "Riot Desktop on %(platformName)s": "Riot Desktop, %(platformName)s", + "%(brand)s Desktop on %(platformName)s": "%(brand)s Desktop, %(platformName)s", "You need to be using HTTPS to place a screen-sharing call.": "Sinun täytyy käyttää HTTPS-yhteyttä, jotta voit jakaa ruudun puhelussa.", "Chat with Riot Bot": "Keskustele Riot-botin kanssa", "powered by Matrix": "moottorina Matrix", @@ -26,7 +26,7 @@ "Unable to load config file: please refresh the page to try again.": "Asetustiedostoa ei voi ladata. Yritä uudelleen lataamalla sivu uudelleen.", "Open user settings": "Avaa käyttäjäasetukset", "Previous/next recently visited room or community": "Edellinen/seuraava hiljattain vierailtu huone tai yhteisö", - "Riot Desktop (%(platformName)s)": "Riotin työpöytäversio (%(platformName)s)", + "%(brand)s Desktop (%(platformName)s)": "Riotin työpöytäversio (%(platformName)s)", "Go to your browser to complete Sign In": "Tee kirjautuminen loppuun selaimessasi", "%(appName)s (%(browserName)s, %(osName)s)": "%(appName)s (%(browserName)s, %(osName)s)", "Unsupported browser": "Selainta ei tueta", diff --git a/src/i18n/strings/fr.json b/src/i18n/strings/fr.json index 63ee73c169..9a65af19ad 100644 --- a/src/i18n/strings/fr.json +++ b/src/i18n/strings/fr.json @@ -3,7 +3,7 @@ "Dismiss": "Ignorer", "powered by Matrix": "propulsé par Matrix", "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s dans %(browserName)s sous %(osName)s", - "Riot Desktop on %(platformName)s": "Version bureau de Riot sur %(platformName)s", + "%(brand)s Desktop on %(platformName)s": "Version bureau de Riot sur %(platformName)s", "Unknown device": "Appareil inconnu", "You need to be using HTTPS to place a screen-sharing call.": "Vous devez utiliser HTTPS pour effectuer un appel avec partage d’écran.", "Welcome to Riot.im": "Bienvenue sur Riot.im", @@ -36,7 +36,7 @@ "I understand the risks and wish to continue": "Je comprends les risques et souhaite continuer", "Go to Riot.im": "Aller vers Riot.im", "Failed to start": "Échec au démarrage", - "Riot Desktop (%(platformName)s)": "Riot pour bureau (%(platformName)s)", + "%(brand)s Desktop (%(platformName)s)": "Riot pour bureau (%(platformName)s)", "Download Completed": "Téléchargement terminé", "Open": "Ouvrir" } diff --git a/src/i18n/strings/ga.json b/src/i18n/strings/ga.json index fe8bfaf7be..c65c56118b 100644 --- a/src/i18n/strings/ga.json +++ b/src/i18n/strings/ga.json @@ -1,5 +1,5 @@ { - "Riot Desktop on %(platformName)s": "Leagan gnáthríomhaire Riot ar %(platformName)s", + "%(brand)s Desktop on %(platformName)s": "Leagan gnáthríomhaire Riot ar %(platformName)s", "Unknown device": "Gléas nár aithníodh", "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s trí %(browserName)s ar %(osName)s", "You need to be using HTTPS to place a screen-sharing call.": "Ní mór HTTPS a úsáid chun glaoch comhroinnt scáileáin a chur.", diff --git a/src/i18n/strings/gl.json b/src/i18n/strings/gl.json index ed4667d029..1c0c0baa77 100644 --- a/src/i18n/strings/gl.json +++ b/src/i18n/strings/gl.json @@ -3,7 +3,7 @@ "Custom Server Options": "Opcións personalizadas do servidor", "Dismiss": "Rexeitar", "powered by Matrix": "funciona grazas a Matrix", - "Riot Desktop on %(platformName)s": "Riot Desktop en %(platformName)s", + "%(brand)s Desktop on %(platformName)s": "%(brand)s Desktop en %(platformName)s", "Unknown device": "Dispositivo descoñecido", "You need to be using HTTPS to place a screen-sharing call.": "Precisa utilizar HTTPS para establecer unha chamada de pantalla compartida.", "Welcome to Riot.im": "Benvida/o a Riot.im", @@ -26,7 +26,7 @@ "Unable to load config file: please refresh the page to try again.": "Non se cargou o ficheiro de configuración: actualiza a páxina para reintentalo.", "Open user settings": "Abrir axustes da usuaria", "Previous/next recently visited room or community": "Anterior/seguinte sala ou comunidade recentes", - "Riot Desktop (%(platformName)s)": "Riot Desktop (%(platformName)s)", + "%(brand)s Desktop (%(platformName)s)": "%(brand)s Desktop (%(platformName)s)", "Go to your browser to complete Sign In": "Abre o navegador para realizar a Conexión", "%(appName)s (%(browserName)s, %(osName)s)": "%(appName)s (%(browserName)s, %(osName)s)", "Unsupported browser": "Navegador non soportado", diff --git a/src/i18n/strings/he.json b/src/i18n/strings/he.json index f70f77fadb..0dd80a2aef 100644 --- a/src/i18n/strings/he.json +++ b/src/i18n/strings/he.json @@ -2,7 +2,7 @@ "Custom Server Options": "הגדרות שרת מותאמות אישית", "Dismiss": "שחרר", "powered by Matrix": "מופעל ע\"י Matrix", - "Riot Desktop on %(platformName)s": "רייוט לשולחן העבודה על גבי %(platformName)s", + "%(brand)s Desktop on %(platformName)s": "רייוט לשולחן העבודה על גבי %(platformName)s", "Unknown device": "מכשיר לא ידוע", "You need to be using HTTPS to place a screen-sharing call.": "עליך להשתמש ב HTTPS בכדי לבצע שיחת ווידאו משותפת.", "Welcome to Riot.im": "ברוכים הבאים ל Riot.im", diff --git a/src/i18n/strings/hi.json b/src/i18n/strings/hi.json index 7a66bef501..ebfde7893a 100644 --- a/src/i18n/strings/hi.json +++ b/src/i18n/strings/hi.json @@ -1,5 +1,5 @@ { - "Riot Desktop on %(platformName)s": "%(platformName)s पर रायट डेस्कटॉप", + "%(brand)s Desktop on %(platformName)s": "%(platformName)s पर रायट डेस्कटॉप", "Unknown device": "अज्ञात यन्त्र", "%(appName)s via %(browserName)s on %(osName)s": "%(osName)s पर %(browserName)s के माध्यम से %(appName)s", "You need to be using HTTPS to place a screen-sharing call.": "स्क्रीन साझा की कॉल करने के लिए आपको HTTPS का उपयोग करने की आवश्यकता है।", diff --git a/src/i18n/strings/hr.json b/src/i18n/strings/hr.json index 694579423f..f7f03a7532 100644 --- a/src/i18n/strings/hr.json +++ b/src/i18n/strings/hr.json @@ -1,5 +1,5 @@ { - "Riot Desktop on %(platformName)s": "Riot Desktop na %(platformName)s", + "%(brand)s Desktop on %(platformName)s": "%(brand)s Desktop na %(platformName)s", "Unknown device": "Nepoznati uređaj", "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s preko %(browserName)s na %(osName)s", "You need to be using HTTPS to place a screen-sharing call.": "Morate koristiti HTTPS kako biste pokrenuli poziv s dijeljenjem ekrana.", diff --git a/src/i18n/strings/hu.json b/src/i18n/strings/hu.json index 8925b27ef2..6c26d70f97 100644 --- a/src/i18n/strings/hu.json +++ b/src/i18n/strings/hu.json @@ -3,7 +3,7 @@ "Dismiss": "Eltüntetés", "powered by Matrix": "a gépházban: Matrix", "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s alkalmazás %(browserName)s böngészőn %(osName)s rendszeren", - "Riot Desktop on %(platformName)s": "Riot Desktop itt: %(platformName)s", + "%(brand)s Desktop on %(platformName)s": "%(brand)s Desktop itt: %(platformName)s", "Unknown device": "Ismeretlen eszköz", "You need to be using HTTPS to place a screen-sharing call.": "Képernyőmegosztás indításához HTTPS-t kell használnod.", "Welcome to Riot.im": "Üdvözöl a Riot.im", @@ -27,7 +27,7 @@ "Missing indexeddb worker script!": "Hiányzó indexeddb worker parancsfájl!", "Unable to load config file: please refresh the page to try again.": "A konfigurációs fájlt nem sikerült betölteni: frissítsd az oldalt és próbáld meg újra.", "Previous/next recently visited room or community": "Előző/következő nemrég meglátogatott szobák vagy közösségek", - "Riot Desktop (%(platformName)s)": "Asztali Riot (%(platformName)s)", + "%(brand)s Desktop (%(platformName)s)": "Asztali Riot (%(platformName)s)", "%(appName)s (%(browserName)s, %(osName)s)": "%(appName)s (%(browserName)s, %(osName)s)", "Unsupported browser": "A böngésző nem támogatott", "Your browser can't run Riot": "A böngésződ nem tudja futtatni a Riotot", diff --git a/src/i18n/strings/id.json b/src/i18n/strings/id.json index 4a63e4ebd2..6ef0362a14 100644 --- a/src/i18n/strings/id.json +++ b/src/i18n/strings/id.json @@ -3,7 +3,7 @@ "Custom Server Options": "Pilihan Server Khusus", "Dismiss": "Abaikan", "powered by Matrix": "didukung oleh Matrix", - "Riot Desktop on %(platformName)s": "Riot Desktop di %(platformName)s", + "%(brand)s Desktop on %(platformName)s": "%(brand)s Desktop di %(platformName)s", "Unknown device": "Perangkat Tidak Diketahui", "You need to be using HTTPS to place a screen-sharing call.": "Anda perlu menggunakan HTTPS untuk melakukan panggilan berbagi-layar.", "Welcome to Riot.im": "Selamat datang di Riot.im", diff --git a/src/i18n/strings/is.json b/src/i18n/strings/is.json index f716cc23dc..2a15f61366 100644 --- a/src/i18n/strings/is.json +++ b/src/i18n/strings/is.json @@ -2,7 +2,7 @@ "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s með %(browserName)s á %(osName)s", "powered by Matrix": "keyrt með Matrix", "Welcome to Riot.im": "Velkomin í Riot.im", - "Riot Desktop on %(platformName)s": "Riot skjáborðsforrit á %(platformName)s", + "%(brand)s Desktop on %(platformName)s": "Riot skjáborðsforrit á %(platformName)s", "Unknown device": "Óþekkt tæki", "Dismiss": "Hafna", "Custom Server Options": "Sérsniðnir valkostir vefþjóns", diff --git a/src/i18n/strings/it.json b/src/i18n/strings/it.json index 6464e4cad9..fe64b82aa6 100644 --- a/src/i18n/strings/it.json +++ b/src/i18n/strings/it.json @@ -2,7 +2,7 @@ "Custom Server Options": "Opzioni server personalizzate", "Dismiss": "Chiudi", "powered by Matrix": "offerto da Matrix", - "Riot Desktop on %(platformName)s": "Riot Desktop su %(platformName)s", + "%(brand)s Desktop on %(platformName)s": "%(brand)s Desktop su %(platformName)s", "Unknown device": "Dispositivo sconosciuto", "You need to be using HTTPS to place a screen-sharing call.": "Devi usare HTTPS per effettuare una chiamata con la condivisione dello schermo.", "Welcome to Riot.im": "Benvenuti su Riot.im", @@ -27,7 +27,7 @@ "Missing indexeddb worker script!": "Script di lavoro indexeddb mancante!", "Unable to load config file: please refresh the page to try again.": "Impossibile caricare il file di configurazione: ricarica la pagina per riprovare.", "Previous/next recently visited room or community": "Avanti/indietro stanze o comunità visitate di recente", - "Riot Desktop (%(platformName)s)": "Riot Desktop (%(platformName)s)", + "%(brand)s Desktop (%(platformName)s)": "%(brand)s Desktop (%(platformName)s)", "%(appName)s (%(browserName)s, %(osName)s)": "%(appName)s (%(browserName)s, %(osName)s)", "Unsupported browser": "Browser non supportato", "Your browser can't run Riot": "Il tuo browser non può avviare Riot", diff --git a/src/i18n/strings/ja.json b/src/i18n/strings/ja.json index 3dc4d1c219..d3a567fdf6 100644 --- a/src/i18n/strings/ja.json +++ b/src/i18n/strings/ja.json @@ -5,7 +5,7 @@ "Custom Server Options": "カスタムサーバのオプション", "Dismiss": "やめる", "powered by Matrix": "powered by Matrix", - "Riot Desktop on %(platformName)s": "%(platformName)s向けデスクトップ版Riot", + "%(brand)s Desktop on %(platformName)s": "%(platformName)s向けデスクトップ版Riot", "You need to be using HTTPS to place a screen-sharing call.": "画面共有通話を行うにはHTTPS通信を使う必要があります。", "Decentralised, encrypted chat & collaboration powered by [matrix]": "[matrix] による、分散型で暗号化された会話とコラボレーション", "Chat with Riot Bot": "Riot Botと会話", @@ -32,7 +32,7 @@ "Download Completed": "ダウンロード完了", "Open": "開く", "Open user settings": "ユーザー設定を開く", - "Riot Desktop (%(platformName)s)": "Riotデスクトップ版(%(platformName)s)", + "%(brand)s Desktop (%(platformName)s)": "Riotデスクトップ版(%(platformName)s)", "Go to your browser to complete Sign In": "サインインを完了させるためにブラウザへ移動してください", "%(appName)s (%(browserName)s, %(osName)s)": "%(appName)s(%(browserName)s, %(osName)s)", "Unsupported browser": "サポートされていないブラウザ", diff --git a/src/i18n/strings/jbo.json b/src/i18n/strings/jbo.json index 49671902ba..ed333439d9 100644 --- a/src/i18n/strings/jbo.json +++ b/src/i18n/strings/jbo.json @@ -1,5 +1,5 @@ { - "Riot Desktop on %(platformName)s": "la skami nu zunti ci'e la'o gy. %(platformName)s .gy.", + "%(brand)s Desktop on %(platformName)s": "la skami nu zunti ci'e la'o gy. %(platformName)s .gy.", "Unknown device": "lo na'e te djuno se pilno", "%(appName)s via %(browserName)s on %(osName)s": "la'o gy. %(appName)s .gy. xe be'i la'o gy. %(browserName)s .gy. ci'e la'o gy. %(osName)s .gy.", "You need to be using HTTPS to place a screen-sharing call.": ".i la .hytytypysys. sarcu lo nu co'a vidni jorne", diff --git a/src/i18n/strings/ka.json b/src/i18n/strings/ka.json index 268be2a093..6917cda53e 100644 --- a/src/i18n/strings/ka.json +++ b/src/i18n/strings/ka.json @@ -1,5 +1,5 @@ { - "Riot Desktop on %(platformName)s": "Riot Desktop-ი %(platformName)s-ზე", + "%(brand)s Desktop on %(platformName)s": "%(brand)s Desktop-ი %(platformName)s-ზე", "Unknown device": "უცნობი მოწყობილობა", "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s-ი %(browserName)s-ით %(osName)s-იდან", "You need to be using HTTPS to place a screen-sharing call.": "ეკრანის გაზიარების ფუნქციის მქონე ზარისთვის საჭიროა, იყენებდეთ HTTPS-ს.", diff --git a/src/i18n/strings/kab.json b/src/i18n/strings/kab.json index 1004da4f01..747849a7a1 100644 --- a/src/i18n/strings/kab.json +++ b/src/i18n/strings/kab.json @@ -1,7 +1,7 @@ { "Invalid JSON": "JSON armeɣtu", "Open user settings": "Ldi iɣewwaṛen n useqdac", - "Riot Desktop (%(platformName)s)": "Riot n tnarit (%(platformName)s)", + "%(brand)s Desktop (%(platformName)s)": "Riot n tnarit (%(platformName)s)", "Go to your browser to complete Sign In": "Ddu ɣer iminig akken ad tkemleḍ ajerred", "Unknown device": "Ibenk arussin", "%(appName)s (%(browserName)s, %(osName)s)": "%(appName)s (%(browserName)s, %(osName)s)", diff --git a/src/i18n/strings/ko.json b/src/i18n/strings/ko.json index 02a0ed6d37..a926790ac3 100644 --- a/src/i18n/strings/ko.json +++ b/src/i18n/strings/ko.json @@ -2,7 +2,7 @@ "Custom Server Options": "맞춤 서버 설정", "Dismiss": "버리기", "powered by Matrix": "Matrix의 지원을 받음", - "Riot Desktop on %(platformName)s": "%(platformName)s 용 Riot 데스크톱", + "%(brand)s Desktop on %(platformName)s": "%(platformName)s 용 Riot 데스크톱", "Unknown device": "알 수 없는 기기", "Welcome to Riot.im": "Riot.im에 오신 것을 환영합니다", "Chat with Riot Bot": "Riot 봇과 대화", @@ -25,7 +25,7 @@ "Unable to load config file: please refresh the page to try again.": "설정 파일을 불러오는 데 실패: 페이지를 새로고침한 후에 다시 시도해 주십시오.", "Open user settings": "사용자 설정 열기", "Previous/next recently visited room or community": "최근에 방문한 이전/다음 방 또는 커뮤니티", - "Riot Desktop (%(platformName)s)": "Riot 데스크탑 (%(platformName)s)", + "%(brand)s Desktop (%(platformName)s)": "Riot 데스크탑 (%(platformName)s)", "Go to your browser to complete Sign In": "로그인을 완료하려면 브라우저로 이동해주세요", "%(appName)s (%(browserName)s, %(osName)s)": "%(appName)s (%(browserName)s, %(osName)s)", "Unsupported browser": "지원되지 않는 브라우저", diff --git a/src/i18n/strings/lt.json b/src/i18n/strings/lt.json index 9675963af8..873bba289a 100644 --- a/src/i18n/strings/lt.json +++ b/src/i18n/strings/lt.json @@ -3,7 +3,7 @@ "powered by Matrix": "veikia su Matrix", "Welcome to Riot.im": "Sveiki atvykę į Riot.im", "Chat with Riot Bot": "Kalbėtis su Riot Botu", - "Riot Desktop on %(platformName)s": "Riot Desktop, naudojant %(platformName)s", + "%(brand)s Desktop on %(platformName)s": "%(brand)s Desktop, naudojant %(platformName)s", "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s per %(browserName)s, naudojant %(osName)s", "You need to be using HTTPS to place a screen-sharing call.": "Norint skambinti naudojant ekrano vaizdo dalijimosi funkciją, jūs turite naudoti HTTPS.", "Custom Server Options": "Pasirinktiniai Serverio Nustatymai", @@ -27,7 +27,7 @@ "Missing indexeddb worker script!": "Trūksta indexeddb worker skripto!", "Unable to load config file: please refresh the page to try again.": "Nepavyko įkelti konfigūracijos failo: iš naujo užkraukite puslapį ir bandykite dar kartą.", "Previous/next recently visited room or community": "Ankstesnis/sekantis neseniai lankytas kambarys ar bendruomenė", - "Riot Desktop (%(platformName)s)": "Riot Kompiuteriui (%(platformName)s)", + "%(brand)s Desktop (%(platformName)s)": "Riot Kompiuteriui (%(platformName)s)", "%(appName)s (%(browserName)s, %(osName)s)": "%(appName)s (%(browserName)s, %(osName)s)", "Unsupported browser": "Nepalaikoma naršyklė", "Your browser can't run Riot": "Jūsų naršyklė negali paleisti Riot", diff --git a/src/i18n/strings/lv.json b/src/i18n/strings/lv.json index b804fbbecc..71a398578a 100644 --- a/src/i18n/strings/lv.json +++ b/src/i18n/strings/lv.json @@ -3,7 +3,7 @@ "Custom Server Options": "Iestatāmās servera opcijas", "Dismiss": "Atteikt", "powered by Matrix": "Tiek darbināta ar Matrix", - "Riot Desktop on %(platformName)s": "Riot darbvirsma %(platformName)s", + "%(brand)s Desktop on %(platformName)s": "Riot darbvirsma %(platformName)s", "Unknown device": "Nezināma ierīce", "You need to be using HTTPS to place a screen-sharing call.": "Lai izmantotu ekrāna kopīgošanas zvanu, nepieciešams izmantot HTTPS savienojumu.", "Welcome to Riot.im": "Esiet gaidīti Riot.im", diff --git a/src/i18n/strings/ml.json b/src/i18n/strings/ml.json index a678c4336f..ec4cae04fb 100644 --- a/src/i18n/strings/ml.json +++ b/src/i18n/strings/ml.json @@ -3,7 +3,7 @@ "Custom Server Options": "കസ്റ്റം സെര്‍വര്‍ ഓപ്ഷനുകള്‍", "Dismiss": "ഒഴിവാക്കുക", "powered by Matrix": "മാട്രിക്സില്‍ പ്രവര്‍ത്തിക്കുന്നു", - "Riot Desktop on %(platformName)s": "%(platformName)s ലെ റയട്ട് ഡെസ്ക്ടോപ്പ്", + "%(brand)s Desktop on %(platformName)s": "%(platformName)s ലെ റയട്ട് ഡെസ്ക്ടോപ്പ്", "Unknown device": "അപരിചിത ഡിവൈസ്", "You need to be using HTTPS to place a screen-sharing call.": "സ്ക്രീന്‍ ഷെയറിങ്ങ് കോള്‍ നടത്തണമെങ്കില്‍ https ഉപയോഗിക്കണം.", "Welcome to Riot.im": "റയട്ടിലേക്ക് സ്വാഗതം", diff --git a/src/i18n/strings/mn.json b/src/i18n/strings/mn.json index 815e62eb92..54524d6872 100644 --- a/src/i18n/strings/mn.json +++ b/src/i18n/strings/mn.json @@ -6,7 +6,7 @@ "Unexpected error preparing the app. See console for details.": "Апп бэлдэх үед гарах ёсгүй алдаа. Дэлгэрэнгүйг консолоос харна уу.", "Invalid configuration: can only specify one of default_server_config, default_server_name, or default_hs_url.": "Буруу тохиргоо: default_server_config, default_server_name, эсвэл default_hs_url утгын зөвхөн аль нэгийг л зааж болно.", "Invalid configuration: no default server specified.": "Буруу тохиргоо: Өгөгдсөл серверийг зааж өгөөгүй байна.", - "Riot Desktop on %(platformName)s": "%(platformName)s дээрх Риот Десктоп", + "%(brand)s Desktop on %(platformName)s": "%(platformName)s дээрх Риот Десктоп", "Unknown device": "Үл мэдэгдэх төхөөрөмж", "%(appName)s via %(browserName)s on %(osName)s": "%(osName)s дээр %(browserName)s -ээр дамжсан %(appName)s", "You need to be using HTTPS to place a screen-sharing call.": "Та дэлгэц хуваалцах дуудлага хийхдээ HTTPS ашиглах ёстой.", diff --git a/src/i18n/strings/nb_NO.json b/src/i18n/strings/nb_NO.json index 8994677520..edeb1d9e75 100644 --- a/src/i18n/strings/nb_NO.json +++ b/src/i18n/strings/nb_NO.json @@ -1,7 +1,7 @@ { "Custom Server Options": "Server-instillinger", "powered by Matrix": "Drevet av Matrix", - "Riot Desktop on %(platformName)s": "Riot Desktop på %(platformName)s", + "%(brand)s Desktop on %(platformName)s": "%(brand)s Desktop på %(platformName)s", "Unknown device": "Ukjent enhet", "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s via %(browserName)s på %(osName)s", "You need to be using HTTPS to place a screen-sharing call.": "Du er nødt til å bruke HTTPS for å ha en samtale med skjermdeling.", diff --git a/src/i18n/strings/nl.json b/src/i18n/strings/nl.json index 0db2894fa3..94ed89a4e7 100644 --- a/src/i18n/strings/nl.json +++ b/src/i18n/strings/nl.json @@ -2,7 +2,7 @@ "Custom Server Options": "Aangepaste serverinstellingen", "Dismiss": "Afwijzen", "powered by Matrix": "draait op Matrix", - "Riot Desktop on %(platformName)s": "Riot Desktop op %(platformName)s", + "%(brand)s Desktop on %(platformName)s": "%(brand)s Desktop op %(platformName)s", "Unknown device": "Onbekend apparaat", "You need to be using HTTPS to place a screen-sharing call.": "Oproepen met schermdelen vergen HTTPS.", "Welcome to Riot.im": "Welkom bij Riot.im", @@ -27,7 +27,7 @@ "Missing indexeddb worker script!": "Het indexeddb script ontbreekt!", "Unable to load config file: please refresh the page to try again.": "Kan het configuratiebestand niet laden. Herlaad de pagina alstublieft.", "Previous/next recently visited room or community": "Vorige/volgende recent bezochte kamer of gemeenschap", - "Riot Desktop (%(platformName)s)": "Riot Desktop (%(platformName)s)", + "%(brand)s Desktop (%(platformName)s)": "%(brand)s Desktop (%(platformName)s)", "%(appName)s (%(browserName)s, %(osName)s)": "%(appName)s (%(browserName)s, %(osName)s)", "Unsupported browser": "Niet-ondersteunde browser", "Your browser can't run Riot": "Riot werkt niet in uw browser", diff --git a/src/i18n/strings/nn.json b/src/i18n/strings/nn.json index 98752e4d71..1194c941d3 100644 --- a/src/i18n/strings/nn.json +++ b/src/i18n/strings/nn.json @@ -1,5 +1,5 @@ { - "Riot Desktop on %(platformName)s": "Riot på Skrivebord for %(platformName)s", + "%(brand)s Desktop on %(platformName)s": "Riot på Skrivebord for %(platformName)s", "Unknown device": "Ukjend eining", "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s gjennom %(browserName)s på %(osName)s", "You need to be using HTTPS to place a screen-sharing call.": "Du må bruka HTTPS for å ha ein samtale med skjermdeling.", diff --git a/src/i18n/strings/oc.json b/src/i18n/strings/oc.json index 875bd575ca..9c1da30aec 100644 --- a/src/i18n/strings/oc.json +++ b/src/i18n/strings/oc.json @@ -4,7 +4,7 @@ "Invalid JSON": "Invalid JSON", "Your Riot is misconfigured": "Vòstre Riot es mal configurat", "Unexpected error preparing the app. See console for details.": "Error inesperada en preparant l’aplicacion. Vejatz la consòla pels detalhs.", - "Riot Desktop on %(platformName)s": "Riot Desktop sus %(platformName)s", + "%(brand)s Desktop on %(platformName)s": "%(brand)s Desktop sus %(platformName)s", "Go to your browser to complete Sign In": "Anatz al navegador per acabar la connexion", "Unknown device": "Periferic desconegut", "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s via %(browserName)s sus %(osName)s", diff --git a/src/i18n/strings/pl.json b/src/i18n/strings/pl.json index 74f45c04ff..a44fb06ac2 100644 --- a/src/i18n/strings/pl.json +++ b/src/i18n/strings/pl.json @@ -2,7 +2,7 @@ "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s przez %(browserName)s na %(osName)s", "Custom Server Options": "Niestandardowe opcje serwera", "Dismiss": "Zamknij", - "Riot Desktop on %(platformName)s": "Riot Desktop na %(platformName)s", + "%(brand)s Desktop on %(platformName)s": "%(brand)s Desktop na %(platformName)s", "powered by Matrix": "napędzany przez Matrix", "Unknown device": "Nieznane urządzenie", "You need to be using HTTPS to place a screen-sharing call.": "Musisz używać bezpiecznego protokołu HTTPS aby użyć połączenia współdzielenia ekranu.", @@ -27,7 +27,7 @@ "Missing indexeddb worker script!": "Brakujący skrypt workera indexeddb!", "Unable to load config file: please refresh the page to try again.": "Nie udało się załadować pliku konfiguracyjnego: odśwież stronę aby spróbować ponownie.", "Previous/next recently visited room or community": "Poprzedni/następny niedawno odwiedzony pokój lub społeczność", - "Riot Desktop (%(platformName)s)": "Riot Desktop (%(platformName)s)", + "%(brand)s Desktop (%(platformName)s)": "%(brand)s Desktop (%(platformName)s)", "%(appName)s (%(browserName)s, %(osName)s)": "%(appName)s (%(browserName)s, %(osName)s)", "Unsupported browser": "Niewspierana przeglądarka", "Your browser can't run Riot": "Twoja przeglądarka nie jest w stanie uruchomić Riota", diff --git a/src/i18n/strings/pt.json b/src/i18n/strings/pt.json index e7a5b028d9..02c543c0af 100644 --- a/src/i18n/strings/pt.json +++ b/src/i18n/strings/pt.json @@ -3,7 +3,7 @@ "Dismiss": "Descartar", "powered by Matrix": "powered by Matrix", "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s via %(browserName)s em %(osName)s", - "Riot Desktop on %(platformName)s": "Riot Desktop em %(platformName)s", + "%(brand)s Desktop on %(platformName)s": "%(brand)s Desktop em %(platformName)s", "Unknown device": "Dispositivo desconhecido", "You need to be using HTTPS to place a screen-sharing call.": "Necessita de estar a usar HTTPS para poder iniciar uma chamada com partilha de ecrã.", "Welcome to Riot.im": "Bem-vindo ao Riot.im", diff --git a/src/i18n/strings/pt_BR.json b/src/i18n/strings/pt_BR.json index d00e30f01e..e21df0bb11 100644 --- a/src/i18n/strings/pt_BR.json +++ b/src/i18n/strings/pt_BR.json @@ -3,7 +3,7 @@ "Dismiss": "Descartar", "powered by Matrix": "oferecido por Matrix", "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s via %(browserName)s em %(osName)s", - "Riot Desktop on %(platformName)s": "Riot para computadores desktop em %(platformName)s", + "%(brand)s Desktop on %(platformName)s": "Riot para computadores desktop em %(platformName)s", "Unknown device": "Dispositivo desconhecido", "You need to be using HTTPS to place a screen-sharing call.": "Você precisa estar usando HTTPS para poder iniciar uma chamada com compartilhamento de tela.", "Welcome to Riot.im": "Seja bem-vinda(o) a Riot.im", @@ -37,6 +37,6 @@ "Missing indexeddb worker script!": "Script de trabalho indexeddb não encontrado!", "Open": "Abrir", "Previous/next recently visited room or community": "Próxima/Anterior sala ou comunidade visitada recentemente", - "Riot Desktop (%(platformName)s)": "Riot Desktop (%(platformName)s)", + "%(brand)s Desktop (%(platformName)s)": "%(brand)s Desktop (%(platformName)s)", "Go to your browser to complete Sign In": "Vá para o seu navegador para concluir o login" } diff --git a/src/i18n/strings/ro.json b/src/i18n/strings/ro.json index ca8d24da3f..db409c4648 100644 --- a/src/i18n/strings/ro.json +++ b/src/i18n/strings/ro.json @@ -1,5 +1,5 @@ { - "Riot Desktop on %(platformName)s": "Riot Desktop pe %(platformName)s", + "%(brand)s Desktop on %(platformName)s": "%(brand)s Desktop pe %(platformName)s", "Unknown device": "Device necunoscut", "Custom Server Options": "Opțiuni Server Personalizate", "Dismiss": "Închide", @@ -18,7 +18,7 @@ "Invalid configuration: can only specify one of default_server_config, default_server_name, or default_hs_url.": "Configuratie invalida: se poate specifica doar una dintre default_server_config, default_server_name, or default_hs_url.", "Your Riot is misconfigured": "Aplicatia ta Riot e gresit configurata", "Invalid JSON": "JSON invalid", - "Riot Desktop (%(platformName)s)": "Riot Desktop (%(platformName)s)", + "%(brand)s Desktop (%(platformName)s)": "%(brand)s Desktop (%(platformName)s)", "%(appName)s (%(browserName)s, %(osName)s)": "%(appName)s (%(browserName)s, %(osName)s)", "Unsupported browser": "Acest browser nu este suportat", "Your browser can't run Riot": "Browserul tau nu poate rula Riot", diff --git a/src/i18n/strings/ru.json b/src/i18n/strings/ru.json index bcec67bccb..f7c2bcbc43 100644 --- a/src/i18n/strings/ru.json +++ b/src/i18n/strings/ru.json @@ -3,7 +3,7 @@ "Dismiss": "Отклонить", "powered by Matrix": "основано на Matrix", "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s с %(browserName)s на %(osName)s", - "Riot Desktop on %(platformName)s": "Riot Desktop на %(platformName)s", + "%(brand)s Desktop on %(platformName)s": "%(brand)s Desktop на %(platformName)s", "Unknown device": "Неизвестное устройство", "You need to be using HTTPS to place a screen-sharing call.": "Для трансляции рабочего стола требуется использование HTTPS.", "Welcome to Riot.im": "Добро пожаловать в Riot.im", @@ -27,7 +27,7 @@ "Missing indexeddb worker script!": "Отсутствует скрипт воркера для indexeddb!", "Unable to load config file: please refresh the page to try again.": "Не удалось загрузить файл конфигурации. Попробуйте обновить страницу.", "Previous/next recently visited room or community": "Предыдущая/следующая недавно посещённая комната или сообщество", - "Riot Desktop (%(platformName)s)": "Riot Desktop (%(platformName)s)", + "%(brand)s Desktop (%(platformName)s)": "%(brand)s Desktop (%(platformName)s)", "%(appName)s (%(browserName)s, %(osName)s)": "%(appName)s (%(browserName)s, %(osName)s)", "Unsupported browser": "Неподдерживаемый браузер", "Your browser can't run Riot": "Ваш браузер не может запустить Riot", diff --git a/src/i18n/strings/sk.json b/src/i18n/strings/sk.json index 6ffd7f0dca..ddc4d8e236 100644 --- a/src/i18n/strings/sk.json +++ b/src/i18n/strings/sk.json @@ -1,5 +1,5 @@ { - "Riot Desktop on %(platformName)s": "Riot Desktop pre %(platformName)s", + "%(brand)s Desktop on %(platformName)s": "%(brand)s Desktop pre %(platformName)s", "Unknown device": "Neznáme zariadenie", "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s cez %(browserName)s pre %(osName)s", "You need to be using HTTPS to place a screen-sharing call.": "Ak si želáte spustiť zdieľanie obrazovky, musíte byť pripojení cez protokol HTTPS.", @@ -27,7 +27,7 @@ "Open user settings": "Otvoriť používateľské nastavenia", "Previous/next recently visited room or community": "Predchádzajúca/ďalšia nedávno navštívená miestnosť alebo komunita", "Go to your browser to complete Sign In": "Prejdite do prehliadača a dokončite prihlásenie", - "Riot Desktop (%(platformName)s)": "Riot Desktop (%(platformName)s)", + "%(brand)s Desktop (%(platformName)s)": "%(brand)s Desktop (%(platformName)s)", "%(appName)s (%(browserName)s, %(osName)s)": "%(appName)s (%(browserName)s, %(osName)s)", "Unsupported browser": "Nepodporovaný prehliadač", "Your browser can't run Riot": "Váš prehliadač nedokáže spustiť Riot", diff --git a/src/i18n/strings/sl.json b/src/i18n/strings/sl.json index 70fe0a1a5d..83b9145fe9 100644 --- a/src/i18n/strings/sl.json +++ b/src/i18n/strings/sl.json @@ -1,5 +1,5 @@ { - "Riot Desktop on %(platformName)s": "Namizni Riot za %(platformName)s", + "%(brand)s Desktop on %(platformName)s": "Namizni Riot za %(platformName)s", "Unknown device": "Neznana naprava", "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s s %(browserName)s na %(osName)s", "You need to be using HTTPS to place a screen-sharing call.": "Za klic s skupno rabo zaslona potrebujete HTTPS.", diff --git a/src/i18n/strings/sq.json b/src/i18n/strings/sq.json index 32a452a677..b8bc55df31 100644 --- a/src/i18n/strings/sq.json +++ b/src/i18n/strings/sq.json @@ -1,5 +1,5 @@ { - "Riot Desktop on %(platformName)s": "Riot Desktop në %(platformName)s", + "%(brand)s Desktop on %(platformName)s": "%(brand)s Desktop në %(platformName)s", "Unknown device": "Pajisje e panjohur", "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s përmes %(browserName)s nën %(osName)s", "You need to be using HTTPS to place a screen-sharing call.": "Që të bëni një thirrje me ndarje ekrani, duhet të jeni duke përdorur HTTPS-në.", @@ -26,7 +26,7 @@ "Open user settings": "Hapni rregullime përdoruesi", "Unable to load config file: please refresh the page to try again.": "S’arrihet të ngarkohet kartelë formësimesh: ju lutemi, rifreskoni faqen dhe riprovoni.", "Previous/next recently visited room or community": "Dhomë ose bashkësi e mëparshme/pasuese e vizituar së fundi", - "Riot Desktop (%(platformName)s)": "Riot Desktop (%(platformName)s)", + "%(brand)s Desktop (%(platformName)s)": "%(brand)s Desktop (%(platformName)s)", "%(appName)s (%(browserName)s, %(osName)s)": "%(appName)s (%(browserName)s, %(osName)s)", "Unsupported browser": "Shfletues i pambuluar", "Your browser can't run Riot": "Shfletuesi juaj s’xhiron dot Riot-in", diff --git a/src/i18n/strings/sr.json b/src/i18n/strings/sr.json index b5a7e2ba3e..0c0808157b 100644 --- a/src/i18n/strings/sr.json +++ b/src/i18n/strings/sr.json @@ -1,5 +1,5 @@ { - "Riot Desktop on %(platformName)s": "Riot стони програм за %(platformName)s", + "%(brand)s Desktop on %(platformName)s": "Riot стони програм за %(platformName)s", "Unknown device": "Непознати уређај", "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s преко прегледача %(browserName)s на систему %(osName)s", "You need to be using HTTPS to place a screen-sharing call.": "Морате користити HTTPS да бисте започели позив са дељењем екрана.", diff --git a/src/i18n/strings/sr_Latn.json b/src/i18n/strings/sr_Latn.json index 0f987de4b7..012803b038 100644 --- a/src/i18n/strings/sr_Latn.json +++ b/src/i18n/strings/sr_Latn.json @@ -6,7 +6,7 @@ "Unexpected error preparing the app. See console for details.": "Neočekivana greška prilikom pripreme aplikacije. Pogledajte konzolu za više detalja.", "Invalid configuration: can only specify one of default_server_config, default_server_name, or default_hs_url.": "Pogrešno podešavanje: možete navesti samo jednu vrednost od default_server_config, default_server_name, or default_hs_url.", "Invalid configuration: no default server specified.": "Pogrešno podešavanje: podrazumevani server nije naveden.", - "Riot Desktop on %(platformName)s": "Riot Desktop na %(platformName)s", + "%(brand)s Desktop on %(platformName)s": "%(brand)s Desktop na %(platformName)s", "Unknown device": "Nepoznat uređaj", "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s preko %(browserName)s na %(osName)s", "You need to be using HTTPS to place a screen-sharing call.": "Treba da koristite HTTPS da bi ste započeli poziv sa deljenjem ekrana.", diff --git a/src/i18n/strings/sv.json b/src/i18n/strings/sv.json index c7d9b7e392..f88fd5eed8 100644 --- a/src/i18n/strings/sv.json +++ b/src/i18n/strings/sv.json @@ -3,7 +3,7 @@ "Dismiss": "Avvisa", "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s via %(browserName)s på %(osName)s", "powered by Matrix": "drivs av Matrix", - "Riot Desktop on %(platformName)s": "Riot Desktop på %(platformName)s", + "%(brand)s Desktop on %(platformName)s": "%(brand)s Desktop på %(platformName)s", "Unknown device": "Okänd enhet", "You need to be using HTTPS to place a screen-sharing call.": "Du måste använda HTTPS för att ringa med skärmdelning.", "Welcome to Riot.im": "Välkommen till Riot.im", @@ -27,7 +27,7 @@ "Missing indexeddb worker script!": "Saknar indexeddb worker skript!", "Unable to load config file: please refresh the page to try again.": "Kan inte ladda konfigurationsfilen: var god ladda om sidan för att försöka igen.", "Previous/next recently visited room or community": "Föregående/nästa nyligen besökt rum eller community", - "Riot Desktop (%(platformName)s)": "Riot Desktop (%(platformName)s)", + "%(brand)s Desktop (%(platformName)s)": "%(brand)s Desktop (%(platformName)s)", "%(appName)s (%(browserName)s, %(osName)s)": "%(appName)s (%(browserName)s, %(osName)s)", "Unsupported browser": "Webbläsaren stöds ej", "Your browser can't run Riot": "Din webbläsare kan inte köra Riot", diff --git a/src/i18n/strings/ta.json b/src/i18n/strings/ta.json index 3ec4b8b8ae..e9c3011c7c 100644 --- a/src/i18n/strings/ta.json +++ b/src/i18n/strings/ta.json @@ -4,7 +4,7 @@ "Dismiss": "நீக்கு", "powered by Matrix": "Matrix-ஆல் ஆனது", "Unknown device": "தெரியாத கருவி", - "Riot Desktop on %(platformName)s": "%(platformName)s ற்க்கான Riot", + "%(brand)s Desktop on %(platformName)s": "%(platformName)s ற்க்கான Riot", "You need to be using HTTPS to place a screen-sharing call.": "நீங்கள் திரைபகிர்வு அழைப்பை மேற்க்கொள்ள HTTPS-ஐ பயன்படுத்த வேண்டும்.", "Welcome to Riot.im": "Riot.im -ற்க்கு வரவேற்க்கிறோம்", "Chat with Riot Bot": "Riot இயங்கியிடம் உரையாடவும்", diff --git a/src/i18n/strings/te.json b/src/i18n/strings/te.json index 16a883b5fc..38f4240bc2 100644 --- a/src/i18n/strings/te.json +++ b/src/i18n/strings/te.json @@ -2,7 +2,7 @@ "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s %(browserName)s ద్వార %(osName)s కి", "Custom Server Options": "మలచిన సేవిక ఎంపికలు", "Dismiss": "రద్దుచేసే", - "Riot Desktop on %(platformName)s": "రియట్ రంగస్థలం లో %(platformName)s", + "%(brand)s Desktop on %(platformName)s": "రియట్ రంగస్థలం లో %(platformName)s", "Welcome to Riot.im": "రిమోట్.ఇం కి స్వగతం", "Chat with Riot Bot": "రియోట్ బొట్తో మాటామంతి చేయండి", "Unknown device": "తెలుయని పరికరం", diff --git a/src/i18n/strings/th.json b/src/i18n/strings/th.json index e38fbda9e1..1ec464c04f 100644 --- a/src/i18n/strings/th.json +++ b/src/i18n/strings/th.json @@ -4,7 +4,7 @@ "Dismiss": "ไม่สนใจ", "Unknown device": "อุปกรณ์ที่ไม่รู้จัก", "You need to be using HTTPS to place a screen-sharing call.": "คุณต้องใช้ HTTPS เพื่อเริ่มติดต่อแบบแบ่งปันหน้าจอ", - "Riot Desktop on %(platformName)s": "Riot Desktop บน %(platformName)s", + "%(brand)s Desktop on %(platformName)s": "%(brand)s Desktop บน %(platformName)s", "Custom Server Options": "กำหนดเซิร์ฟเวอร์เอง", "Welcome to Riot.im": "ยินดีต้อนรับสู่ Riot.im", "Chat with Riot Bot": "แชทกับบอท Riot", diff --git a/src/i18n/strings/tr.json b/src/i18n/strings/tr.json index 984ef2cb9f..db4d23521f 100644 --- a/src/i18n/strings/tr.json +++ b/src/i18n/strings/tr.json @@ -3,7 +3,7 @@ "Custom Server Options": "Özelleştirilebilir Sunucu Seçenekleri", "Dismiss": "Kapat", "powered by Matrix": "Matrix'den besleniyor", - "Riot Desktop on %(platformName)s": "%(platformName)s platformunda Riot Masaüstü", + "%(brand)s Desktop on %(platformName)s": "%(platformName)s platformunda Riot Masaüstü", "Unknown device": "Bilinmeyen aygıt", "You need to be using HTTPS to place a screen-sharing call.": "Ekran paylaşımlı arama yapmak için HTTPS kullanıyor olmalısınız.", "Welcome to Riot.im": "Riot.im'e hoş geldiniz", diff --git a/src/i18n/strings/uk.json b/src/i18n/strings/uk.json index bf39a7c57e..18bcb223c0 100644 --- a/src/i18n/strings/uk.json +++ b/src/i18n/strings/uk.json @@ -3,7 +3,7 @@ "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s через %(browserName)s на %(osName)s", "Dismiss": "Відхилити", "powered by Matrix": "працює на Matrix", - "Riot Desktop on %(platformName)s": "Riot Desktop на %(platformName)s", + "%(brand)s Desktop on %(platformName)s": "%(brand)s Desktop на %(platformName)s", "Unknown device": "Невідомий пристрій", "You need to be using HTTPS to place a screen-sharing call.": "Ви маєте використовувати HTTPS щоб зробити виклик із поширенням екрану.", "Welcome to Riot.im": "Ласкаво просимо до Riot.im", diff --git a/src/i18n/strings/vi.json b/src/i18n/strings/vi.json index c3ac658ad2..9181f58b7c 100644 --- a/src/i18n/strings/vi.json +++ b/src/i18n/strings/vi.json @@ -1,5 +1,5 @@ { - "Riot Desktop on %(platformName)s": "Riot Desktop trên %(platformName)s", + "%(brand)s Desktop on %(platformName)s": "%(brand)s Desktop trên %(platformName)s", "Unknown device": "Thiết bị không được nhận biết", "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s với %(browserName)s trên %(osName)s", "You need to be using HTTPS to place a screen-sharing call.": "Bạn phải sử dụng HTTPS để dùng chức năng chia sẻ màn hình.", diff --git a/src/i18n/strings/vls.json b/src/i18n/strings/vls.json index 4245f7adcb..4a8f33f51c 100644 --- a/src/i18n/strings/vls.json +++ b/src/i18n/strings/vls.json @@ -2,7 +2,7 @@ "Unexpected error preparing the app. See console for details.": "’t Is een onverwachte foute ipgetreedn by ’t voorbereidn van den app. Bekykt de console vo details.", "Invalid configuration: can only specify one of default_server_config, default_server_name, or default_hs_url.": "Oungeldige configuroasje: ku moar één van default_server_config, default_server_name, of default_hs_url ingeevn.", "Invalid configuration: no default server specified.": "Oungeldige configuroasje: geen standoardserver ingegeevn.", - "Riot Desktop on %(platformName)s": "Riot Desktop ip %(platformName)s", + "%(brand)s Desktop on %(platformName)s": "%(brand)s Desktop ip %(platformName)s", "Unknown device": "Ounbekend toestel", "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s via %(browserName)s ip %(osName)s", "You need to be using HTTPS to place a screen-sharing call.": "Je moet HTTPS gebruukn vo een iproep me schermdeeln te kunn startn.", diff --git a/src/i18n/strings/zh_Hans.json b/src/i18n/strings/zh_Hans.json index f565a98380..a60dfa4fd3 100644 --- a/src/i18n/strings/zh_Hans.json +++ b/src/i18n/strings/zh_Hans.json @@ -3,7 +3,7 @@ "Custom Server Options": "自定义服务器选项", "Dismiss": "标记为已读", "powered by Matrix": "由 Matrix 驱动", - "Riot Desktop on %(platformName)s": "在 %(platformName)s 上运行的 Riot 桌面版", + "%(brand)s Desktop on %(platformName)s": "在 %(platformName)s 上运行的 Riot 桌面版", "Unknown device": "未知设备", "You need to be using HTTPS to place a screen-sharing call.": "您需要使用 HTTPS 以进行共享屏幕通话。", "Welcome to Riot.im": "欢迎来到 Riot.im", @@ -26,7 +26,7 @@ "Unable to load config file: please refresh the page to try again.": "无法加载配置文件:请再次刷新页面。", "Open user settings": "打开用户设置", "Previous/next recently visited room or community": "上一个 / 下一个最近访问的聊天室或社区", - "Riot Desktop (%(platformName)s)": "Riot 桌面版 (%(platformName)s)", + "%(brand)s Desktop (%(platformName)s)": "Riot 桌面版 (%(platformName)s)", "Go to your browser to complete Sign In": "去您的浏览器完成登录", "%(appName)s (%(browserName)s, %(osName)s)": "%(appName)s (%(browserName)s, %(osName)s)", "Unsupported browser": "不支持的浏览器", diff --git a/src/i18n/strings/zh_Hant.json b/src/i18n/strings/zh_Hant.json index 34a2f517f7..6daec42762 100644 --- a/src/i18n/strings/zh_Hant.json +++ b/src/i18n/strings/zh_Hant.json @@ -5,7 +5,7 @@ "powered by Matrix": "由 Matrix 提供", "Unknown device": "未知裝置", "You need to be using HTTPS to place a screen-sharing call.": "你需要使用 HTTPS 來撥打螢幕分享的通話。", - "Riot Desktop on %(platformName)s": "%(platformName)s 的 Riot 桌面版", + "%(brand)s Desktop on %(platformName)s": "%(platformName)s 的 Riot 桌面版", "Welcome to Riot.im": "歡迎來到 Riot.im", "Decentralised, encrypted chat & collaboration powered by [matrix]": "去中心化、保密的聊天與協作,由 [matrix] 提供", "Chat with Riot Bot": "與 Riot 機器人聊天", @@ -27,7 +27,7 @@ "Missing indexeddb worker script!": "缺少 indexeddb 輔助指令稿!", "Unable to load config file: please refresh the page to try again.": "無法載入設定檔:請重新整理頁面以再試一次。", "Previous/next recently visited room or community": "上一個/下一個最近造訪的聊天室或社群", - "Riot Desktop (%(platformName)s)": "Riot 桌面版 (%(platformName)s)", + "%(brand)s Desktop (%(platformName)s)": "Riot 桌面版 (%(platformName)s)", "%(appName)s (%(browserName)s, %(osName)s)": "%(appName)s (%(browserName)s, %(osName)s)", "Unsupported browser": "不支援的瀏覽器", "Your browser can't run Riot": "您的瀏覽器無法執行 Riot", From 73d999cc95f444e6729d4243088dfac6a6630075 Mon Sep 17 00:00:00 2001 From: "J. Ryan Stinnett" Date: Mon, 13 Jul 2020 14:22:47 +0100 Subject: [PATCH 03/10] Prune unused translations --- src/i18n/strings/ar.json | 5 ----- src/i18n/strings/az.json | 7 ------- src/i18n/strings/bg.json | 9 --------- src/i18n/strings/ca.json | 7 ------- src/i18n/strings/cs.json | 7 ------- src/i18n/strings/cy.json | 7 ------- src/i18n/strings/da.json | 7 ------- src/i18n/strings/de_DE.json | 9 --------- src/i18n/strings/el.json | 7 ------- src/i18n/strings/en_US.json | 7 ------- src/i18n/strings/eo.json | 9 --------- src/i18n/strings/es.json | 9 --------- src/i18n/strings/et.json | 9 --------- src/i18n/strings/eu.json | 9 --------- src/i18n/strings/fa.json | 4 ---- src/i18n/strings/fi.json | 9 --------- src/i18n/strings/fr.json | 9 --------- src/i18n/strings/ga.json | 7 +------ src/i18n/strings/gl.json | 9 --------- src/i18n/strings/he.json | 5 ----- src/i18n/strings/hi.json | 5 ----- src/i18n/strings/hr.json | 3 --- src/i18n/strings/hu.json | 9 --------- src/i18n/strings/id.json | 5 +---- src/i18n/strings/is.json | 3 --- src/i18n/strings/it.json | 9 --------- src/i18n/strings/ja.json | 9 --------- src/i18n/strings/jbo.json | 5 +---- src/i18n/strings/ka.json | 5 +---- src/i18n/strings/kab.json | 4 ---- src/i18n/strings/ko.json | 9 --------- src/i18n/strings/lt.json | 9 --------- src/i18n/strings/lv.json | 9 --------- src/i18n/strings/ml.json | 3 --- src/i18n/strings/mn.json | 7 ------- src/i18n/strings/nb_NO.json | 7 ------- src/i18n/strings/nl.json | 9 --------- src/i18n/strings/nn.json | 7 ------- src/i18n/strings/oc.json | 9 +-------- src/i18n/strings/pl.json | 9 --------- src/i18n/strings/pt.json | 7 ------- src/i18n/strings/pt_BR.json | 9 --------- src/i18n/strings/ro.json | 7 ------- src/i18n/strings/ru.json | 9 --------- src/i18n/strings/sk.json | 9 --------- src/i18n/strings/sl.json | 7 +------ src/i18n/strings/sq.json | 9 --------- src/i18n/strings/sr.json | 7 ------- src/i18n/strings/sr_Latn.json | 9 +-------- src/i18n/strings/sv.json | 9 --------- src/i18n/strings/ta.json | 9 +-------- src/i18n/strings/te.json | 3 --- src/i18n/strings/th.json | 6 ------ src/i18n/strings/tr.json | 7 ------- src/i18n/strings/uk.json | 9 --------- src/i18n/strings/vi.json | 9 +-------- src/i18n/strings/vls.json | 7 ------- src/i18n/strings/zh_Hans.json | 9 --------- src/i18n/strings/zh_Hant.json | 9 --------- 59 files changed, 9 insertions(+), 427 deletions(-) diff --git a/src/i18n/strings/ar.json b/src/i18n/strings/ar.json index 31b863a692..46a290d8f0 100644 --- a/src/i18n/strings/ar.json +++ b/src/i18n/strings/ar.json @@ -1,17 +1,12 @@ { "Custom Server Options": "الإعدادات الشخصية للخادوم", "Dismiss": "تجاهل", - "%(brand)s Desktop on %(platformName)s": "الواجهة المكتبية لرايوت على %(platformName)s", "Unknown device": "جهاز مجهول", - "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s عبر %(browserName)s على %(osName)s", "You need to be using HTTPS to place a screen-sharing call.": "تحتاج الى استخدام الاتصال الآمن (HTTPS) للسماح بمشاركة الشاشة.", "powered by Matrix": "مشغل بواسطة Matrix", "Welcome to Riot.im": "مرحبا بك في Riot.im", - "Chat with Riot Bot": "الدردشة مع Riot Bot", "Decentralised, encrypted chat & collaboration powered by [matrix]": "[matrix] تعاون مدعوم مواسطة & دردشة لا مركزية ومشفرة", "Create Account": "انشاء حساب", - "Need help?": "بحاجة إلى مساعدة؟", "Explore rooms": "استكشف غرف المحادثات", - "Room Directory": "دليل غرف المحادثات", "Sign In": "التسجيل" } diff --git a/src/i18n/strings/az.json b/src/i18n/strings/az.json index d4582c0737..60b2fa2207 100644 --- a/src/i18n/strings/az.json +++ b/src/i18n/strings/az.json @@ -1,25 +1,18 @@ { - "%(brand)s Desktop on %(platformName)s": "%(platformName)s-da %(brand)s Desktop", "Unknown device": "Naməlum qurğu", "You need to be using HTTPS to place a screen-sharing call.": "İş stolunun birgə istifadəsi üçün HTTPS-dan istifadə tələb olunur.", - "Your Riot configuration contains invalid JSON. Please correct the problem and reload the page.": "Riot konfiqurasiyanızda yanlış JSON var. Lütfən, xətanı düzəldin və səhifəni yeniləyin.", "Invalid JSON": "Yanlış JSON", "Sign In": "Daxil ol", "Create Account": "Hesab Aç", - "Need help?": "Kömək lazımdır?", - "Chat with Riot Bot": "Riot Bot-la söhbət edin", "Explore rooms": "Otaqları kəşf edin", - "Your Riot is misconfigured": "Riot yanlış quraşdırılıb", "Unexpected error preparing the app. See console for details.": "Proqramın başlanmasında gözlənilməz xəta. İzah üçün konsola baxın", "Invalid configuration: can only specify one of default_server_config, default_server_name, or default_hs_url.": "Yanlış konfiqurasiya: bunlardan yalnız birini təyin edin - default_server_config, default_server_name, və ya default_hs_url.", "Invalid configuration: no default server specified.": "Yanlış konfiqurasiya: ilkin server təyin edilməyib", - "%(appName)s via %(browserName)s on %(osName)s": "%(osName)s-da %(browserName)s ilə %(appName)s", "The message from the parser is: %(message)s": "Sözügedən mesaj: %(message)s", "powered by Matrix": "Matrix tərəfindən təchiz edilmişdir", "Custom Server Options": "Fərdi Server Seçimləri", "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Fərqli server URL-ni təyin etməklə digər Matrix serverlərinə daxil olmaq üçün fərdi server seçimlərini istifadə edə bilərsiniz. Bu sizə başqa serverdə qaldırılmış mövcud Matrix hesabınızla Riot-u işlətməyə imkan verir.", "Dismiss": "Nəzərə almayın", - "Room Directory": "Otaq kataloqu", "Welcome to Riot.im": "Riot.im-ə xoş gəlmişsiniz", "Decentralised, encrypted chat & collaboration powered by [matrix]": "[matrix] tərəfindən təchiz edilmiş mərkəziləşdirilməmiş, şifrələnmiş çat və əməkdaşlıq platforması" } diff --git a/src/i18n/strings/bg.json b/src/i18n/strings/bg.json index 39e39c4c1f..c68645bbd1 100644 --- a/src/i18n/strings/bg.json +++ b/src/i18n/strings/bg.json @@ -1,25 +1,18 @@ { - "%(brand)s Desktop on %(platformName)s": "%(brand)s Desktop под %(platformName)s", "Unknown device": "Непознато устройство", - "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s в %(browserName)s под %(osName)s", "You need to be using HTTPS to place a screen-sharing call.": "Трябва да използвате HTTPS, за да споделите екрана си.", "Custom Server Options": "Потребителски опции за сървър", "Dismiss": "Затвори", "powered by Matrix": "базирано на Matrix", "Welcome to Riot.im": "Добре дошли в Riot.im", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Децентрализиран, шифрован чат и съвместна работа, базирани на [matrix]", - "Chat with Riot Bot": "Чати с Riot Bot", "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Може да използвате настройките за собствен сървър за да влезете в друг Matrix сървър, чрез указване на адреса му. Това ви позволява да използвате Riot със съществуващ Matrix акаунт, принадлежащ към друг сървър.", "Sign In": "Вписване", "Create Account": "Създай профил", - "Need help?": "Нужда от помощ?", "Explore rooms": "Открий стаи", - "Room Directory": "Директория със стаи", "Unexpected error preparing the app. See console for details.": "Неочаквана грешка при подготвянето на приложението. Вижте конзолата за подробности.", "Invalid configuration: can only specify one of default_server_config, default_server_name, or default_hs_url.": "Невалидна конфигурация: може да е указано само едно от: default_server_config, default_server_name, или default_hs_url.", "Invalid configuration: no default server specified.": "Невалидна конфигурация: не е указан сървър по подразбиране.", - "Your Riot is misconfigured": "Riot не е конфигуриран правилно", - "Your Riot configuration contains invalid JSON. Please correct the problem and reload the page.": "Riot конфигурацията ви съдържа невалиден JSON. Коригирайте проблема и презаредете страницата.", "The message from the parser is: %(message)s": "Грешката от парсъра е: %(message)s", "Invalid JSON": "Невалиден JSON", "Open user settings": "Отвори потребителските настройки", @@ -30,8 +23,6 @@ "%(brand)s Desktop (%(platformName)s)": "%(brand)s Desktop (%(platformName)s)", "%(appName)s (%(browserName)s, %(osName)s)": "%(appName)s (%(browserName)s, %(osName)s)", "Unsupported browser": "Неподдържан браузър", - "Your browser can't run Riot": "Браузърът ви не може да подкара Riot", - "Riot uses advanced browser features which aren't supported by your current browser.": "Riot използва напредничави браузър функции, които не се поддържат от сегашния ви браузър.", "Please install Chrome, Firefox, or Safari for the best experience.": "Инсталирайте Chrome, Firefox или Safari за най-добра работа.", "You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Може да продължите да използвате сегашния си браузър, но някои или всички функции може да се окажат неработещи, или пък външния вид на приложението да изглежда неправилен.", "I understand the risks and wish to continue": "Разбирам рисковете и желая да продължа", diff --git a/src/i18n/strings/ca.json b/src/i18n/strings/ca.json index 06103be0b3..48bf37fa25 100644 --- a/src/i18n/strings/ca.json +++ b/src/i18n/strings/ca.json @@ -1,23 +1,16 @@ { - "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s via %(browserName)s per a %(osName)s", "Custom Server Options": "Opcions de servidor personalitzat", "Dismiss": "Omet", "Unknown device": "Dispositiu desconegut", "Welcome to Riot.im": "Us donem la benvinguda a Riot.im", - "Chat with Riot Bot": "Conversa amb el Bot de Riot", - "%(brand)s Desktop on %(platformName)s": "Riot d'escriptori per a %(platformName)s", "You need to be using HTTPS to place a screen-sharing call.": "Heu d'utilitzar HTTPS per poder fer una trucada amb pantalla compartida.", "powered by Matrix": "amb tecnologia de Matrix", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Xat descentralitzat, encriptat i col·laboratiu amb tecnologia de [matrix]", "Create Account": "Crea un compte", - "Need help?": "Necessiteu ajuda?", "Explore rooms": "Exploreu les sales", - "Room Directory": "Directori de sales", "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Podeu emprar les opcions personalitzades del servidor per iniciar la sessió en altres servidors de Matrix especificant un URL de servidor personal diferent. Això us permet emprar el Riot amb un compte de Matrix existent en un servidor personal diferent.", "Sign In": "Inicia la sessió", "Invalid configuration: no default server specified.": "Configuració no vàlida: no s'ha especificat cap servidor per defecte.", - "Your Riot is misconfigured": "El vostre Riot té una configuració errònia", - "Your Riot configuration contains invalid JSON. Please correct the problem and reload the page.": "El JSON de la configuraciò de Riot no és vàlid. Corregiu el problema i torneu a carregar la pàgina.", "Invalid JSON": "JSON no vàlid", "Go to your browser to complete Sign In": "Aneu al vostre navegador per completar l'inici de sessió" } diff --git a/src/i18n/strings/cs.json b/src/i18n/strings/cs.json index d2f5f9184b..a577380e3b 100644 --- a/src/i18n/strings/cs.json +++ b/src/i18n/strings/cs.json @@ -2,23 +2,16 @@ "Welcome to Riot.im": "Vítá vás Riot.im", "Unknown device": "Neznámé zařízení", "You need to be using HTTPS to place a screen-sharing call.": "Pro uskutečnění hovoru se sdílením obrazovky musíte používat HTTPS.", - "Chat with Riot Bot": "Konverzovat s Riot Botem", "Dismiss": "Zahodit", "powered by Matrix": "používá protokol Matrix", - "%(brand)s Desktop on %(platformName)s": "%(brand)s Desktop pro %(platformName)s", - "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s přes %(browserName)s na %(osName)s", "Custom Server Options": "Vlastní nastavení serveru", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Decentralizovaný, šifrovaný chat a spolupráce na platformě [matrix]", "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Ve vlastním nastavení serveru můžete nastavit použití vlastního domovského serveru. To vám umožní používat Riot s existujícím Matrix účtem na jiném serveru.", "Sign In": "Přihlásit se", "Create Account": "Vytvořit účet", - "Need help?": "Potřebujete pomoc?", "Explore rooms": "Procházet místnosti", - "Room Directory": "Adresář místností", - "Your Riot configuration contains invalid JSON. Please correct the problem and reload the page.": "Konfigurace Riotu obsahuje neplatný JSON. Opravte prosím tento problém a obnovte stránku.", "The message from the parser is: %(message)s": "Zpráva z parseru je: %(message)s", "Invalid JSON": "Neplatný JSON", - "Your Riot is misconfigured": "Riot je špatně nakonfigurován", "Unexpected error preparing the app. See console for details.": "Neočekávaná chyba při přípravě aplikace. Podrobnosti najdete v konzoli.", "Invalid configuration: can only specify one of default_server_config, default_server_name, or default_hs_url.": "Neplatná konfigurace: je možné specifikovat pouze jednu volbu z default_server_config, default_server_name, nebo default_hs_url.", "Invalid configuration: no default server specified.": "Neplatná konfigurace: není zadán výchozí server.", diff --git a/src/i18n/strings/cy.json b/src/i18n/strings/cy.json index 69bd58db85..eeae9825cf 100644 --- a/src/i18n/strings/cy.json +++ b/src/i18n/strings/cy.json @@ -1,14 +1,10 @@ { - "Your Riot configuration contains invalid JSON. Please correct the problem and reload the page.": "Mae eich gosodiadau Riot yn cynnwys JSON annilys. Cywirwch y broblem ac ail-lwythwch y dudalen.", "The message from the parser is: %(message)s": "Y neges gan y dosrannudd yn: %(message)s", "Invalid JSON": "JSON annilys", - "Your Riot is misconfigured": "Mae eich Riot wedi'i gamosod", "Unexpected error preparing the app. See console for details.": "Gwall annisgwyl wrth baratoi'r app. Gweler y consol am fanylion.", "Invalid configuration: can only specify one of default_server_config, default_server_name, or default_hs_url.": "Gosodiad annilys: dim ond un o default_server_config, default_server_name, neu default_hs_url y gall ei nodi.", "Invalid configuration: no default server specified.": "Gosodiad annilys: ni nodwyd gweinydd diofyn.", - "%(brand)s Desktop on %(platformName)s": "Riot Cyfrifiadur ar %(platformName)s", "Unknown device": "Dyfais anhysbys", - "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s trwy %(browserName)s ar %(osName)s", "You need to be using HTTPS to place a screen-sharing call.": "Mae angen i chi fod yn defnyddio HTTPS i osod galwad rhannu sgrin.", "powered by Matrix": "pwerwyd gan Matrix", "Custom Server Options": "Opsiynau Gweinydd Addasadwy", @@ -18,9 +14,6 @@ "Decentralised, encrypted chat & collaboration powered by [matrix]": "Sgwrsio a chydweithredu datganoledig a amgryptiedig â phwerwyd gan [matrix]", "Sign In": "Mewngofnodi", "Create Account": "Creu Cyfrif", - "Need help?": "Angen cymorth?", - "Chat with Riot Bot": "Sgwrsio gyda Riot Bot", "Explore rooms": "Archwilio Ystafelloedd", - "Room Directory": "Cyfeiriadur Ystafelloedd", "Go to your browser to complete Sign In": "Ewch i'ch porwr i gwblhau Mewngofnodi" } diff --git a/src/i18n/strings/da.json b/src/i18n/strings/da.json index 4fe0f05260..0ca6fdd9fe 100644 --- a/src/i18n/strings/da.json +++ b/src/i18n/strings/da.json @@ -2,26 +2,19 @@ "Custom Server Options": "Brugerdefinerede serverindstillinger", "Dismiss": "Afslut", "powered by Matrix": "Drevet af Matrix", - "%(brand)s Desktop on %(platformName)s": "%(brand)s Desktop på %(platformName)s", "Unknown device": "Ukendt enhed", - "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s via %(browserName)s på %(osName)s", "You need to be using HTTPS to place a screen-sharing call.": "Du skal bruge HTTPS for at lave skærmdelings opkald.", "Welcome to Riot.im": "Velkommen til Riot.im", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Decentraliseret, krypteret chat & samarbejde baseret på [matrix]", - "Chat with Riot Bot": "Chat med Riot Bot", - "Your Riot configuration contains invalid JSON. Please correct the problem and reload the page.": "Din Riot konfiguration indeholder ugyldig JSON. Venligst korrigér problemet og opdatér siden.", "The message from the parser is: %(message)s": "Beskeden fra parseren er: %(message)s", "Invalid JSON": "Ugyldig JSON", - "Your Riot is misconfigured": "Din Riot er konfigureret forkert", "Unexpected error preparing the app. See console for details.": "Uventet fejl ved forberedelse af appen. Se konsollen for detaljer.", "Invalid configuration: can only specify one of default_server_config, default_server_name, or default_hs_url.": "Ugyldig konfiguration: kan kun angive en af default_server_config, default_server_name eller default_hs_url.", "Invalid configuration: no default server specified.": "Ugyldig konfiguration: ingen standardserver angivet.", "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Du kan bruge de brugertilpassede serverindstillinger til at logge på andre Matrix-servere ved at angive en anden homeserver URL. Dette giver dig mulighed for at bruge Riot med en eksisterende Matrix konto på en anden homeserver.", "Sign In": "Log ind", "Create Account": "Opret brugerkonto", - "Need help?": "Brug for hjælp?", "Explore rooms": "Udforsk rum", - "Room Directory": "Rumliste", "Missing indexeddb worker script!": "Manglende indexeddb worker script!", "Unable to load config file: please refresh the page to try again.": "Ikke i stand til at loade config fil: genopfrisk venligst siden for at prøve igen.", "Open user settings": "Åbn brugerindstillinger", diff --git a/src/i18n/strings/de_DE.json b/src/i18n/strings/de_DE.json index 4a800a6e8d..0c720b0f92 100644 --- a/src/i18n/strings/de_DE.json +++ b/src/i18n/strings/de_DE.json @@ -2,24 +2,17 @@ "powered by Matrix": "betrieben mit Matrix", "Custom Server Options": "Benutzerdefinierte Server-Optionen", "Dismiss": "Ablehnen", - "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s via %(browserName)s auf %(osName)s", - "%(brand)s Desktop on %(platformName)s": "%(brand)s Desktop auf %(platformName)s", "Unknown device": "Unbekanntes Gerät", "You need to be using HTTPS to place a screen-sharing call.": "Du musst HTTPS nutzen um einen Anruf mit Bildschirmfreigabe durchzuführen.", "Welcome to Riot.im": "Willkommen bei Riot.im", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Dezentrale, verschlüsselte Chat- & Kollaborationslösung unterstützt von [matrix]", - "Chat with Riot Bot": "Chatte mit dem Riot Bot", "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Du kannst benutzerdefinierte Server-Optionen nutzen, um dich an anderen Matrix Servern anzumelden, indem du eine andere Heimserver-URL angibst. Dies erlaubt dir, Riot mit einem existierenden Matrix-Konto auf einem anderen Heimserver zu nutzen.", "Sign In": "Anmelden", "Create Account": "Account erstellen", - "Need help?": "Brauchst du Hilfe?", "Explore rooms": "Erkunde Räume", - "Room Directory": "Raumverzeichnis", "Unexpected error preparing the app. See console for details.": "Unerwarteter Fehler bei der Vorbereitung der App. Siehe Konsole für Details.", "Invalid configuration: can only specify one of default_server_config, default_server_name, or default_hs_url.": "Ungültige Konfiguration: Es kann nur eine der Optionen default_server_config, default_server_name oder default_hs_url angegeben werden.", "Invalid configuration: no default server specified.": "Ungültige Konfiguration: Es wurde kein Standardserver angegeben.", - "Your Riot is misconfigured": "Dein Riot ist falsch konfiguriert", - "Your Riot configuration contains invalid JSON. Please correct the problem and reload the page.": "Deine Riot Konfiguration enthält ungültiges JSON. Bitte korrigiere das Problem und lade die Seite neu.", "The message from the parser is: %(message)s": "Die Nachricht des Parsers ist: %(message)s", "Invalid JSON": "Ungültiges JSON", "Go to your browser to complete Sign In": "Gehe zu deinem Browser, um die Anmeldung abzuschließen", @@ -28,8 +21,6 @@ "Missing indexeddb worker script!": "Indexeddb worker Skript fehlt!", "Previous/next recently visited room or community": "Vorheriger/nächster kürzlich besuchter Raum oder Community", "Unsupported browser": "Nicht unterstützter Browser", - "Your browser can't run Riot": "Riot funktioniert in deinem Browser nicht", - "Riot uses advanced browser features which aren't supported by your current browser.": "Riot nutzt fortgeschrittene Browser-Eigenschaften, die dein aktueller Browser nicht unterstützt.", "Go to Riot.im": "Gehe zu Riot.im", "Failed to start": "Start fehlgeschlagen", "%(brand)s Desktop (%(platformName)s)": "%(brand)s Desktop (%(platformName)s)", diff --git a/src/i18n/strings/el.json b/src/i18n/strings/el.json index ff9855a6e7..d3f0106a0e 100644 --- a/src/i18n/strings/el.json +++ b/src/i18n/strings/el.json @@ -1,22 +1,15 @@ { "Custom Server Options": "Προσαρμοσμένες ρυθμίσεις διακομιστή", - "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s μέσω %(browserName)s σε %(osName)s", "Dismiss": "Απόρριψη", - "%(brand)s Desktop on %(platformName)s": "%(brand)s Desktop σε %(platformName)s", "Unknown device": "Άγνωστη συσκευή", "You need to be using HTTPS to place a screen-sharing call.": "Απαιτείται η χρήση HTTPS για την πραγματοποίηση κλήσης διαμοιρασμού επιφάνειας εργασίας.", "powered by Matrix": "λειτουργεί με το Matrix", "Welcome to Riot.im": "Καλώς ήλθατε στο Riot.im", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Αποκεντρωμένη, κρυπτογραφημένη συνομιλία και συνεργασία χρησιμοποιώντας το [matrix]", - "Chat with Riot Bot": "Συνομιλία με το Riot Bot", "Sign In": "Σύνδεση", "Create Account": "Δημιουργία Λογαριασμού", - "Need help?": "Χρειάζεστε βοήθεια;", - "Room Directory": "Ευρετήριο δωματίων", - "Your Riot configuration contains invalid JSON. Please correct the problem and reload the page.": "Η ρύθμιση παραμέτρων σας του Riot περιλαμβάνει μη έγκυρο JSON. Παρακαλώ διορθώστε το πρόβλημα και επαναφορτώστε την σελίδα.", "The message from the parser is: %(message)s": "Το μήνυμα από τον αναλυτή είναι: %(message)s", "Invalid JSON": "Μη έγκυρο JSON", - "Your Riot is misconfigured": "Οι παράμετροι του Riot σας είναι λανθασμένα ρυθμισμένοι", "Unexpected error preparing the app. See console for details.": "Απρόοπτο σφάλμα κατά την προετοιμασία της εφαρμογής. Δείτε το τερματικό για λεπτομέρειες.", "Invalid configuration: can only specify one of default_server_config, default_server_name, or default_hs_url.": "Μη έγκυρη ρύθμιση παραμέτρων: δυνατότητα ορισμού μόνο ένα από τα default_server_config, default_server_name, ή default_hs_url.", "Invalid configuration: no default server specified.": "Μη έγκυρη ρύθμιση παραμέτρων: δεν έχει οριστεί προκαθορισμένος διακομιστής.", diff --git a/src/i18n/strings/en_US.json b/src/i18n/strings/en_US.json index 7e8d5d62ed..11ba9885ba 100644 --- a/src/i18n/strings/en_US.json +++ b/src/i18n/strings/en_US.json @@ -1,24 +1,17 @@ { - "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s via %(browserName)s on %(osName)s", "Custom Server Options": "Custom Server Options", "Dismiss": "Dismiss", "powered by Matrix": "powered by Matrix", - "%(brand)s Desktop on %(platformName)s": "%(brand)s Desktop on %(platformName)s", "Unknown device": "Unknown device", "You need to be using HTTPS to place a screen-sharing call.": "You need to be using HTTPS to place a screen-sharing call.", "Welcome to Riot.im": "Welcome to Riot.im", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Decentralised, encrypted chat & collaboration powered by [matrix]", - "Chat with Riot Bot": "Chat with Riot Bot", "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.", "Sign In": "Sign In", "Create Account": "Create Account", - "Need help?": "Need help?", "Explore rooms": "Explore rooms", - "Room Directory": "Room Directory", - "Your Riot configuration contains invalid JSON. Please correct the problem and reload the page.": "Your Riot configuration contains invalid JSON. Please correct the problem and reload the page.", "The message from the parser is: %(message)s": "The message from the parser is: %(message)s", "Invalid JSON": "Invalid JSON", - "Your Riot is misconfigured": "Your Riot is misconfigured", "Unexpected error preparing the app. See console for details.": "Unexpected error preparing the app. See console for details.", "Invalid configuration: can only specify one of default_server_config, default_server_name, or default_hs_url.": "Invalid configuration: can only specify one of default_server_config, default_server_name, or default_hs_url.", "Invalid configuration: no default server specified.": "Invalid configuration: no default server specified." diff --git a/src/i18n/strings/eo.json b/src/i18n/strings/eo.json index a9f079cf1c..a8120b6d44 100644 --- a/src/i18n/strings/eo.json +++ b/src/i18n/strings/eo.json @@ -2,24 +2,17 @@ "Dismiss": "Rezigni", "powered by Matrix": "povigita per Matrix", "Custom Server Options": "Propraj servilaj elektoj", - "%(brand)s Desktop on %(platformName)s": "Riot Labortablo sur %(platformName)s", "Unknown device": "Nekonata aparato", "You need to be using HTTPS to place a screen-sharing call.": "Vi devas uzi HTTPS por ekranvidadi.", "Welcome to Riot.im": "Bonvenon al Riot.im", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Malcentra, ĉifrita babilado & kunlaboro povigita per [matrix]", - "Chat with Riot Bot": "Babilu kun la roboto Riot Bot", - "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s per %(browserName)s je %(osName)s", "Sign In": "Saluti", "Create Account": "Krei konton", - "Need help?": "Ĉu vi bezonas helpon?", "Explore rooms": "Esplori ĉambrojn", - "Room Directory": "Ĉambra dosierujo", "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Vi povas uzi proprajn servilajn elekteblojn por saluti al aliaj serviloj de Matrix per doni alian hejmeservilan URL-on. Tio povigos vin uzi Riot kun jama konto de Matrix en alia hejmservilo.", "Unexpected error preparing the app. See console for details.": "Neatendita eraro okazis dum la preparado de la aplikaĵo. Rigardu la konzolon por detaloj.", "Invalid configuration: can only specify one of default_server_config, default_server_name, or default_hs_url.": "Nevalida agordo: vi povas specifi nur unu elekteblon el « default_server_config », « default_server_name », aŭ « default_hs_url ».", "Invalid configuration: no default server specified.": "Nevalida agordo: neniu implicita servilo estas specifita.", - "Your Riot is misconfigured": "Via kliento Riot estas misagordita", - "Your Riot configuration contains invalid JSON. Please correct the problem and reload the page.": "Viaj Riot-agordoj enhavas nevalidan JSON-on. Bonvolu korekti la problemon kaj reŝarĝi la paĝon.", "The message from the parser is: %(message)s": "La mesaĝo el la analizilo estas: %(message)s", "Invalid JSON": "Nevalida JSON", "Go to your browser to complete Sign In": "Iru al via foliumilo por fini la saluton", @@ -30,8 +23,6 @@ "%(brand)s Desktop (%(platformName)s)": "Riot labortabla (%(platformName)s)", "%(appName)s (%(browserName)s, %(osName)s)": "%(appName)s (%(browserName)s, %(osName)s)", "Unsupported browser": "Nesubtenata foliumilo", - "Your browser can't run Riot": "Via foliumilo ne povas ruli Rioton", - "Riot uses advanced browser features which aren't supported by your current browser.": "Riot uzas altnivelajn foliumilajn funkciojn, kiuj ne estas subtenataj de via nuna foliumilo.", "Please install Chrome, Firefox, or Safari for the best experience.": "Bonvolu instali foliumilon Chrome, Firefox, aŭ Safari, por la plej bona sperto.", "You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Vi povas daŭre uzadi vian nunan foliumilon, sed iuj (eĉ ĉiuj) funkcioj eble ne funkcios, kaj la aspekto de la aplikaĵo eble ne estos ĝusta.", "I understand the risks and wish to continue": "Mi komprenas la riskon kaj volas pluiĝi", diff --git a/src/i18n/strings/es.json b/src/i18n/strings/es.json index c1035f85cb..af512fb9ea 100644 --- a/src/i18n/strings/es.json +++ b/src/i18n/strings/es.json @@ -1,25 +1,18 @@ { "Custom Server Options": "Opciones de Servidor Personalizado", "Unknown device": "Dispositivo desconocido", - "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s via %(browserName)s en %(osName)s", "Dismiss": "Omitir", "powered by Matrix": "con el poder de Matrix", - "%(brand)s Desktop on %(platformName)s": "%(brand)s Desktop en %(platformName)s", "You need to be using HTTPS to place a screen-sharing call.": "Debes usar HTTPS para hacer una llamada con pantalla compartida.", "Welcome to Riot.im": "Bienvenido a Riot.im", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Conversaciones cifradas y descentralizadas y colaboración con el poder de [matrix]", - "Chat with Riot Bot": "Hablar con Riot Bot", "Sign In": "Iniciar sesión", "Create Account": "Crear cuenta", - "Need help?": "Necesitas ayuda?", "Explore rooms": "Explorar salas", - "Room Directory": "Directorio de salas", "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Puedes usar las opciones personalizadas del servidor para iniciar sesión en otros servidores Matrix, especificando la dirección URL del servidor. Esto te permite usar una cuenta Matrix en un servidor diferente.", "Unexpected error preparing the app. See console for details.": "Error inesperado preparando la aplicación. Vea la consola para más detalles.", - "Your Riot is misconfigured": "Tu Riot tiene un error de configuración", "Invalid configuration: can only specify one of default_server_config, default_server_name, or default_hs_url.": "Configuración errónea: sólo puede especificar uno de default_server_config, default_server_name, o default_hs_url.", "Invalid configuration: no default server specified.": "Configuración errónea: no se ha especificado servidor.", - "Your Riot configuration contains invalid JSON. Please correct the problem and reload the page.": "Tu configuración de Riot contiene JSON inválido. Por favor corrige el error y recarga la página.", "The message from the parser is: %(message)s": "El mensaje del parser es: %(message)s", "Invalid JSON": "JSON inválido", "Open user settings": "Abrir opciones de usuario", @@ -30,8 +23,6 @@ "%(brand)s Desktop (%(platformName)s)": "%(brand)s Desktop (%(platformName)s)", "%(appName)s (%(browserName)s, %(osName)s)": "%(appName)s (%(browserName)s, %(osName)s)", "Unsupported browser": "Navegador no soportado", - "Your browser can't run Riot": "Tu navegador no puede ejecutar Riot", - "Riot uses advanced browser features which aren't supported by your current browser.": "Riot requiere funcionalidades que tu navegador actual no soporta.", "Please install Chrome, Firefox, or Safari for the best experience.": "Por favor, instale Chrome, Firefox, o Safari para la mejor experiencia.", "You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Puedes seguir utilizando tu navegador actual, pero puede que algunas funcionalidades no estén disponibles o que algunas partes de la aplicación se muestren de forma incorrecta.", "I understand the risks and wish to continue": "Entiendo los riesgos y deseo continuar", diff --git a/src/i18n/strings/et.json b/src/i18n/strings/et.json index 70718c1b70..50c46fd5ce 100644 --- a/src/i18n/strings/et.json +++ b/src/i18n/strings/et.json @@ -1,8 +1,6 @@ { - "Your Riot configuration contains invalid JSON. Please correct the problem and reload the page.": "Sinu Rioti seadetes on vigane JSON. Palun, tee see korda ja laadi leht uuesti.", "The message from the parser is: %(message)s": "Sõnum parserist on: %(message)s", "Invalid JSON": "Vigane JSON", - "Your Riot is misconfigured": "Sinu Riot'i seadistused on paigast ära", "Unknown device": "Tundmatu seade", "Invalid configuration: no default server specified.": "Vigane seadistus: vaikimisi server on määramata.", "Unable to load config file: please refresh the page to try again.": "Seadistuste faili laadimine ei õnnestunud: uuesti proovimiseks palun lae leht uuesti.", @@ -11,13 +9,10 @@ "Go to your browser to complete Sign In": "Sisselogimiseks ava oma brauser", "Dismiss": "Loobu", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Matrix'i protokollil põhinev hajutatud ja krüpteeritud suhtlus- ning ühistöörakendus", - "Chat with Riot Bot": "Vestle Riot'i robotiga", "Explore rooms": "Uuri jututubasid", "Missing indexeddb worker script!": "Lahendusest puudub indexeddb skript!", "Invalid configuration: can only specify one of default_server_config, default_server_name, or default_hs_url.": "Vigane seadistus. Sa võid määrata vaid ühe alljärgnevatest: default_server_config, default_server_name või default_hs_url.", "Previous/next recently visited room or community": "Eelmine/järgmine hiljuti kasutatud jututuba või kogukond", - "%(brand)s Desktop on %(platformName)s": "%(brand)s Desktop, %(platformName)s", - "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s, %(browserName)s, %(osName)s", "You need to be using HTTPS to place a screen-sharing call.": "Ekraani jagava kõne jaoks pead kasutama HTTPS-ühendust.", "powered by Matrix": "põhineb Matrix'il", "Custom Server Options": "Serveri kohaldatud seadistused", @@ -25,13 +20,9 @@ "Welcome to Riot.im": "Tere tulemast Riot.im kasutajaks", "Sign In": "Logi sisse", "Create Account": "Loo konto", - "Need help?": "Kas vajad abi?", - "Room Directory": "Jututubade loend", "%(brand)s Desktop (%(platformName)s)": "Riot'i töölauaversioon (%(platformName)s)", "%(appName)s (%(browserName)s, %(osName)s)": "%(appName)s (%(browserName)s, %(osName)s)", "Unsupported browser": "Sellele brauserile puudub tugi", - "Your browser can't run Riot": "Riot ei tööta sinu brauseris", - "Riot uses advanced browser features which aren't supported by your current browser.": "Riot eeldab brauseritelt tänapäevaseid funktsionaalsusi ning sinu pragune brauser neid võimalusi ei toeta.", "Please install Chrome, Firefox, or Safari for the best experience.": "Parima kasutuskogemuse jaoks palun paigalda Chrome, Firefox või Safari.", "You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Sa võid jätkata praeguse brauseri kasutamist, kuid mõned või kõik funktsionaalsused ei pruugi toimida ning rakenduse välimus võib vigane olla.", "I understand the risks and wish to continue": "Ma mõistan riske ja soovin jätkata", diff --git a/src/i18n/strings/eu.json b/src/i18n/strings/eu.json index 5b97198e41..1bd1ef1124 100644 --- a/src/i18n/strings/eu.json +++ b/src/i18n/strings/eu.json @@ -1,25 +1,18 @@ { - "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s %(browserName)s bidez %(osName)s ostalarian", "Custom Server Options": "Zerbitzari pertsonalizatuaren aukerak", "Dismiss": "Baztertu", "powered by Matrix": "Matrix mamian", - "%(brand)s Desktop on %(platformName)s": "%(brand)s Desktop %(platformName)s plataforman", "Unknown device": "Gailu ezezaguna", "You need to be using HTTPS to place a screen-sharing call.": "HTTPS erabili behar duzu sekretuak partekatzeko dei bat ezartzeko.", "Welcome to Riot.im": "Ongi etorri Riot.im mezularitzara", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Deszentralizatutako eta zifratutako txat eta elkarlana [matrix] sareari esker", - "Chat with Riot Bot": "Txateatu Riot botarekin", "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Zerbitzari pertsonalizatuaren aukera erabili dezakezu bestelako Matrix zerbitzari batera konektatzeko, bere URL-a adierazita. Honek Riot beste zerbitzari batean duzun Matrix kontuarekin erabiltzea ahalbidetzen dizu.", "Sign In": "Hasi saioa", "Create Account": "Sortu kontua", - "Need help?": "Laguntza behar?", "Explore rooms": "Arakatu gelak", - "Room Directory": "Gelen direktorioa", "Unexpected error preparing the app. See console for details.": "Ustekabeko errorea aplikazioa prestatzean. Ikusi xehetasunak kontsolan.", - "Your Riot is misconfigured": "Zure Riot gaizki konfiguratuta dago", "Invalid configuration: no default server specified.": "Konfigurazio baliogabea: Ez da lehenetsitako zerbitzaririk zehaztu.", "Invalid configuration: can only specify one of default_server_config, default_server_name, or default_hs_url.": "Konfigurazio baliogabea: default_server_config, default_server_name, edo default_hs_url bat bakarra zehaztu daiteke.", - "Your Riot configuration contains invalid JSON. Please correct the problem and reload the page.": "Zure Riot konfigurazioak baliogabeko JSON kodea du. Zuzendu arazoa eta kargatu orria berriro.", "The message from the parser is: %(message)s": "Prozesatzailearen mezua hau da: %(message)s", "Invalid JSON": "JSON baliogabea", "Go to your browser to complete Sign In": "Joan zure nabigatzailera izena ematen bukatzeko", @@ -30,8 +23,6 @@ "%(brand)s Desktop (%(platformName)s)": "%(brand)s Desktop (%(platformName)s)", "%(appName)s (%(browserName)s, %(osName)s)": "%(appName)s (%(browserName)s, %(osName)s)", "Unsupported browser": "Onartu gabeko nabigatzailea", - "Your browser can't run Riot": "Zure nabigatzaileak ezin du Riot abiatu", - "Riot uses advanced browser features which aren't supported by your current browser.": "Riotek zure oraingo nabigatzailean erabilgarri ez dauden ezaugarri aurreratuak erabiltzen ditu .", "Please install Chrome, Firefox, or Safari for the best experience.": "Instalatu Chrome, Firefox, edo Safari esperientzia hobe baterako.", "You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Zure oraingo nabigatzailea erabiltzen jarraitu dezakezu, baina ezaugarri batzuk agian ez dute funtzionatuko eta itxura desegokia izan daiteke.", "I understand the risks and wish to continue": "Arriskuak ulertzen ditut eta jarraitu nahi dut", diff --git a/src/i18n/strings/fa.json b/src/i18n/strings/fa.json index 56858e2330..e8473895f0 100644 --- a/src/i18n/strings/fa.json +++ b/src/i18n/strings/fa.json @@ -1,11 +1,8 @@ { "powered by Matrix": "قدرت‌یافته از ماتریکس", - "%(brand)s Desktop on %(platformName)s": "رایوت دسکتاپ بر %(platformName)s", "Unknown device": "دستگاه ناشناخته", "Welcome to Riot.im": "به Riot.im خوش‌آمدید", - "Chat with Riot Bot": "با رایوت‌بات چت کنید", "Decentralised, encrypted chat & collaboration powered by [matrix]": "چت مرکزگریز و رمزنگاری‌شده & ارائه‌ای از ماتریکس", - "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s از طریق %(browserName)s بر %(osName)s", "Custom Server Options": "تنظیمات سفارشی برای سرور", "Dismiss": "نادیده بگیر", "You need to be using HTTPS to place a screen-sharing call.": "شما باید از ارتباط امن HTTPS برای به‌راه‌اندازی یک چتِ شامل به اشتراک‌گذاری صفحه‌ی کامیپوتر استفاده کنید.", @@ -14,6 +11,5 @@ "Go to your browser to complete Sign In": "برای تکمیل ورود به مرورگر خود بروید", "Sign In": "ورود", "Create Account": "ایجاد اکانت", - "Need help?": "به کمک نیازمندید؟", "Explore rooms": "کاوش اتاق" } diff --git a/src/i18n/strings/fi.json b/src/i18n/strings/fi.json index 5863e155ab..8b071631ac 100644 --- a/src/i18n/strings/fi.json +++ b/src/i18n/strings/fi.json @@ -3,23 +3,16 @@ "Unknown device": "Tuntematon laite", "Welcome to Riot.im": "Tervetuloa Riot.im-sovellukseen", "Custom Server Options": "Palvelinasetukset", - "%(brand)s Desktop on %(platformName)s": "%(brand)s Desktop, %(platformName)s", "You need to be using HTTPS to place a screen-sharing call.": "Sinun täytyy käyttää HTTPS-yhteyttä, jotta voit jakaa ruudun puhelussa.", - "Chat with Riot Bot": "Keskustele Riot-botin kanssa", "powered by Matrix": "moottorina Matrix", - "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s, %(browserName)s, %(osName)s", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Hajautettua ja salattua viestintää Matrix-teknologialla", "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Voit käyttää mukautettuja palvelinasetuksia kirjautuaksesi muihin Matrix-palvelimiin. Tämä mahdollistaa Riotin käyttämisen toisella kotipalvelimella olevalla Matrix-tilillä.", "Sign In": "Kirjaudu", "Create Account": "Luo tili", - "Need help?": "Tarvitsetko apua?", "Explore rooms": "Selaa huoneita", - "Room Directory": "Huoneluettelo", "Unexpected error preparing the app. See console for details.": "Odottamaton virhe sovellusta valmisteltaessa. Katso konsolista lisätietoja.", - "Your Riot is misconfigured": "Riotin asetukset ovat pielessä", "Invalid configuration: can only specify one of default_server_config, default_server_name, or default_hs_url.": "Virheellinen asetus. Vain yhden seuraavista voi määrittää: default_server_config, default_server_name, tai default_hs_url.", "Invalid configuration: no default server specified.": "Virheellinen asetus: oletuspalvelinta ei ole määritetty.", - "Your Riot configuration contains invalid JSON. Please correct the problem and reload the page.": "Riot-asetuksissasi on virheellistä JSONia. Korjaa ongelma ja lataa sivu uudelleen.", "The message from the parser is: %(message)s": "Viesti jäsentimeltä: %(message)s", "Invalid JSON": "Virheellinen JSON", "Missing indexeddb worker script!": "Indexeddb-suorittajan skripti puuttuu!", @@ -30,8 +23,6 @@ "Go to your browser to complete Sign In": "Tee kirjautuminen loppuun selaimessasi", "%(appName)s (%(browserName)s, %(osName)s)": "%(appName)s (%(browserName)s, %(osName)s)", "Unsupported browser": "Selainta ei tueta", - "Your browser can't run Riot": "Riot ei toimi selaimellasi", - "Riot uses advanced browser features which aren't supported by your current browser.": "Riot käyttää edistyneitä selaimen ominaisuuksia, joita nykyinen selaimesi ei tue.", "Please install Chrome, Firefox, or Safari for the best experience.": "Asenna Chrome, Firefox tai Safari, jotta kaikki toimii parhaiten.", "You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Voit käyttää edelleen nykyistä selaintasi, mutta jotkut tai kaikki ominaisuudet eivät ehkä toimi ja sovelluksen ulkoasu voi olla virheellinen.", "I understand the risks and wish to continue": "Ymmärrän riskit ja haluan jatkaa", diff --git a/src/i18n/strings/fr.json b/src/i18n/strings/fr.json index 9a65af19ad..d1900b3061 100644 --- a/src/i18n/strings/fr.json +++ b/src/i18n/strings/fr.json @@ -2,24 +2,17 @@ "Custom Server Options": "Options de serveur personnalisées", "Dismiss": "Ignorer", "powered by Matrix": "propulsé par Matrix", - "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s dans %(browserName)s sous %(osName)s", - "%(brand)s Desktop on %(platformName)s": "Version bureau de Riot sur %(platformName)s", "Unknown device": "Appareil inconnu", "You need to be using HTTPS to place a screen-sharing call.": "Vous devez utiliser HTTPS pour effectuer un appel avec partage d’écran.", "Welcome to Riot.im": "Bienvenue sur Riot.im", - "Chat with Riot Bot": "Discuter avec le bot Riot", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Discussion & collaboration décentralisées et chiffrées, propulsées par [matrix]", "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Vous pouvez utiliser les options de serveur personnalisé pour vous connecter à d'autres serveurs Matrix en renseignant l'URL d'un autre serveur d'accueil. Cela vous permet d'utiliser Riot avec un compte Matrix existant sur un serveur d'accueil différent.", "Sign In": "Se connecter", "Create Account": "Créer un compte", - "Need help?": "Besoin d'aide ?", "Explore rooms": "Explorer les salons", - "Room Directory": "Répertoire de salons", "Unexpected error preparing the app. See console for details.": "Une erreur inattendue est survenue pendant la préparation de l’application. Consultez la console pour avoir des détails.", "Invalid configuration: can only specify one of default_server_config, default_server_name, or default_hs_url.": "Configuration invalide : il ne faut spécifier qu’un des trois champs entre default_server_config, default_server_name et default_hs_url.", "Invalid configuration: no default server specified.": "Configuration invalide : aucun serveur par défaut spécifié.", - "Your Riot is misconfigured": "Votre Riot est mal configuré", - "Your Riot configuration contains invalid JSON. Please correct the problem and reload the page.": "Votre configuration de Riot contient du JSON non valide. Corrigez ce problème et rechargez la page.", "The message from the parser is: %(message)s": "Le message de l’analyseur est : %(message)s", "Invalid JSON": "JSON non valide", "Go to your browser to complete Sign In": "Utilisez votre navigateur pour terminer la connexion", @@ -29,8 +22,6 @@ "Previous/next recently visited room or community": "Salon ou communauté visité récemment précédent/suivant", "%(appName)s (%(browserName)s, %(osName)s)": "%(appName)s (%(browserName)s, %(osName)s)", "Unsupported browser": "Navigateur non pris en charge", - "Your browser can't run Riot": "Votre navigateur ne peut pas exécuter Riot", - "Riot uses advanced browser features which aren't supported by your current browser.": "Riot utilise des fonctionnalités avancées qui ne sont pas prises en charge par votre navigateur actuel.", "Please install Chrome, Firefox, or Safari for the best experience.": "Veuillez installer Chrome, Firefox ou Safari pour une expérience optimale.", "You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Vous pouvez continuer à utiliser votre navigateur actuel, mais vous risquez de trouver que certaines fonctionnalités et/ou l'apparence de l'application sont incorrectes.", "I understand the risks and wish to continue": "Je comprends les risques et souhaite continuer", diff --git a/src/i18n/strings/ga.json b/src/i18n/strings/ga.json index c65c56118b..4509df2d21 100644 --- a/src/i18n/strings/ga.json +++ b/src/i18n/strings/ga.json @@ -1,7 +1,5 @@ { - "%(brand)s Desktop on %(platformName)s": "Leagan gnáthríomhaire Riot ar %(platformName)s", "Unknown device": "Gléas nár aithníodh", - "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s trí %(browserName)s ar %(osName)s", "You need to be using HTTPS to place a screen-sharing call.": "Ní mór HTTPS a úsáid chun glaoch comhroinnt scáileáin a chur.", "powered by Matrix": "cumhachtaithe ag Matrix", "Custom Server Options": "Socruithe do fhreastalaí saincheaptha", @@ -11,8 +9,5 @@ "Decentralised, encrypted chat & collaboration powered by [matrix]": "Meán comhrá agus comhoibriú, díláraithe agus criptithe, cumhachtaithe ag [matrix]", "Sign In": "Sínigh Isteach", "Create Account": "Déan cuntas a chruthú", - "Need help?": "An bhfuil cabhair uait?", - "Chat with Riot Bot": "Labhair le Riot Bot", - "Explore rooms": "Breathnaigh thart ar na seomraí", - "Room Directory": "Eolaire na Seomraí" + "Explore rooms": "Breathnaigh thart ar na seomraí" } diff --git a/src/i18n/strings/gl.json b/src/i18n/strings/gl.json index 1c0c0baa77..f7624559d1 100644 --- a/src/i18n/strings/gl.json +++ b/src/i18n/strings/gl.json @@ -1,24 +1,17 @@ { - "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s vía %(browserName)s en %(osName)s", "Custom Server Options": "Opcións personalizadas do servidor", "Dismiss": "Rexeitar", "powered by Matrix": "funciona grazas a Matrix", - "%(brand)s Desktop on %(platformName)s": "%(brand)s Desktop en %(platformName)s", "Unknown device": "Dispositivo descoñecido", "You need to be using HTTPS to place a screen-sharing call.": "Precisa utilizar HTTPS para establecer unha chamada de pantalla compartida.", "Welcome to Riot.im": "Benvida/o a Riot.im", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Conversas e colaboración descentralizada e cifrada grazas a [matrix]", - "Chat with Riot Bot": "Conversa co bot de Riot", "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Podes usar as opcións de servidor personalizado para iniciar sesión en outros servidores Matrix especificando unha dirección diferente de servidor doméstico. Con esto podes usar Riot cunha conta Matrix existente noutro servidor doméstico.", "Sign In": "Conectar", "Create Account": "Crear conta", - "Need help?": "¿Precisas axuda?", "Explore rooms": "Explorar salas", - "Room Directory": "Directorio de salas", - "Your Riot configuration contains invalid JSON. Please correct the problem and reload the page.": "A configuración de Riot contén JSON non válido. Corrixe o problema e recarga a páxina.", "The message from the parser is: %(message)s": "A mensaxe desde o intérprete é: %(message)s", "Invalid JSON": "JSON non válido", - "Your Riot is misconfigured": "O teu Riot está mal configurado", "Unexpected error preparing the app. See console for details.": "Fallo non agardado ao preparar a app. Detalles na consola.", "Invalid configuration: can only specify one of default_server_config, default_server_name, or default_hs_url.": "Configuración non válida: só se pode indicar un de default_server_config, default_server_name, ou default_hs_url.", "Invalid configuration: no default server specified.": "Configuración non válida: non se indicou servidor por omisión.", @@ -30,8 +23,6 @@ "Go to your browser to complete Sign In": "Abre o navegador para realizar a Conexión", "%(appName)s (%(browserName)s, %(osName)s)": "%(appName)s (%(browserName)s, %(osName)s)", "Unsupported browser": "Navegador non soportado", - "Your browser can't run Riot": "O teu navegador non pode executar Riot", - "Riot uses advanced browser features which aren't supported by your current browser.": "Riot utiliza funcións avanzadas dos navegadores que o teu actual non soporta.", "Please install Chrome, Firefox, or Safari for the best experience.": "Instala Chrome, Firefox, ou Safari para ter unha mellor experiencia.", "You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Podes continuar co teu navegador, pero algunhas características poderían non funcionar e o aspecto da aplicación podería non ser o correcto.", "I understand the risks and wish to continue": "Entendo os riscos e desexo continuar", diff --git a/src/i18n/strings/he.json b/src/i18n/strings/he.json index 0dd80a2aef..b915d94abb 100644 --- a/src/i18n/strings/he.json +++ b/src/i18n/strings/he.json @@ -2,16 +2,11 @@ "Custom Server Options": "הגדרות שרת מותאמות אישית", "Dismiss": "שחרר", "powered by Matrix": "מופעל ע\"י Matrix", - "%(brand)s Desktop on %(platformName)s": "רייוט לשולחן העבודה על גבי %(platformName)s", "Unknown device": "מכשיר לא ידוע", "You need to be using HTTPS to place a screen-sharing call.": "עליך להשתמש ב HTTPS בכדי לבצע שיחת ווידאו משותפת.", "Welcome to Riot.im": "ברוכים הבאים ל Riot.im", - "Chat with Riot Bot": "שיחה עם Riot בוט", - "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s באמצעות הדפדפן %(browserName)s על גבי %(osName)s", "Decentralised, encrypted chat & collaboration powered by [matrix]": "צ'ט מוצפן & ושת\"פ נעשה ע\"י ה [matrix]", - "Your Riot configuration contains invalid JSON. Please correct the problem and reload the page.": "תצורת Riot שלך מכילה JSON לא חוקי. אנא תקן את הבעיה וטען מחדש את הדף.", "Invalid JSON": "JSON לא חוקי", - "Your Riot is misconfigured": "ה Riot שלך מוגדר באופן שגוי", "Invalid configuration: can only specify one of default_server_config, default_server_name, or default_hs_url.": "תצורה שגויה: ניתן לציין רק אחד מהבאים, default_server_config, default_server_name, או default_hs_url.", "Invalid configuration: no default server specified.": "תצורה שגויה: לא צוין שרת ברירת מחדל.", "Open user settings": "פתיחת הגדרות משתמש", diff --git a/src/i18n/strings/hi.json b/src/i18n/strings/hi.json index ebfde7893a..2c2d562727 100644 --- a/src/i18n/strings/hi.json +++ b/src/i18n/strings/hi.json @@ -1,18 +1,13 @@ { - "%(brand)s Desktop on %(platformName)s": "%(platformName)s पर रायट डेस्कटॉप", "Unknown device": "अज्ञात यन्त्र", - "%(appName)s via %(browserName)s on %(osName)s": "%(osName)s पर %(browserName)s के माध्यम से %(appName)s", "You need to be using HTTPS to place a screen-sharing call.": "स्क्रीन साझा की कॉल करने के लिए आपको HTTPS का उपयोग करने की आवश्यकता है।", "Custom Server Options": "कस्टम सर्वर विकल्प", "Dismiss": "खारिज", "powered by Matrix": "मैट्रिक्स द्वारा संचालित", "Welcome to Riot.im": "Riot.im में आपका स्वागत है", "Decentralised, encrypted chat & collaboration powered by [matrix]": "[मैट्रिक्स] द्वारा संचालित विकेंद्रीकृत, एन्क्रिप्टेड चैट और सहयोगिता", - "Chat with Riot Bot": "रायट बॉट के साथ चैट करें", "Sign In": "साइन करना", "Create Account": "खाता बनाएं", - "Need help?": "मदद चाहिए?", "Explore rooms": "रूम का अन्वेषण करें", - "Room Directory": "कक्ष निर्देशिका", "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "आप एक अलग होमसर्वर URL निर्दिष्ट करके अन्य मैट्रिक्स सर्वर में साइन इन करने के लिए कस्टम सर्वर विकल्पों का उपयोग कर सकते हैं। यह आपको एक अलग होमसर्वर पर मौजूदा मैट्रिक्स खाते के साथ रायट का उपयोग करने की अनुमति देता है।" } diff --git a/src/i18n/strings/hr.json b/src/i18n/strings/hr.json index f7f03a7532..743eb049be 100644 --- a/src/i18n/strings/hr.json +++ b/src/i18n/strings/hr.json @@ -1,12 +1,9 @@ { - "%(brand)s Desktop on %(platformName)s": "%(brand)s Desktop na %(platformName)s", "Unknown device": "Nepoznati uređaj", - "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s preko %(browserName)s na %(osName)s", "You need to be using HTTPS to place a screen-sharing call.": "Morate koristiti HTTPS kako biste pokrenuli poziv s dijeljenjem ekrana.", "Custom Server Options": "Prilagođene opcije poslužitelja", "Dismiss": "Odbaci", "powered by Matrix": "powered by Matrix", "Welcome to Riot.im": "Dobrodošli u Riot.im", - "Chat with Riot Bot": "Razgovor s Riot Botom", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Decentralizirani, enkriptirani chat & kolaboracija powered by [matrix]" } diff --git a/src/i18n/strings/hu.json b/src/i18n/strings/hu.json index 6c26d70f97..454b8a01a5 100644 --- a/src/i18n/strings/hu.json +++ b/src/i18n/strings/hu.json @@ -2,24 +2,17 @@ "Custom Server Options": "Egyéni kiszolgálóbeállítások", "Dismiss": "Eltüntetés", "powered by Matrix": "a gépházban: Matrix", - "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s alkalmazás %(browserName)s böngészőn %(osName)s rendszeren", - "%(brand)s Desktop on %(platformName)s": "%(brand)s Desktop itt: %(platformName)s", "Unknown device": "Ismeretlen eszköz", "You need to be using HTTPS to place a screen-sharing call.": "Képernyőmegosztás indításához HTTPS-t kell használnod.", "Welcome to Riot.im": "Üdvözöl a Riot.im", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Decentralizált, titkosított csevegés és kollaboráció [matrix] alapokon", - "Chat with Riot Bot": "Csevegés a Riot Robottal", "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Használhatsz egyéni kiszolgálóbeállításokat, hogy más Matrix-kiszolgálóra jelentkezz be, úgy, hogy megadod a másik kiszolgáló URL-jét. Ezzel a Riotot használhatod más Matrix kiszolgálón lévő fiókkal.", "Sign In": "Bejelentkezés", "Create Account": "Fiók létrehozása", - "Need help?": "Segíthetünk?", "Explore rooms": "Szobák felderítése", - "Room Directory": "Szobalista", "Unexpected error preparing the app. See console for details.": "Váratlan hiba történt az alkalmazás előkészítésénél. A részletekért nézd meg a konzolt.", "Invalid configuration: can only specify one of default_server_config, default_server_name, or default_hs_url.": "Érvénytelen konfiguráció: csak egyet lehet megadni a default_server_config, default_server_name és default_hs_url közül.", "Invalid configuration: no default server specified.": "Érvénytelen konfiguráció: nincs megadva alapértelmezett kiszolgáló.", - "Your Riot is misconfigured": "A Riotod hibásan van beállítva", - "Your Riot configuration contains invalid JSON. Please correct the problem and reload the page.": "A Riot beállításod érvénytelen JSON szöveget tartalmaz. Kérlek javítsd és töltsd újra az oldalt.", "The message from the parser is: %(message)s": "A feldolgozó algoritmus üzenete: %(message)s", "Invalid JSON": "Érvénytelen JSON", "Go to your browser to complete Sign In": "A böngészőben fejezd be a bejelentkezést", @@ -30,8 +23,6 @@ "%(brand)s Desktop (%(platformName)s)": "Asztali Riot (%(platformName)s)", "%(appName)s (%(browserName)s, %(osName)s)": "%(appName)s (%(browserName)s, %(osName)s)", "Unsupported browser": "A böngésző nem támogatott", - "Your browser can't run Riot": "A böngésződ nem tudja futtatni a Riotot", - "Riot uses advanced browser features which aren't supported by your current browser.": "A Riot fejlett böngészőfunkciókat használt, amit a jelenlegi böngésződ nem támogat.", "Please install Chrome, Firefox, or Safari for the best experience.": "A legjobb élmény eléréséhez kérlek telepíts Chrome-ot, Firefoxot vagy Safarit.", "You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Folytathatod a jelenlegi böngésződdel, de néhány vagy az összes funkció használhatatlan lehet, vagy hibák lehetnek az alkalmazás kinézetében és viselkedésében.", "I understand the risks and wish to continue": "Megértettem a kockázatot és folytatom", diff --git a/src/i18n/strings/id.json b/src/i18n/strings/id.json index 6ef0362a14..9a234da169 100644 --- a/src/i18n/strings/id.json +++ b/src/i18n/strings/id.json @@ -1,12 +1,9 @@ { - "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s melalui %(browserName)s di %(osName)s", "Custom Server Options": "Pilihan Server Khusus", "Dismiss": "Abaikan", "powered by Matrix": "didukung oleh Matrix", - "%(brand)s Desktop on %(platformName)s": "%(brand)s Desktop di %(platformName)s", "Unknown device": "Perangkat Tidak Diketahui", "You need to be using HTTPS to place a screen-sharing call.": "Anda perlu menggunakan HTTPS untuk melakukan panggilan berbagi-layar.", "Welcome to Riot.im": "Selamat datang di Riot.im", - "Decentralised, encrypted chat & collaboration powered by [matrix]": "Obrolan terenkripsi, terdesentralisasi & kolaborasi didukung oleh [matrix]", - "Chat with Riot Bot": "Mengobrol dengan bot Riot" + "Decentralised, encrypted chat & collaboration powered by [matrix]": "Obrolan terenkripsi, terdesentralisasi & kolaborasi didukung oleh [matrix]" } diff --git a/src/i18n/strings/is.json b/src/i18n/strings/is.json index 2a15f61366..a5640ffee7 100644 --- a/src/i18n/strings/is.json +++ b/src/i18n/strings/is.json @@ -1,12 +1,9 @@ { - "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s með %(browserName)s á %(osName)s", "powered by Matrix": "keyrt með Matrix", "Welcome to Riot.im": "Velkomin í Riot.im", - "%(brand)s Desktop on %(platformName)s": "Riot skjáborðsforrit á %(platformName)s", "Unknown device": "Óþekkt tæki", "Dismiss": "Hafna", "Custom Server Options": "Sérsniðnir valkostir vefþjóns", "You need to be using HTTPS to place a screen-sharing call.": "Þú verður að nota HTTPS til að hringja samtal með deilingu á skjá.", - "Chat with Riot Bot": "Spjalla við Riot-róbótann", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Dulritað dreifvinnsluspjall & samstarfstól keyrt með [matrix]" } diff --git a/src/i18n/strings/it.json b/src/i18n/strings/it.json index fe64b82aa6..3998d563c8 100644 --- a/src/i18n/strings/it.json +++ b/src/i18n/strings/it.json @@ -2,24 +2,17 @@ "Custom Server Options": "Opzioni server personalizzate", "Dismiss": "Chiudi", "powered by Matrix": "offerto da Matrix", - "%(brand)s Desktop on %(platformName)s": "%(brand)s Desktop su %(platformName)s", "Unknown device": "Dispositivo sconosciuto", "You need to be using HTTPS to place a screen-sharing call.": "Devi usare HTTPS per effettuare una chiamata con la condivisione dello schermo.", "Welcome to Riot.im": "Benvenuti su Riot.im", - "Chat with Riot Bot": "Chatta con Riot Bot", - "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s tramite %(browserName)s su %(osName)s", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Chat criptate, decentralizzate e collaborazioni offerte da [matrix]", "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Puoi usare le opzioni di server personalizzato per accedere ad altri server Matrix specificando un URL homeserver diverso. Ciò ti permette di usare Riot con un account Matrix esistente su un homeserver differente.", "Sign In": "Accedi", "Create Account": "Crea account", - "Need help?": "Serve aiuto?", "Explore rooms": "Esplora stanze", - "Room Directory": "Elenco stanze", "Unexpected error preparing the app. See console for details.": "Errore inaspettato preparando l'app. Vedi la console per i dettagli.", "Invalid configuration: can only specify one of default_server_config, default_server_name, or default_hs_url.": "Configurazione non valida: specificare solo uno di default_server_config, default_server_name, o default_hs_url.", "Invalid configuration: no default server specified.": "Configurazione non valida: nessun server predefinito specificato.", - "Your Riot is misconfigured": "Il tuo Riot è configurato male", - "Your Riot configuration contains invalid JSON. Please correct the problem and reload the page.": "La tua configurazione di Riot contiene un JSON non valido. Correggi il problema e ricarica la pagina.", "The message from the parser is: %(message)s": "Il messaggio dal parser è: %(message)s", "Invalid JSON": "JSON non valido", "Go to your browser to complete Sign In": "Vai nel tuo browser per completare l'accesso", @@ -30,8 +23,6 @@ "%(brand)s Desktop (%(platformName)s)": "%(brand)s Desktop (%(platformName)s)", "%(appName)s (%(browserName)s, %(osName)s)": "%(appName)s (%(browserName)s, %(osName)s)", "Unsupported browser": "Browser non supportato", - "Your browser can't run Riot": "Il tuo browser non può avviare Riot", - "Riot uses advanced browser features which aren't supported by your current browser.": "Riot usa caratteristiche avanzate del browser che non sono supportate dal tuo.", "Please install Chrome, Firefox, or Safari for the best experience.": "Installa Chrome, Firefox, o Safari per una migliore esperienza.", "You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Puoi comunque usare il browser attuale, ma alcune o tutte le caratteristiche potrebbero non funzionare e l'aspetto dell'applicazione potrebbe essere sbagliato.", "I understand the risks and wish to continue": "Capisco i rischi e desidero continuare", diff --git a/src/i18n/strings/ja.json b/src/i18n/strings/ja.json index d3a567fdf6..7817781ef7 100644 --- a/src/i18n/strings/ja.json +++ b/src/i18n/strings/ja.json @@ -1,29 +1,20 @@ { "Welcome to Riot.im": "Riot.im へようこそ", "Unknown device": "不明な端末", - "%(appName)s via %(browserName)s on %(osName)s": "%(appName)sは%(osName)sの%(browserName)s上で動作しています", "Custom Server Options": "カスタムサーバのオプション", "Dismiss": "やめる", "powered by Matrix": "powered by Matrix", - "%(brand)s Desktop on %(platformName)s": "%(platformName)s向けデスクトップ版Riot", "You need to be using HTTPS to place a screen-sharing call.": "画面共有通話を行うにはHTTPS通信を使う必要があります。", "Decentralised, encrypted chat & collaboration powered by [matrix]": "[matrix] による、分散型で暗号化された会話とコラボレーション", - "Chat with Riot Bot": "Riot Botと会話", "Unexpected error preparing the app. See console for details.": "アプリケーションの準備中に予期しないエラーが発生しました。詳細はコンソールを参照してください。", - "Your Riot is misconfigured": "あなたのRiotは設定が間違っています", "Invalid configuration: no default server specified.": "不正な設定です:デフォルトのサーバーが設定されていません。", "Sign In": "サインイン", "Create Account": "アカウント作成", - "Need help?": "助けが必要ですか?", "Explore rooms": "部屋を探索する", - "Room Directory": "部屋のディレクトリー", - "Your Riot configuration contains invalid JSON. Please correct the problem and reload the page.": "Riotの設定に妥当でないJSONが含まれています。問題を修正してページを再読みしてください。", "The message from the parser is: %(message)s": "パーザーのメッセージ: %(message)s", "Invalid JSON": "妥当でないJSON", "Invalid configuration: can only specify one of default_server_config, default_server_name, or default_hs_url.": "無効な設定: default_server_config、default_server_name、または default_hs_urlのいずれか一つのみが指定できます。", "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "サーバーのカスタムオプションに別のホームサーバーURLを指定することで他のMatrixサーバーにサインインすることができます。これにより別のホームサーバー上で既にあるMatrixのアカウントでRiotを使うことができます。", - "Your browser can't run Riot": "このブラウザでは Riot を実行できません", - "Riot uses advanced browser features which aren't supported by your current browser.": "Riot ではこのブラウザでサポートされていない高度な機能を利用しています。", "Please install Chrome, Firefox, or Safari for the best experience.": "最高のユーザー体験を得るためには、ChromeFirefox、もしくはSafariをインストールしてください。", "You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "現在のブラウザを使い続けることもできますが、いくつか (もしくは全ての) 機能が動作しない可能性や、外観が崩れる可能性があります。", "I understand the risks and wish to continue": "リスクを理解したうえで続行する", diff --git a/src/i18n/strings/jbo.json b/src/i18n/strings/jbo.json index ed333439d9..a573f29912 100644 --- a/src/i18n/strings/jbo.json +++ b/src/i18n/strings/jbo.json @@ -1,12 +1,9 @@ { - "%(brand)s Desktop on %(platformName)s": "la skami nu zunti ci'e la'o gy. %(platformName)s .gy.", "Unknown device": "lo na'e te djuno se pilno", - "%(appName)s via %(browserName)s on %(osName)s": "la'o gy. %(appName)s .gy. xe be'i la'o gy. %(browserName)s .gy. ci'e la'o gy. %(osName)s .gy.", "You need to be using HTTPS to place a screen-sharing call.": ".i la .hytytypysys. sarcu lo nu co'a vidni jorne", "Custom Server Options": "lo macnu se cuxna be fi lo'i samse'u", "Dismiss": "mipri", "powered by Matrix": ".i la nacmeimei cu cumgau", "Welcome to Riot.im": ".i fi'i lo pilno be la nu zunti", - "Decentralised, encrypted chat & collaboration powered by [matrix]": ".i la nacmeimei cu cumgau lo mifra je na'e se midju nu tavla je ke kansa gunka", - "Chat with Riot Bot": "tavla la nu zunti kei sampre" + "Decentralised, encrypted chat & collaboration powered by [matrix]": ".i la nacmeimei cu cumgau lo mifra je na'e se midju nu tavla je ke kansa gunka" } diff --git a/src/i18n/strings/ka.json b/src/i18n/strings/ka.json index 6917cda53e..93f31dc1d5 100644 --- a/src/i18n/strings/ka.json +++ b/src/i18n/strings/ka.json @@ -1,12 +1,9 @@ { - "%(brand)s Desktop on %(platformName)s": "%(brand)s Desktop-ი %(platformName)s-ზე", "Unknown device": "უცნობი მოწყობილობა", - "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s-ი %(browserName)s-ით %(osName)s-იდან", "You need to be using HTTPS to place a screen-sharing call.": "ეკრანის გაზიარების ფუნქციის მქონე ზარისთვის საჭიროა, იყენებდეთ HTTPS-ს.", "Custom Server Options": "პერსონალიზებული სერვერის პარამეტრები", "Dismiss": "უარის თქმა", "powered by Matrix": "Matrix-ზე დაფუძნებული", "Welcome to Riot.im": "კეთილი იყოს თქვენი მობრძანება Riot.im-ზე", - "Decentralised, encrypted chat & collaboration powered by [matrix]": "დეცენტრალიზებული, დაშიფრული ჩატი & კოლაბორაცია, დაფუძნებული [matrix]-ზე", - "Chat with Riot Bot": "ისაუბრეთ Riot-ის Bot-თან" + "Decentralised, encrypted chat & collaboration powered by [matrix]": "დეცენტრალიზებული, დაშიფრული ჩატი & კოლაბორაცია, დაფუძნებული [matrix]-ზე" } diff --git a/src/i18n/strings/kab.json b/src/i18n/strings/kab.json index 747849a7a1..18c02cce3a 100644 --- a/src/i18n/strings/kab.json +++ b/src/i18n/strings/kab.json @@ -14,8 +14,6 @@ "Missing indexeddb worker script!": "Asekript n uxeddam Indexeddb ulac-it!", "Invalid configuration: can only specify one of default_server_config, default_server_name, or default_hs_url.": "Tawila d tarmeɣtut: mudd-d kan yiwen seg default_server_config, default_server_name, neɣ default_hs_url.", "Invalid configuration: no default server specified.": "Tawila d tarmeɣtut: ulac aqeddac amezwer i d-yettwafernen.", - "Your Riot is misconfigured": "Riot inek(inem) ur ittusbadu ara", - "Your Riot configuration contains invalid JSON. Please correct the problem and reload the page.": "Tawila-inek n Riot yesεa JSON armeɣtu. Ma ulac aɣilif, seɣti ugur syen smiren asebter.", "The message from the parser is: %(message)s": "Izen n umaslaḍ d: %(message)s", "Unable to load config file: please refresh the page to try again.": "Yegguma ad d-yali ufaylu n twila: ma ulac aɣilif smiren asebter akken ad tεerḍeḍ tikkelt-nniḍen.", "Unexpected error preparing the app. See console for details.": "Tella-d tuccḍa lawan n uheyyi n usnas: Wali tadiwent i wugar telqeyt.", @@ -23,8 +21,6 @@ "You need to be using HTTPS to place a screen-sharing call.": "Ilaq-ak(am) ad tesqedceḍ HTTPs akken ad tesεeddiḍ asiwel s beṭṭu n ugdil.", "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Tzemreḍ ad tesqedceḍ tixtiṛiyin n uqeddac udmawan akken ad teqqneḍ ɣer iqeddacen-nniḍenn Matrix s ufran n URL n uqeddac agejdan-nniḍen. Ayagi ad ak-yeǧǧ ad tesqedceḍ Riot s umiḍan Matrix yellan ɣef uqeddac agejdan-nniḍen.", "Unsupported browser": "Ur yettusefrak ara yiminig", - "Your browser can't run Riot": "Iminig-ik(im) ur isedday ara Riot", - "Riot uses advanced browser features which aren't supported by your current browser.": "Riot isseqdac timahilin n yiminig leqqayen ur nettusefrak ara d yiminig-ik(im) amiran.", "Please install Chrome, Firefox, or Safari for the best experience.": "Ma ulac aɣilif, sebded Chrome, Firefox, neɣSafari i tirmit igerrzen.", "You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Tzemreḍ ad tkemmleḍ deg useqdec n yiminig-ik(im) amiran, maca kra n tmahilin neɣ akk zemrent ur nteddu ara, rnu arwes n usnas yezmer ad d-iban d armeɣtu.", "I understand the risks and wish to continue": "Gziɣ ayen ara d-yeḍrun maca bɣiɣ ad kemmleɣ", diff --git a/src/i18n/strings/ko.json b/src/i18n/strings/ko.json index a926790ac3..95b21302e0 100644 --- a/src/i18n/strings/ko.json +++ b/src/i18n/strings/ko.json @@ -2,26 +2,19 @@ "Custom Server Options": "맞춤 서버 설정", "Dismiss": "버리기", "powered by Matrix": "Matrix의 지원을 받음", - "%(brand)s Desktop on %(platformName)s": "%(platformName)s 용 Riot 데스크톱", "Unknown device": "알 수 없는 기기", "Welcome to Riot.im": "Riot.im에 오신 것을 환영합니다", - "Chat with Riot Bot": "Riot 봇과 대화", - "%(appName)s via %(browserName)s on %(osName)s": "%(osName)s 용 %(browserName)s에서 연 %(appName)s", "You need to be using HTTPS to place a screen-sharing call.": "화면 공유 전화를 걸려면 HTTPS를 사용해야 합니다.", "Decentralised, encrypted chat & collaboration powered by [matrix]": "분산되고, 암호화된 대화 & [matrix]의 지원으로 협력", - "Your Riot configuration contains invalid JSON. Please correct the problem and reload the page.": "Riot 설정이 올바르지 않은 JSON을 포함하고 있습니다. 문제를 해결한 후, 페이지를 새로고침하세요.", "The message from the parser is: %(message)s": "파서에서 온 메시지: %(message)s", "Invalid JSON": "잘못된 JSON", - "Your Riot is misconfigured": "Riot이 잘못 설정됨", "Unexpected error preparing the app. See console for details.": "앱을 준비하는 동안 예기치 않은 오류가 발생했습니다. 자세한 내용은 콘솔을 확인하세요.", "Invalid configuration: can only specify one of default_server_config, default_server_name, or default_hs_url.": "잘못된 설정: default_server_config 와 defalut_server_name, default_hs_url 중 하나만 지정할 수 있습니다.", "Invalid configuration: no default server specified.": "잘못된 설정: 기본 서버가 지정되지 않았습니다.", "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "다른 홈서버 URL을 지정함으로써 맞춤 서버 옵션을 사용, 다른 Matrix 서버에 로그인할 수 있습니다. 이를 통해 다른 홈서버의 기존 Matrix 계정으로 Riot을 사용할 수 있습니다.", "Sign In": "로그인", "Create Account": "계정 만들기", - "Need help?": "도움이 필요합니까?", "Explore rooms": "방 검색", - "Room Directory": "방 목록", "Unable to load config file: please refresh the page to try again.": "설정 파일을 불러오는 데 실패: 페이지를 새로고침한 후에 다시 시도해 주십시오.", "Open user settings": "사용자 설정 열기", "Previous/next recently visited room or community": "최근에 방문한 이전/다음 방 또는 커뮤니티", @@ -29,8 +22,6 @@ "Go to your browser to complete Sign In": "로그인을 완료하려면 브라우저로 이동해주세요", "%(appName)s (%(browserName)s, %(osName)s)": "%(appName)s (%(browserName)s, %(osName)s)", "Unsupported browser": "지원되지 않는 브라우저", - "Your browser can't run Riot": "사용중이신 브라우저는 Riot을 실행할 수 없습니다", - "Riot uses advanced browser features which aren't supported by your current browser.": "Riot은 현재 사용중이신 브라우저에서는 지원하지 않는 고급 브라우저 기능을 사용합니다.", "Please install Chrome, Firefox, or Safari for the best experience.": "최상의 경험을 위해 Chrome, Firefox, 또는 Safari를 설치해주세요.", "You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "현재 사용중이신 브라우저를 계속 사용하셔도 됩니다, 다만 일부 기능들이 작동하지 않을 수 있으며 애플리케이션이 잘못돼 보일 수 있습니다.", "I understand the risks and wish to continue": "위험하다는 것을 이해했으며 계속하고 싶습니다", diff --git a/src/i18n/strings/lt.json b/src/i18n/strings/lt.json index 873bba289a..a168c0d9c7 100644 --- a/src/i18n/strings/lt.json +++ b/src/i18n/strings/lt.json @@ -2,22 +2,15 @@ "Unknown device": "Nežinomas įrenginys", "powered by Matrix": "veikia su Matrix", "Welcome to Riot.im": "Sveiki atvykę į Riot.im", - "Chat with Riot Bot": "Kalbėtis su Riot Botu", - "%(brand)s Desktop on %(platformName)s": "%(brand)s Desktop, naudojant %(platformName)s", - "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s per %(browserName)s, naudojant %(osName)s", "You need to be using HTTPS to place a screen-sharing call.": "Norint skambinti naudojant ekrano vaizdo dalijimosi funkciją, jūs turite naudoti HTTPS.", "Custom Server Options": "Pasirinktiniai Serverio Nustatymai", "Dismiss": "Atmesti", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Decentralizuoti, šifruoti pokalbiai ir bendradarbiavimas, veikiantis su [matrix]", "Sign In": "Prisijungti", "Create Account": "Sukurti Paskyrą", - "Need help?": "Reikia pagalbos?", "Explore rooms": "Žvalgyti kambarius", - "Room Directory": "Kambarių katalogas", - "Your Riot configuration contains invalid JSON. Please correct the problem and reload the page.": "Jūsų Riot konfigūracijoje yra klaidingas JSON. Prašome pataisyti problemą ir iš naujo užkrauti puslapį.", "The message from the parser is: %(message)s": "Analizatoriaus žinutė yra: %(message)s", "Invalid JSON": "Klaidingas JSON", - "Your Riot is misconfigured": "Jūsų Riot yra neteisingai sukonfigūruotas", "Unexpected error preparing the app. See console for details.": "Netikėta klaida ruošiant programą. Norėdami sužinoti daugiau detalių, žiūrėkite konsolę.", "Invalid configuration: can only specify one of default_server_config, default_server_name, or default_hs_url.": "Klaidinga konfigūracija: galima nurodyti tik vieną iš default_server_config, default_server_name, arba default_hs_url.", "Invalid configuration: no default server specified.": "Klaidinga konfigūracija: nenurodytas numatytasis serveris.", @@ -30,8 +23,6 @@ "%(brand)s Desktop (%(platformName)s)": "Riot Kompiuteriui (%(platformName)s)", "%(appName)s (%(browserName)s, %(osName)s)": "%(appName)s (%(browserName)s, %(osName)s)", "Unsupported browser": "Nepalaikoma naršyklė", - "Your browser can't run Riot": "Jūsų naršyklė negali paleisti Riot", - "Riot uses advanced browser features which aren't supported by your current browser.": "Riot naudoja išplėstines funkcijas, kurių jūsų dabartinė naršyklė nepalaiko.", "Please install Chrome, Firefox, or Safari for the best experience.": "Riot geriausiai veikia su Chrome, Firefox, arba Safari naršyklėmis.", "You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Jūs galite toliau naudotis savo dabartine naršykle, bet kai kurios arba visos funkcijos gali neveikti ir programos išvaizda bei sąsaja gali būti neteisingai rodoma.", "I understand the risks and wish to continue": "Suprantu šią riziką ir noriu tęsti", diff --git a/src/i18n/strings/lv.json b/src/i18n/strings/lv.json index 71a398578a..cc442af3dd 100644 --- a/src/i18n/strings/lv.json +++ b/src/i18n/strings/lv.json @@ -1,33 +1,24 @@ { - "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s caur %(browserName)s un %(osName)s", "Custom Server Options": "Iestatāmās servera opcijas", "Dismiss": "Atteikt", "powered by Matrix": "Tiek darbināta ar Matrix", - "%(brand)s Desktop on %(platformName)s": "Riot darbvirsma %(platformName)s", "Unknown device": "Nezināma ierīce", "You need to be using HTTPS to place a screen-sharing call.": "Lai izmantotu ekrāna kopīgošanas zvanu, nepieciešams izmantot HTTPS savienojumu.", "Welcome to Riot.im": "Esiet gaidīti Riot.im", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Decentralizēta, šifrēta čata & kopdarbošanās sistēma uz [matrix] bāzes", - "Chat with Riot Bot": "Pačatot ar Riot botu", "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Varat izmantot pielāgotās servera opcijas, lai pierakstītos citos Matrix serveros, norādot citu mājas servera URL. Tas ļauj jums izmantot Riot ar esošu Matrix kontu citā mājas serverī.", "Sign In": "Ienākt", "Create Account": "Izveidot kontu", - "Need help?": "Nepieciešama palīdzība?", "Explore rooms": "Atklāt istabas", - "Room Directory": "Istabu Katalogs", "Unexpected error preparing the app. See console for details.": "Negaidīta kļūda, sagatavojot lietotni. Sīkāku informāciju skatiet konsolē.", "Invalid configuration: can only specify one of default_server_config, default_server_name, or default_hs_url.": "Nederīga konfigurācija: var norādīt tikai vienu no default_server_config, default_server_name, vai default_hs_url.", "Invalid configuration: no default server specified.": "Nekorekta konfigurācija: nav norādīts noklusējuma serveris.", - "Your Riot configuration contains invalid JSON. Please correct the problem and reload the page.": "Jūsu Riot konfigurācijā ir nederīgs JSON. Lūdzu, izlabojiet problēmu un ielādējiet lapu atkārtoti.", "The message from the parser is: %(message)s": "Ziņojums no parsētāja ir: %(message)s", "Invalid JSON": "Nederīgs JSON", - "Your Riot is misconfigured": "Jūsu Riot ir nepareizi konfigurēts", "Unable to load config file: please refresh the page to try again.": "Neizdevās ielādēt config datni: lūdzu pārlādē lapu lai mēģinātu vēlreiz.", "Open user settings": "Atver lietotāja iestatījumus", "Go to your browser to complete Sign In": "Aizej uz savu pārlūku lai pabeigtu Piekļuvi", "Unsupported browser": "Neatbalstīts pārlūks", - "Your browser can't run Riot": "Tavs pārlūks nevar palaist Riot", - "Riot uses advanced browser features which aren't supported by your current browser.": "", "Please install Chrome, Firefox, or Safari for the best experience.": "Lūdzu instalē Chrome, Firefox, vai Safari priekš labākās pieredzes.", "You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Tu vari turpināt izmantot savu pašreizējo pārlūku, bet dažas vai visas funkcijas nestrādās, un lietotnes izskats var būt nepareizs.", "I understand the risks and wish to continue": "Es pieņemu riskus un vēlos turpināt", diff --git a/src/i18n/strings/ml.json b/src/i18n/strings/ml.json index ec4cae04fb..44dbd65bb0 100644 --- a/src/i18n/strings/ml.json +++ b/src/i18n/strings/ml.json @@ -1,12 +1,9 @@ { - "%(appName)s via %(browserName)s on %(osName)s": "%(osName)sല്‍ %(browserName)s വഴി %(appName)s", "Custom Server Options": "കസ്റ്റം സെര്‍വര്‍ ഓപ്ഷനുകള്‍", "Dismiss": "ഒഴിവാക്കുക", "powered by Matrix": "മാട്രിക്സില്‍ പ്രവര്‍ത്തിക്കുന്നു", - "%(brand)s Desktop on %(platformName)s": "%(platformName)s ലെ റയട്ട് ഡെസ്ക്ടോപ്പ്", "Unknown device": "അപരിചിത ഡിവൈസ്", "You need to be using HTTPS to place a screen-sharing call.": "സ്ക്രീന്‍ ഷെയറിങ്ങ് കോള്‍ നടത്തണമെങ്കില്‍ https ഉപയോഗിക്കണം.", "Welcome to Riot.im": "റയട്ടിലേക്ക് സ്വാഗതം", - "Chat with Riot Bot": "റയട്ട് ബോട്ടുമായി ചാറ്റ് ചെയ്യുക", "Decentralised, encrypted chat & collaboration powered by [matrix]": "വികേന്ദ്രീകൃത , എന്‍ക്രിപ്റ്റഡ് ചാറ്റ് & മാട്രിക്സ് നല്‍കുന്ന കൊളാബൊറേഷന്‍" } diff --git a/src/i18n/strings/mn.json b/src/i18n/strings/mn.json index 54524d6872..92693a852d 100644 --- a/src/i18n/strings/mn.json +++ b/src/i18n/strings/mn.json @@ -1,14 +1,10 @@ { - "Your Riot configuration contains invalid JSON. Please correct the problem and reload the page.": "Таны Риот тохиргоо буруу ЖСОН агуулж байна. Зөв болгоод, хуудсыг ахин дуудна уу.", "The message from the parser is: %(message)s": "Парсераас ирсэн мессеж нь: %(message)s", "Invalid JSON": "Буруу ЖСОН", - "Your Riot is misconfigured": "Таны РИОТ тохиргоо буруу", "Unexpected error preparing the app. See console for details.": "Апп бэлдэх үед гарах ёсгүй алдаа. Дэлгэрэнгүйг консолоос харна уу.", "Invalid configuration: can only specify one of default_server_config, default_server_name, or default_hs_url.": "Буруу тохиргоо: default_server_config, default_server_name, эсвэл default_hs_url утгын зөвхөн аль нэгийг л зааж болно.", "Invalid configuration: no default server specified.": "Буруу тохиргоо: Өгөгдсөл серверийг зааж өгөөгүй байна.", - "%(brand)s Desktop on %(platformName)s": "%(platformName)s дээрх Риот Десктоп", "Unknown device": "Үл мэдэгдэх төхөөрөмж", - "%(appName)s via %(browserName)s on %(osName)s": "%(osName)s дээр %(browserName)s -ээр дамжсан %(appName)s", "You need to be using HTTPS to place a screen-sharing call.": "Та дэлгэц хуваалцах дуудлага хийхдээ HTTPS ашиглах ёстой.", "powered by Matrix": "Matrix - Ивээв", "Custom Server Options": "Кастом серверийн сонголтууд", @@ -18,10 +14,7 @@ "Decentralised, encrypted chat & collaboration powered by [matrix]": "Төвлөрсөн бус, нууцлалтай чат & хамтын ажиллагааг [matrix] - ивээв", "Sign In": "Нэвтрэх", "Create Account": "Хэрэглэгч үүсгэх", - "Need help?": "Тусламж хэрэгтэй юу?", - "Chat with Riot Bot": "Риот боттой чатлах", "Explore rooms": "Өрөөнүүд үзэх", - "Room Directory": "Өрөөний директор", "Open user settings": "Хэрэглэгчийн тохиргоо нээх", "Go to your browser to complete Sign In": "Бүрэн нэвтрэхийн тулд вэб хөтөч рүү шилжинэ үү" } diff --git a/src/i18n/strings/nb_NO.json b/src/i18n/strings/nb_NO.json index edeb1d9e75..570e76af75 100644 --- a/src/i18n/strings/nb_NO.json +++ b/src/i18n/strings/nb_NO.json @@ -1,24 +1,17 @@ { "Custom Server Options": "Server-instillinger", "powered by Matrix": "Drevet av Matrix", - "%(brand)s Desktop on %(platformName)s": "%(brand)s Desktop på %(platformName)s", "Unknown device": "Ukjent enhet", - "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s via %(browserName)s på %(osName)s", "You need to be using HTTPS to place a screen-sharing call.": "Du er nødt til å bruke HTTPS for å ha en samtale med skjermdeling.", "Dismiss": "Avvis", "Welcome to Riot.im": "Velkommen til Riot.im", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Desentralisert, kryptert chat & samarbeid drevet av [matrix]", - "Chat with Riot Bot": "Chat med Riot Bot", "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Du kan bruke instillinger for «egendefinert tjener» til å logge inn på andre Matrix-tjenere ved å spesifisere en annen URL. Dette lar deg bruke Riot med en eksisterende Matrix-konto på en annen hjemmetjener.", "Sign In": "Logg inn", "Create Account": "Opprett konto", - "Need help?": "Trenger du hjelp?", - "Room Directory": "Alle rom", "Explore rooms": "Se alle rom", - "Your Riot configuration contains invalid JSON. Please correct the problem and reload the page.": "Riot-konfigurasjonen din inneholder ugyldig JSON. Vennligst fiks problemet og oppdater siden.", "The message from the parser is: %(message)s": "Meldingen fra parseren er: %(message)s", "Invalid JSON": "Ugyldig JSON", - "Your Riot is misconfigured": "Ditt Riot-oppsett er feiloppsatt", "Invalid configuration: no default server specified.": "Ugyldig konfigurasjon: ingen standardserver spesifisert.", "Unexpected error preparing the app. See console for details.": "Uventet feil oppsto mens appen ble gjort klar. Se konsollen for detaljer.", "Invalid configuration: can only specify one of default_server_config, default_server_name, or default_hs_url.": "Ugyldig konfigurasjon: Spesifiser kun en av følgende: default_server_config, default_server_name eller default_hs_url.", diff --git a/src/i18n/strings/nl.json b/src/i18n/strings/nl.json index 94ed89a4e7..e51aa893b8 100644 --- a/src/i18n/strings/nl.json +++ b/src/i18n/strings/nl.json @@ -2,24 +2,17 @@ "Custom Server Options": "Aangepaste serverinstellingen", "Dismiss": "Afwijzen", "powered by Matrix": "draait op Matrix", - "%(brand)s Desktop on %(platformName)s": "%(brand)s Desktop op %(platformName)s", "Unknown device": "Onbekend apparaat", "You need to be using HTTPS to place a screen-sharing call.": "Oproepen met schermdelen vergen HTTPS.", "Welcome to Riot.im": "Welkom bij Riot.im", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Gedecentraliseerd en versleuteld chatten & samenwerken dankzij [matrix]", - "Chat with Riot Bot": "Met Riot-robot chatten", - "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s via %(browserName)s op %(osName)s", "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Met aangepaste serverinstellingen kunt u zich door een andere thuisserver-URL in te voeren aanmelden bij andere Matrix-servers. Zo kunt u Riot met een bestaand Matrix-account op een andere thuisserver gebruiken.", "Sign In": "Aanmelden", "Create Account": "Account aanmaken", - "Need help?": "Hulp nodig?", "Explore rooms": "Gesprekken ontdekken", - "Room Directory": "Gesprekscatalogus", "Unexpected error preparing the app. See console for details.": "Er is een onverwachte fout opgetreden bij het voorbereiden van de app. Zie de console voor details.", "Invalid configuration: can only specify one of default_server_config, default_server_name, or default_hs_url.": "Configuratiefout: kan slechts één van default_server_config, default_server_name, of default_hs_url opgeven.", "Invalid configuration: no default server specified.": "Configuratie ongeldig: geen standaardserver opgegeven.", - "Your Riot is misconfigured": "Uw Riot is verkeerd geconfigureerd", - "Your Riot configuration contains invalid JSON. Please correct the problem and reload the page.": "Uw Riot-configuratie bevat ongeldige JSON. Corrigeer het probleem en herlaad de pagina.", "The message from the parser is: %(message)s": "De ontleder meldt: %(message)s", "Invalid JSON": "Ongeldige JSON", "Go to your browser to complete Sign In": "Ga naar uw browser om de aanmelding te voltooien", @@ -30,8 +23,6 @@ "%(brand)s Desktop (%(platformName)s)": "%(brand)s Desktop (%(platformName)s)", "%(appName)s (%(browserName)s, %(osName)s)": "%(appName)s (%(browserName)s, %(osName)s)", "Unsupported browser": "Niet-ondersteunde browser", - "Your browser can't run Riot": "Riot werkt niet in uw browser", - "Riot uses advanced browser features which aren't supported by your current browser.": "Riot gebruikt geavanceerde features die niet door uw huidige browser ondersteund worden.", "Please install Chrome, Firefox, or Safari for the best experience.": "Installeer Chrome, Firefox, of Safari voor de beste gebruikservaring.", "You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "U kunt uw huidige browser blijven gebruiken, maar sommige of alle features zouden niet kunnen werken en de uitstraling van het programma kan verkeerd zijn.", "I understand the risks and wish to continue": "Ik begrijp de risico's en wil verder gaan", diff --git a/src/i18n/strings/nn.json b/src/i18n/strings/nn.json index 1194c941d3..8ee7a8a7e1 100644 --- a/src/i18n/strings/nn.json +++ b/src/i18n/strings/nn.json @@ -1,24 +1,17 @@ { - "%(brand)s Desktop on %(platformName)s": "Riot på Skrivebord for %(platformName)s", "Unknown device": "Ukjend eining", - "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s gjennom %(browserName)s på %(osName)s", "You need to be using HTTPS to place a screen-sharing call.": "Du må bruka HTTPS for å ha ein samtale med skjermdeling.", "Dismiss": "Avvis", "powered by Matrix": "Matrixdriven", "Welcome to Riot.im": "Velkomen til Riot.im", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Desentralisert, kryptert nettprat & samarbeid drive av [matrix]", - "Chat with Riot Bot": "Nettprat med Riot Bot", "Custom Server Options": "Tilpassa tenar-innstillingar", "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Du kan nytta dei eigendefinerte tenarinstillingane for å logga inn på andre Matrix-tenarar ved å uppgje ein annan heimtenar-URL. Dette lèt deg bruka Riot med ein Matrix-konto som allereie finst på ein annan heimtenar.", "Sign In": "Logg inn", "Create Account": "Opprett konto", - "Need help?": "Treng du hjelp?", "Explore rooms": "Utforsk romma", - "Room Directory": "Romkatalog", - "Your Riot configuration contains invalid JSON. Please correct the problem and reload the page.": "Riot-oppsettet ditt inneheld ugyldig JSON-kode. Korriger dette og last inn sida på nytt.", "The message from the parser is: %(message)s": "Meldinga frå kodetolkaren er: %(message)s", "Invalid JSON": "Ugyldig JSON", - "Your Riot is misconfigured": "Riot-klienten din er sett opp feil", "Unexpected error preparing the app. See console for details.": "Uventa feil under lasting av programmet. Sjå konsollen for detaljar.", "Invalid configuration: can only specify one of default_server_config, default_server_name, or default_hs_url.": "Ugyldig oppsett: berre muleg å berre spesifiere ein av default_server_config, default_server_name eller default_hs_url.", "Invalid configuration: no default server specified.": "Ugyldig oppsett: ingen \"default server\" er spesifisert." diff --git a/src/i18n/strings/oc.json b/src/i18n/strings/oc.json index 9c1da30aec..3855a59c71 100644 --- a/src/i18n/strings/oc.json +++ b/src/i18n/strings/oc.json @@ -1,13 +1,9 @@ { - "Your Riot configuration contains invalid JSON. Please correct the problem and reload the page.": "Vòstra configuracion Riot conten de JSON invalid. Mercés de corregir lo problèma e d’actualizar la pagina.", "The message from the parser is: %(message)s": "Lo messatge de l’analisaire es : %(message)s", "Invalid JSON": "Invalid JSON", - "Your Riot is misconfigured": "Vòstre Riot es mal configurat", "Unexpected error preparing the app. See console for details.": "Error inesperada en preparant l’aplicacion. Vejatz la consòla pels detalhs.", - "%(brand)s Desktop on %(platformName)s": "%(brand)s Desktop sus %(platformName)s", "Go to your browser to complete Sign In": "Anatz al navegador per acabar la connexion", "Unknown device": "Periferic desconegut", - "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s via %(browserName)s sus %(osName)s", "powered by Matrix": "propulsat per Matrix", "Custom Server Options": "Opcions de servidor personalizat", "Dismiss": "Refusar", @@ -15,8 +11,5 @@ "Decentralised, encrypted chat & collaboration powered by [matrix]": "Messatjariá chifrada, descentralizada e collaborativa propulsada per [matrix]", "Sign In": "Se connectar", "Create Account": "Crear un compte", - "Need help?": "Besonh d’ajuda ?", - "Chat with Riot Bot": "Charrar amb lo robòt Riot", - "Explore rooms": "Percórrer las salas", - "Room Directory": "Annuari de las sala" + "Explore rooms": "Percórrer las salas" } diff --git a/src/i18n/strings/pl.json b/src/i18n/strings/pl.json index a44fb06ac2..0830215c4e 100644 --- a/src/i18n/strings/pl.json +++ b/src/i18n/strings/pl.json @@ -1,23 +1,16 @@ { - "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s przez %(browserName)s na %(osName)s", "Custom Server Options": "Niestandardowe opcje serwera", "Dismiss": "Zamknij", - "%(brand)s Desktop on %(platformName)s": "%(brand)s Desktop na %(platformName)s", "powered by Matrix": "napędzany przez Matrix", "Unknown device": "Nieznane urządzenie", "You need to be using HTTPS to place a screen-sharing call.": "Musisz używać bezpiecznego protokołu HTTPS aby użyć połączenia współdzielenia ekranu.", "Welcome to Riot.im": "Witamy w Riot.im", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Zdecentralizowany, szyfrowany czat & współpraca oparta na [matrix]", - "Chat with Riot Bot": "Rozmowa z Botem Riota", "Create Account": "Stwórz konto", "Sign In": "Zaloguj", - "Need help?": "Potrzebujesz pomocy?", - "Room Directory": "Katalog pokojów", "Explore rooms": "Przeglądaj pokoje", - "Your Riot configuration contains invalid JSON. Please correct the problem and reload the page.": "Konfiguracja Twojego Riot zawiera błędny plik JSON. Popraw swoją konfigurację i odśwież stronę.", "The message from the parser is: %(message)s": "Wiadomość od parsera to: %(message)s", "Invalid JSON": "Błędny JSON", - "Your Riot is misconfigured": "Twój Riot jest źle skonfigurowany", "Unexpected error preparing the app. See console for details.": "Niespodziewany błąd podczas przygotowywania aplikacji. Otwórz konsolę po szczegóły.", "Invalid configuration: can only specify one of default_server_config, default_server_name, or default_hs_url.": "Błędna konfiguracja. Akceptowalne wartości to: default_server_config, default_server_name, default_hs_url.", "Invalid configuration: no default server specified.": "Błędna konfiguracja: nie wybrano domyślnego serwera.", @@ -30,8 +23,6 @@ "%(brand)s Desktop (%(platformName)s)": "%(brand)s Desktop (%(platformName)s)", "%(appName)s (%(browserName)s, %(osName)s)": "%(appName)s (%(browserName)s, %(osName)s)", "Unsupported browser": "Niewspierana przeglądarka", - "Your browser can't run Riot": "Twoja przeglądarka nie jest w stanie uruchomić Riota", - "Riot uses advanced browser features which aren't supported by your current browser.": "Riot używa zaawansowanych funkcji, które nie są dostępne na Twojej obecnej przeglądarce.", "Please install Chrome, Firefox, or Safari for the best experience.": "Zainstaluj Chrome, Firefox, lub Safari w celu zapewnienia najlepszego działania.", "You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Możesz kontynuować używanie obecnej przeglądarki, lecz niektóre lub wszystkie funkcje mogą nie działać oraz wygląd aplikacji może być niepoprawny.", "I understand the risks and wish to continue": "Rozumiem ryzyko i chcę kontynuować", diff --git a/src/i18n/strings/pt.json b/src/i18n/strings/pt.json index 02c543c0af..268edefeee 100644 --- a/src/i18n/strings/pt.json +++ b/src/i18n/strings/pt.json @@ -2,25 +2,18 @@ "Custom Server Options": "Opções do Servidor Personalizado", "Dismiss": "Descartar", "powered by Matrix": "powered by Matrix", - "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s via %(browserName)s em %(osName)s", - "%(brand)s Desktop on %(platformName)s": "%(brand)s Desktop em %(platformName)s", "Unknown device": "Dispositivo desconhecido", "You need to be using HTTPS to place a screen-sharing call.": "Necessita de estar a usar HTTPS para poder iniciar uma chamada com partilha de ecrã.", "Welcome to Riot.im": "Bem-vindo ao Riot.im", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Chat descentralizado, encriptado & colaborativo powered by [matrix]", - "Chat with Riot Bot": "Falar com o Bot do Riot", - "Your Riot configuration contains invalid JSON. Please correct the problem and reload the page.": "A sua configuração do Riot contém JSON inválido. Por favor corrija o erro e recarregue a página.", "The message from the parser is: %(message)s": "A mensagem do parser é: %(message)s", "Invalid JSON": "JSON inválido", - "Your Riot is misconfigured": "Existe um erro na configuração do Riot", "Unexpected error preparing the app. See console for details.": "Erro inesperado na preparação da aplicação. Veja a consola para mais detalhes.", "Invalid configuration: can only specify one of default_server_config, default_server_name, or default_hs_url.": "Configuração inválida: só pode especificar uma das default_server_config, default_server_name, ou default_hs_url.", "Invalid configuration: no default server specified.": "Configuração inválida: servidor padrão não especificado.", "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Pode usar as opções de servidor personalizado, para iniciar sessão noutros servidores Matrix, especificando o URL do homeserver diferente. Isto autoriza-lo-á a usar Riot com a sua conta Matrix num servidor diferente.", "Sign In": "Iniciar sessão", "Create Account": "Criar conta", - "Need help?": "Ajuda?", "Explore rooms": "Explorar rooms", - "Room Directory": "Diretório de rooms", "Go to your browser to complete Sign In": "Abra o seu navegador para completar o inicio de sessão" } diff --git a/src/i18n/strings/pt_BR.json b/src/i18n/strings/pt_BR.json index e21df0bb11..c7cf81bed7 100644 --- a/src/i18n/strings/pt_BR.json +++ b/src/i18n/strings/pt_BR.json @@ -2,23 +2,16 @@ "Custom Server Options": "Opções para Servidor Personalizado", "Dismiss": "Descartar", "powered by Matrix": "oferecido por Matrix", - "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s via %(browserName)s em %(osName)s", - "%(brand)s Desktop on %(platformName)s": "Riot para computadores desktop em %(platformName)s", "Unknown device": "Dispositivo desconhecido", "You need to be using HTTPS to place a screen-sharing call.": "Você precisa estar usando HTTPS para poder iniciar uma chamada com compartilhamento de tela.", "Welcome to Riot.im": "Seja bem-vinda(o) a Riot.im", - "Chat with Riot Bot": "Converse com o bot do Riot", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Chat descentralizado, criptografado e colaborativo oferecido por [matrix]", "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Você pode usar as opções personalizadas do servidor para entrar em outros servidores Matrix, especificando um URL diferente de homeserver. Isso permite que você use o Riot com uma conta Matrix existente em um homeserver diferente.", "Sign In": "Entrar", "Create Account": "Criar Conta", - "Need help?": "Precisa de ajuda?", "Explore rooms": "Explore as salas", - "Room Directory": "Diretório de salas", - "Your Riot configuration contains invalid JSON. Please correct the problem and reload the page.": "Sua configuração do Riot contém JSON inválido. Por favor corrija o erro e atualize a página.", "The message from the parser is: %(message)s": "A mensagem do parser é: %(message)s", "Invalid JSON": "JSON inválido", - "Your Riot is misconfigured": "Riot possui um erro de configuração", "Unexpected error preparing the app. See console for details.": "Erro inesperado preparando o aplicativo. Veja o console para mais detalhes.", "Invalid configuration: can only specify one of default_server_config, default_server_name, or default_hs_url.": "Configuração inválida: somente se pode especificar um valor entre default_server_config, default_server_name, ou default_hs_url.", "Invalid configuration: no default server specified.": "Configuração inválida: servidor padrão não especificado.", @@ -27,8 +20,6 @@ "Open user settings": "Abrir configurações do usuário", "%(appName)s (%(browserName)s, %(osName)s)": "%(appName)s (%(browserName)s, %(osName)s)", "Unsupported browser": "Navegador não suportado", - "Your browser can't run Riot": "Riot não funciona em seu navegador", - "Riot uses advanced browser features which aren't supported by your current browser.": "Riot usa recursos avançados do navegador que não são suportados pelo seu navegador atual.", "Please install Chrome, Firefox, or Safari for the best experience.": "Instale o Chrome , o Firefox ou o Safari para obter uma melhor experiência.", "You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Você pode continuar usando o navegador atual, mas alguns dos recursos podem não funcionar e a aparência do aplicativo pode estar incorreta.", "I understand the risks and wish to continue": "Entendo os riscos e desejo continuar", diff --git a/src/i18n/strings/ro.json b/src/i18n/strings/ro.json index db409c4648..f59c91fba7 100644 --- a/src/i18n/strings/ro.json +++ b/src/i18n/strings/ro.json @@ -1,27 +1,20 @@ { - "%(brand)s Desktop on %(platformName)s": "%(brand)s Desktop pe %(platformName)s", "Unknown device": "Device necunoscut", "Custom Server Options": "Opțiuni Server Personalizate", "Dismiss": "Închide", "powered by Matrix": "propulsat de Matrix", "Welcome to Riot.im": "Bun venit pe Riot.im", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Chat decentralizat, criptat & colaborare propulsata de [matrix]", - "Chat with Riot Bot": "Discută cu Riot Bot", - "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s via %(browserName)s pe %(osName)s", "You need to be using HTTPS to place a screen-sharing call.": "Trebuie să folosești HTTPS pentru a plasa un apel de tip screen-sharing.", "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Puteți utiliza opțiunile personalizate ale serverului pentru a vă conecta la alte servere Matrix specificând o adresă URL diferită pentru homeserver. Acest lucru vă permite să utilizați Riot cu un cont Matrix existent pe un alt server de domiciliu.", "Sign In": "Autentificare", "Create Account": "Înregistare", - "Need help?": "Ai nevoie de ajutor?", "Explore rooms": "Explorează camerele", - "Room Directory": "Lista de camere", "Invalid configuration: can only specify one of default_server_config, default_server_name, or default_hs_url.": "Configuratie invalida: se poate specifica doar una dintre default_server_config, default_server_name, or default_hs_url.", - "Your Riot is misconfigured": "Aplicatia ta Riot e gresit configurata", "Invalid JSON": "JSON invalid", "%(brand)s Desktop (%(platformName)s)": "%(brand)s Desktop (%(platformName)s)", "%(appName)s (%(browserName)s, %(osName)s)": "%(appName)s (%(browserName)s, %(osName)s)", "Unsupported browser": "Acest browser nu este suportat", - "Your browser can't run Riot": "Browserul tau nu poate rula Riot", "Please install Chrome, Firefox, or Safari for the best experience.": "Instalati va rog Chrome, Firefox, or Safari pentru o experienta mai buna.", "I understand the risks and wish to continue": "Inteleg riscul si doresc sa continui", "Go to Riot.im": "Acceseaza Riot.im", diff --git a/src/i18n/strings/ru.json b/src/i18n/strings/ru.json index f7c2bcbc43..3d64f139d8 100644 --- a/src/i18n/strings/ru.json +++ b/src/i18n/strings/ru.json @@ -2,24 +2,17 @@ "Custom Server Options": "Параметры другого сервера", "Dismiss": "Отклонить", "powered by Matrix": "основано на Matrix", - "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s с %(browserName)s на %(osName)s", - "%(brand)s Desktop on %(platformName)s": "%(brand)s Desktop на %(platformName)s", "Unknown device": "Неизвестное устройство", "You need to be using HTTPS to place a screen-sharing call.": "Для трансляции рабочего стола требуется использование HTTPS.", "Welcome to Riot.im": "Добро пожаловать в Riot.im", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Децентрализованный, шифрованный чат и совместное рабочее пространство на основе [matrix]", - "Chat with Riot Bot": "Чат с ботом Riot", "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Вы можете изменить параметры для входа на другие Matrix серверы, указав другой URL.\nЭто позволит использовать Riot с учетной записью Matrix, существующей на другом сервере.", "Sign In": "Войти", "Create Account": "Создать учётную запись", - "Need help?": "Помочь?", - "Room Directory": "Каталог комнат", "Explore rooms": "Исследуйте комнаты", "Unexpected error preparing the app. See console for details.": "Неожиданная ошибка при подготовке приложения. Подробности см. в консоли.", "Invalid configuration: can only specify one of default_server_config, default_server_name, or default_hs_url.": "Неверная конфигурация: может указывать только один из следующих параметров: default_server_config, default_server_name или default_hs_url.", "Invalid configuration: no default server specified.": "Неверная конфигурация: сервер по умолчанию не указан.", - "Your Riot is misconfigured": "Ваш Riot неправильно настроен", - "Your Riot configuration contains invalid JSON. Please correct the problem and reload the page.": "Ваша конфигурация Riot содержит нерабочий JSON. Пожалуйста исправьте проблему и перезагрузите страницу.", "The message from the parser is: %(message)s": "Сообщение из парсера: %(message)s", "Invalid JSON": "Нерабочий JSON", "Go to your browser to complete Sign In": "Перейдите в браузер для завершения входа", @@ -30,8 +23,6 @@ "%(brand)s Desktop (%(platformName)s)": "%(brand)s Desktop (%(platformName)s)", "%(appName)s (%(browserName)s, %(osName)s)": "%(appName)s (%(browserName)s, %(osName)s)", "Unsupported browser": "Неподдерживаемый браузер", - "Your browser can't run Riot": "Ваш браузер не может запустить Riot", - "Riot uses advanced browser features which aren't supported by your current browser.": "Riot использует расширенные возможности браузера, которые не поддерживаются вашим браузером.", "Please install Chrome, Firefox, or Safari for the best experience.": "Пожалуйста поставьте Chrome, Firefox, или Safari для лучшей совместимости.", "You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Вы можете продолжать пользоваться этим браузером но некоторые возможности будут недоступны и интерфейс может быть отрисован неправильно.", "I understand the risks and wish to continue": "Я понимаю риск и хочу продолжить", diff --git a/src/i18n/strings/sk.json b/src/i18n/strings/sk.json index ddc4d8e236..7e38c5f6a1 100644 --- a/src/i18n/strings/sk.json +++ b/src/i18n/strings/sk.json @@ -1,22 +1,15 @@ { - "%(brand)s Desktop on %(platformName)s": "%(brand)s Desktop pre %(platformName)s", "Unknown device": "Neznáme zariadenie", - "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s cez %(browserName)s pre %(osName)s", "You need to be using HTTPS to place a screen-sharing call.": "Ak si želáte spustiť zdieľanie obrazovky, musíte byť pripojení cez protokol HTTPS.", "Custom Server Options": "Vlastné možnosti servera", "Dismiss": "Zamietnuť", "powered by Matrix": "poháňa Matrix", "Welcome to Riot.im": "Víta vás Riot.im", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Decentralizovaný, šifrovaný chat a spolupráca na platforme [matrix]", - "Chat with Riot Bot": "Konverzácia s Riot Bot", "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Môžete použiť vlastné možnosti servera na prihlásenie sa k ďalším serverom Matrix zadaním URL adresy domovského servera. Toto vám umožní použiť Riot na prihlásenie sa k existujúcemu Matrix účtu na inom domovskom servery.", "Sign In": "Prihlásiť sa", "Create Account": "Vytvoriť účet", - "Need help?": "Potrebujete pomoc?", "Explore rooms": "Preskúmať miestnosti", - "Room Directory": "Adresár miestností", - "Your Riot is misconfigured": "Váš Riot nie je nastavený správne", - "Your Riot configuration contains invalid JSON. Please correct the problem and reload the page.": "Tvoja RIOT konfigurácia obsahuje neplatný JSON. Prosím, oprav daný problém a načítaj stránku znova.", "The message from the parser is: %(message)s": "Správa z parsera je: %(message)s", "Invalid JSON": "Neplatný JSON", "Unexpected error preparing the app. See console for details.": "Neočakávaná chyba počas pripravovania aplikácie. Pre podrobnosti pozri konzolu.", @@ -30,8 +23,6 @@ "%(brand)s Desktop (%(platformName)s)": "%(brand)s Desktop (%(platformName)s)", "%(appName)s (%(browserName)s, %(osName)s)": "%(appName)s (%(browserName)s, %(osName)s)", "Unsupported browser": "Nepodporovaný prehliadač", - "Your browser can't run Riot": "Váš prehliadač nedokáže spustiť Riot", - "Riot uses advanced browser features which aren't supported by your current browser.": "Riot používa komplexnejšie funkcie prehliadača, ktoré nie sú podporované vo vašom prehliadači.", "Please install Chrome, Firefox, or Safari for the best experience.": "Prosím, nainštalujte si Chrome, Firefox alebo Safari pre najlepší zážitok.", "You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Môžete naďalej používať váš súčasný prehliadač, ale niektoré alebo všetky funkcie nemusia fungovať a zážitok z aplikácie nemusí byť optimálny.", "I understand the risks and wish to continue": "Rozumiem riziku a chcem pokračovať", diff --git a/src/i18n/strings/sl.json b/src/i18n/strings/sl.json index 83b9145fe9..b6a79e4efa 100644 --- a/src/i18n/strings/sl.json +++ b/src/i18n/strings/sl.json @@ -1,7 +1,5 @@ { - "%(brand)s Desktop on %(platformName)s": "Namizni Riot za %(platformName)s", "Unknown device": "Neznana naprava", - "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s s %(browserName)s na %(osName)s", "You need to be using HTTPS to place a screen-sharing call.": "Za klic s skupno rabo zaslona potrebujete HTTPS.", "powered by Matrix": "poganja Matrix", "Custom Server Options": "Možnosti strežnika po meri", @@ -11,8 +9,5 @@ "Decentralised, encrypted chat & collaboration powered by [matrix]": "Decentralizirano šifrirano sporočanje & sodelovanje s pomočjo [matrix]", "Sign In": "Prijava", "Create Account": "Registracija", - "Need help?": "Potrebujete pomoč?", - "Chat with Riot Bot": "Klepetajte z Riot Botom", - "Explore rooms": "Raziščite sobe", - "Room Directory": "Imenik sob" + "Explore rooms": "Raziščite sobe" } diff --git a/src/i18n/strings/sq.json b/src/i18n/strings/sq.json index b8bc55df31..1b8d2b8407 100644 --- a/src/i18n/strings/sq.json +++ b/src/i18n/strings/sq.json @@ -1,25 +1,18 @@ { - "%(brand)s Desktop on %(platformName)s": "%(brand)s Desktop në %(platformName)s", "Unknown device": "Pajisje e panjohur", - "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s përmes %(browserName)s nën %(osName)s", "You need to be using HTTPS to place a screen-sharing call.": "Që të bëni një thirrje me ndarje ekrani, duhet të jeni duke përdorur HTTPS-në.", "Custom Server Options": "Mundësi Vetjake Shërbyesi", "Dismiss": "Mos e merr parasysh", "powered by Matrix": "bazuar në Matrix", "Welcome to Riot.im": "Mirë se vini te Riot.im", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Fjalosje & bashkëpunim të decentralizuar, të fshehtëzuar, bazuar në [matrix]", - "Chat with Riot Bot": "Fjalosuni me Robotin Riot", "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Mund të përdorni mundësitë mbi shërbyes vetjak, për të bërë hyrjen në shërbyes të tjerë Matrix, duke dhënë një tjetër URL shërbyesi Home. Kjo ju lejon ta përdorni këtë aplikacion në një tjetër shërbyes Home, me një llogari ekzistuese Matrix.", "Sign In": "Hyni", "Create Account": "Krijoni Llogari", - "Need help?": "Ju duhet ndihmë?", "Explore rooms": "Eksploroni dhoma", - "Room Directory": "Listë Dhomash", "Unexpected error preparing the app. See console for details.": "Gabim i papritur gjatë përgatitjes së aplikacionit. Për hollësi, shihni konsolën.", "Invalid configuration: can only specify one of default_server_config, default_server_name, or default_hs_url.": "Formësim i pavlefshëm: mund të caktohet vetëm një prej default_server_config, default_server_name, ose default_hs_url.", "Invalid configuration: no default server specified.": "Formësim i pavlefshëm: s’është caktuar shërbyes parazgjedhje.", - "Your Riot is misconfigured": "Riot-i juaj është i keqformësuar", - "Your Riot configuration contains invalid JSON. Please correct the problem and reload the page.": "Formësimi juaj i Riot-it përmban JSON. Ju lutemi, ndreqeni problemin dhe ringarkoni faqen.", "The message from the parser is: %(message)s": "Mesazhi prej procesit është: %(message)s", "Invalid JSON": "JSON i pavlefshëm", "Go to your browser to complete Sign In": "Që të plotësoni Hyrjen, kaloni te shfletuesi juaj", @@ -29,8 +22,6 @@ "%(brand)s Desktop (%(platformName)s)": "%(brand)s Desktop (%(platformName)s)", "%(appName)s (%(browserName)s, %(osName)s)": "%(appName)s (%(browserName)s, %(osName)s)", "Unsupported browser": "Shfletues i pambuluar", - "Your browser can't run Riot": "Shfletuesi juaj s’xhiron dot Riot-in", - "Riot uses advanced browser features which aren't supported by your current browser.": "Riot-i përdor veçori të përparuara shfletuesi, të cilat nuk mbulohen nga shfletuesi juaj i tanishëm.", "Please install Chrome, Firefox, or Safari for the best experience.": "Ju lutemi, për funksionimin më të mirë, instaloni Chrome, Firefox, ose Safari.", "You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Mund të vazhdoni të përdorni shfletuesin tuaj të tanishëm, por disa ose krejt veçoritë mund të mos funksionojnë dhe pamja dhe ndjesitë prej aplikacionit të mos jenë të sakta.", "I understand the risks and wish to continue": "I kuptoj rreziqet dhe dëshiroj të vazhdoj", diff --git a/src/i18n/strings/sr.json b/src/i18n/strings/sr.json index 0c0808157b..6c8fce5bf7 100644 --- a/src/i18n/strings/sr.json +++ b/src/i18n/strings/sr.json @@ -1,23 +1,16 @@ { - "%(brand)s Desktop on %(platformName)s": "Riot стони програм за %(platformName)s", "Unknown device": "Непознати уређај", - "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s преко прегледача %(browserName)s на систему %(osName)s", "You need to be using HTTPS to place a screen-sharing call.": "Морате користити HTTPS да бисте започели позив са дељењем екрана.", "Custom Server Options": "Прилагођене опције сервера", "Dismiss": "Одбаци", "powered by Matrix": "покреће Матрикс", "Welcome to Riot.im": "Добродошли у Riot.im", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Децентрализовано, шифровано ћаскање и сарадња коју покреће [matrix]", - "Chat with Riot Bot": "Ћаскајте са Riot ботом", "Sign In": "Пријава", "Create Account": "Направи налог", - "Need help?": "Потребна помоћ?", "Explore rooms": "Истражи собе", - "Room Directory": "Фасцикла са собама", "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Можете користити опције прилагођеног сервера да бисте се пријавили на друге Матрикс сервере тако што ћете навести другачију адресу кућног сервера. Ово вам омогућава да користите Riot са постојећим Матрикс налогом на другом кућном серверу.", - "Your Riot is misconfigured": "Ваш Riot није добро подешен", "Invalid configuration: no default server specified.": "Погрешно подешавање: подразумевани сервер није наведен.", - "Your Riot configuration contains invalid JSON. Please correct the problem and reload the page.": "Ваша Riot конфигурација садржи погрешан JSON. Молим исправите проблем и поново учитајте страну.", "The message from the parser is: %(message)s": "Порука из парсера: %(message)s", "Invalid JSON": "Погрешан JSON", "Unexpected error preparing the app. See console for details.": "Неочекивана грешка приликом припреме апликације. Погледајте конзолу за више детаља.", diff --git a/src/i18n/strings/sr_Latn.json b/src/i18n/strings/sr_Latn.json index 012803b038..e4e52bc45e 100644 --- a/src/i18n/strings/sr_Latn.json +++ b/src/i18n/strings/sr_Latn.json @@ -1,14 +1,10 @@ { - "Your Riot configuration contains invalid JSON. Please correct the problem and reload the page.": "Vaša Riot konfiguracija sadrži pogrešan JSON. Molim ispravite problem i ponovo učitajte stranu.", "The message from the parser is: %(message)s": "Poruka iz parsera je: %(message)s", "Invalid JSON": "Pogrešan JSON", - "Your Riot is misconfigured": "Vaš Riot nije dobro podešen", "Unexpected error preparing the app. See console for details.": "Neočekivana greška prilikom pripreme aplikacije. Pogledajte konzolu za više detalja.", "Invalid configuration: can only specify one of default_server_config, default_server_name, or default_hs_url.": "Pogrešno podešavanje: možete navesti samo jednu vrednost od default_server_config, default_server_name, or default_hs_url.", "Invalid configuration: no default server specified.": "Pogrešno podešavanje: podrazumevani server nije naveden.", - "%(brand)s Desktop on %(platformName)s": "%(brand)s Desktop na %(platformName)s", "Unknown device": "Nepoznat uređaj", - "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s preko %(browserName)s na %(osName)s", "You need to be using HTTPS to place a screen-sharing call.": "Treba da koristite HTTPS da bi ste započeli poziv sa deljenjem ekrana.", "powered by Matrix": "pokreće Matriks", "Custom Server Options": "Prilagođene opcije servera", @@ -18,8 +14,5 @@ "Decentralised, encrypted chat & collaboration powered by [matrix]": "Decentralizovano, šifrovano ćaskanje & i saradnja koju pokreće [matrix]", "Sign In": "Prijavite se", "Create Account": "Napravite nalog", - "Need help?": "Potrebna pomoć?", - "Chat with Riot Bot": "Ćaskajte sa Riot botom", - "Explore rooms": "Istražite sobe", - "Room Directory": "Spisak soba" + "Explore rooms": "Istražite sobe" } diff --git a/src/i18n/strings/sv.json b/src/i18n/strings/sv.json index f88fd5eed8..634763845b 100644 --- a/src/i18n/strings/sv.json +++ b/src/i18n/strings/sv.json @@ -1,24 +1,17 @@ { "Custom Server Options": "Anpassade serverinställningar", "Dismiss": "Avvisa", - "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s via %(browserName)s på %(osName)s", "powered by Matrix": "drivs av Matrix", - "%(brand)s Desktop on %(platformName)s": "%(brand)s Desktop på %(platformName)s", "Unknown device": "Okänd enhet", "You need to be using HTTPS to place a screen-sharing call.": "Du måste använda HTTPS för att ringa med skärmdelning.", "Welcome to Riot.im": "Välkommen till Riot.im", - "Chat with Riot Bot": "Chatta med Riot Bot", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Decentraliserad, krypterad chatt & samarbetsplattform möjliggjort med [matrix]", "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Under anpassade serverinställningar kan du logga in på andra Matrixservrar genom att ange en egen hemserveradress. På så sätt kan du använda Riot med ett Matrixkonto du redan har på en annan hemserver.", "Sign In": "Logga in", "Create Account": "Skapa konto", - "Need help?": "Behöver du hjälp?", "Explore rooms": "Utforska rum", - "Room Directory": "Rumslista", - "Your Riot configuration contains invalid JSON. Please correct the problem and reload the page.": "Dina Riot-inställningar innehåller ogiltig JSON. Vänligen uppdatera inställningarna och ladda om sidan.", "The message from the parser is: %(message)s": "Medelandet från parsern är: %(message)s", "Invalid JSON": "Ogiltig JSON", - "Your Riot is misconfigured": "Riot är felkonfigurerat", "Unexpected error preparing the app. See console for details.": "Oväntat fel vid appstart. Se konsollen för mer information.", "Invalid configuration: can only specify one of default_server_config, default_server_name, or default_hs_url.": "Ogilitiga inställningar: enbart möjligt att specificera en default_config, default_server, eller default_hs_url.", "Invalid configuration: no default server specified.": "Ogilitiga inställningar: ingen standardserver specificerad.", @@ -30,8 +23,6 @@ "%(brand)s Desktop (%(platformName)s)": "%(brand)s Desktop (%(platformName)s)", "%(appName)s (%(browserName)s, %(osName)s)": "%(appName)s (%(browserName)s, %(osName)s)", "Unsupported browser": "Webbläsaren stöds ej", - "Your browser can't run Riot": "Din webbläsare kan inte köra Riot", - "Riot uses advanced browser features which aren't supported by your current browser.": "Riot användare avancerade webbläsarfunktioner som inte stöds av din nuvarande webbläsare.", "Please install Chrome, Firefox, or Safari for the best experience.": "Installera Chrome, Firefox, eller Safari för den bästa upplevelsen.", "You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Du kan fortsätta använda din nuvarande webbläsare, men vissa eller alla funktioner kanske inte fungerar och uteseendet samt känslan av applikationen kan var felaktig.", "I understand the risks and wish to continue": "Jag förstår riskerna och vill fortsätta", diff --git a/src/i18n/strings/ta.json b/src/i18n/strings/ta.json index e9c3011c7c..7617e0d087 100644 --- a/src/i18n/strings/ta.json +++ b/src/i18n/strings/ta.json @@ -1,17 +1,12 @@ { - "%(appName)s via %(browserName)s on %(osName)s": "%(osName)s -ல் %(browserName)s -ன் வழியாக %(appName)s", "Custom Server Options": "விருப்பிற்கேற்ற வழங்கி இடப்புகள்", "Dismiss": "நீக்கு", "powered by Matrix": "Matrix-ஆல் ஆனது", "Unknown device": "தெரியாத கருவி", - "%(brand)s Desktop on %(platformName)s": "%(platformName)s ற்க்கான Riot", "You need to be using HTTPS to place a screen-sharing call.": "நீங்கள் திரைபகிர்வு அழைப்பை மேற்க்கொள்ள HTTPS-ஐ பயன்படுத்த வேண்டும்.", "Welcome to Riot.im": "Riot.im -ற்க்கு வரவேற்க்கிறோம்", - "Chat with Riot Bot": "Riot இயங்கியிடம் உரையாடவும்", - "Your Riot configuration contains invalid JSON. Please correct the problem and reload the page.": "உங்கள் Riot உள்ளமைவில் தவறான JSON உள்ளது. சிக்கலை சரிசெய்து பக்கத்தை மீண்டும் ஏற்றவும்.", "The message from the parser is: %(message)s": "பாகுபடுத்தி அனுப்பிய செய்தி: %(message)s", "Invalid JSON": "தவறான JSON", - "Your Riot is misconfigured": "உங்கள் Riot தவறாக உள்ளமைக்கப்பட்டுள்ளது", "Unexpected error preparing the app. See console for details.": "பயன்பாட்டைத் தயாரிப்பதில் எதிர்பாராத பிழை. விவரங்களுக்கு console ஐப் பார்க்கவும்.", "Invalid configuration: can only specify one of default_server_config, default_server_name, or default_hs_url.": "தவறான உள்ளமைவு: default_server_config, default_server_name அல்லது default_hs_url இல் ஒன்றை மட்டுமே குறிப்பிட முடியும்.", "Invalid configuration: no default server specified.": "தவறான உள்ளமைவு: இயல்புநிலை சேவையகம் குறிப்பிடப்படவில்லை.", @@ -19,7 +14,5 @@ "Decentralised, encrypted chat & collaboration powered by [matrix]": "[matrix] ஆல் இயக்கப்படும் பரவலாக்கப்பட்ட, மறைகுறியாக்கப்பட்ட அரட்டை & ஒத்துழைப்பு", "Sign In": "உள்நுழைக", "Create Account": "உங்கள் கணக்கை துவங்குங்கள்", - "Need help?": "உதவி தேவை?", - "Explore rooms": "அறைகளை ஆராயுங்கள்", - "Room Directory": "அறை அடைவு" + "Explore rooms": "அறைகளை ஆராயுங்கள்" } diff --git a/src/i18n/strings/te.json b/src/i18n/strings/te.json index 38f4240bc2..063ff8d2d8 100644 --- a/src/i18n/strings/te.json +++ b/src/i18n/strings/te.json @@ -1,10 +1,7 @@ { - "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s %(browserName)s ద్వార %(osName)s కి", "Custom Server Options": "మలచిన సేవిక ఎంపికలు", "Dismiss": "రద్దుచేసే", - "%(brand)s Desktop on %(platformName)s": "రియట్ రంగస్థలం లో %(platformName)s", "Welcome to Riot.im": "రిమోట్.ఇం కి స్వగతం", - "Chat with Riot Bot": "రియోట్ బొట్తో మాటామంతి చేయండి", "Unknown device": "తెలుయని పరికరం", "You need to be using HTTPS to place a screen-sharing call.": "తెర ని పంచే కాల్ కి HTTPS అవసరం." } diff --git a/src/i18n/strings/th.json b/src/i18n/strings/th.json index 1ec464c04f..f0934d72cc 100644 --- a/src/i18n/strings/th.json +++ b/src/i18n/strings/th.json @@ -1,20 +1,14 @@ { - "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s ผ่านทาง %(browserName)s บน %(osName)s", "powered by Matrix": "ใช้เทคโนโลยี Matrix", "Dismiss": "ไม่สนใจ", "Unknown device": "อุปกรณ์ที่ไม่รู้จัก", "You need to be using HTTPS to place a screen-sharing call.": "คุณต้องใช้ HTTPS เพื่อเริ่มติดต่อแบบแบ่งปันหน้าจอ", - "%(brand)s Desktop on %(platformName)s": "%(brand)s Desktop บน %(platformName)s", "Custom Server Options": "กำหนดเซิร์ฟเวอร์เอง", "Welcome to Riot.im": "ยินดีต้อนรับสู่ Riot.im", - "Chat with Riot Bot": "แชทกับบอท Riot", "Decentralised, encrypted chat & collaboration powered by [matrix]": "ระบบแชทและประสานงาน ไร้ศูนย์กลางและเข้ารหัสได้ โดยใช้เทคโนโลยีจาก [matrix]", - "Your Riot configuration contains invalid JSON. Please correct the problem and reload the page.": "การตั้งค่า Riot ของคุณมี JSON ที่ไม่ถูกต้อง โปรดแก้ปัญหาและโหลดเพจอีกครั้ง", "The message from the parser is: %(message)s": "ข้อความจากparserคือ:%(message)s", "Invalid JSON": "JSON ไม่ถูกต้อง", - "Your Riot is misconfigured": "Riotของคุณตั้งค่าไม่ถูกต้อง", "Sign In": "เข้าสู่ระบบ", "Create Account": "สร้างบัญชี", - "Need help?": "ต้องการความช่วยเหลือ?", "Explore rooms": "สำรวจห้อง" } diff --git a/src/i18n/strings/tr.json b/src/i18n/strings/tr.json index db4d23521f..49ee7c38cc 100644 --- a/src/i18n/strings/tr.json +++ b/src/i18n/strings/tr.json @@ -1,23 +1,16 @@ { - "%(appName)s via %(browserName)s on %(osName)s": "%(osName)s işletim sisteminde %(browserName)s ile %(appName)s", "Custom Server Options": "Özelleştirilebilir Sunucu Seçenekleri", "Dismiss": "Kapat", "powered by Matrix": "Matrix'den besleniyor", - "%(brand)s Desktop on %(platformName)s": "%(platformName)s platformunda Riot Masaüstü", "Unknown device": "Bilinmeyen aygıt", "You need to be using HTTPS to place a screen-sharing call.": "Ekran paylaşımlı arama yapmak için HTTPS kullanıyor olmalısınız.", "Welcome to Riot.im": "Riot.im'e hoş geldiniz", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Merkezsiz, şifreli sohbet & işbirliği ile Matrix tarafından desteklenmektedir", - "Chat with Riot Bot": "Riot Bot ile Sohbet Et", "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Özel sunucu seçenekleri kullanıp farklı bir anamakine URL'si belirleyerek diğer Matrix sunucularına giriş yapabilirsin. Bu Riot'u varolan bir Matrix hesabı ile farklı anamakine de kullanmanı sağlar.", "Sign In": "Giriş Yap", "Create Account": "Hesap Oluştur", - "Need help?": "Yardıma mı ihtiyacın var?", "Explore rooms": "Odaları keşfet", - "Room Directory": "Oda Dizini", - "Your Riot configuration contains invalid JSON. Please correct the problem and reload the page.": "Riot yapılandırmanız geçersiz JSON ifadesi içermektedir. Lütfen problemi düzeltin ve sayfayı yenileyin.", "Invalid JSON": "Geçersiz JSON", - "Your Riot is misconfigured": "Riot hatalı ayarlanmış", "Unexpected error preparing the app. See console for details.": "Uygulama hazırlanırken beklenmeyen bir hata oldu. Detaylar için konsola bakın.", "Invalid configuration: can only specify one of default_server_config, default_server_name, or default_hs_url.": "Geçersiz yapılandırma: default_server_config, default_server_name, yada default_hs_url den sadece birisi seçilebilir.", "Invalid configuration: no default server specified.": "Geçersiz yapılandırma: varsayılan sunucu seçilmemiş.", diff --git a/src/i18n/strings/uk.json b/src/i18n/strings/uk.json index 18bcb223c0..9734d3f9bf 100644 --- a/src/i18n/strings/uk.json +++ b/src/i18n/strings/uk.json @@ -1,30 +1,21 @@ { "Custom Server Options": "Власні параметри сервера", - "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s через %(browserName)s на %(osName)s", "Dismiss": "Відхилити", "powered by Matrix": "працює на Matrix", - "%(brand)s Desktop on %(platformName)s": "%(brand)s Desktop на %(platformName)s", "Unknown device": "Невідомий пристрій", "You need to be using HTTPS to place a screen-sharing call.": "Ви маєте використовувати HTTPS щоб зробити виклик із поширенням екрану.", "Welcome to Riot.im": "Ласкаво просимо до Riot.im", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Децентралізована, зашифрована балачка та засіб для співробітництва, що працює на [matrix]", - "Chat with Riot Bot": "Балачка з Riot-ботом", "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Ви можете використати власні параметри сервера для входу в інші Matrix сервери, вказавши інший URL. Це дозволить використовувати Riot з наявною обліківкою Matrix на іншому сервері.", - "Need help?": "Допомогти?", "Sign In": "Увійти", "Create Account": "Створити обліківку", "Explore rooms": "Дослідити кімнати", - "Room Directory": "Каталог кімнат", "Unexpected error preparing the app. See console for details.": "Неочікувана помилка при підготовці програми. Дивіться деталі у виводі консолі.", "Invalid configuration: can only specify one of default_server_config, default_server_name, or default_hs_url.": "Невірна конфігурація: можна вказати лише default_server_config, default_server_name або default_hs_url.", "Invalid configuration: no default server specified.": "Невірна конфігурація: не вказано сервер за замовчуванням.", - "Your Riot configuration contains invalid JSON. Please correct the problem and reload the page.": "Ваша конфігурація Riot містить некоректний JSON. Виправте проблему та оновіть сторінку.", "The message from the parser is: %(message)s": "Повідомлення від парсера: %(message)s", "Invalid JSON": "Хибний JSON", - "Your Riot is misconfigured": "Ваш Riot налаштовано неправильно", "Unsupported browser": "Непідтримуваний переглядач", - "Your browser can't run Riot": "Ваш переглядач не може запустити Riot", - "Riot uses advanced browser features which aren't supported by your current browser.": "Riot використовує передові особливості, які не підтримуються вашим переглядачем.", "Please install Chrome, Firefox, or Safari for the best experience.": "Для найкращих вражень від користування встановіть, будь ласка, Chrome, Firefox, або Safari.", "You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Ви можете продовжити, користуючись вашим поточним переглядачем, але деякі функції можуть не працювати і застосунок може виглядати неправильно.", "I understand the risks and wish to continue": "Я усвідомлюю ризик і бажаю продовжити", diff --git a/src/i18n/strings/vi.json b/src/i18n/strings/vi.json index 9181f58b7c..d3ec5f8058 100644 --- a/src/i18n/strings/vi.json +++ b/src/i18n/strings/vi.json @@ -1,17 +1,12 @@ { - "%(brand)s Desktop on %(platformName)s": "%(brand)s Desktop trên %(platformName)s", "Unknown device": "Thiết bị không được nhận biết", - "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s với %(browserName)s trên %(osName)s", "You need to be using HTTPS to place a screen-sharing call.": "Bạn phải sử dụng HTTPS để dùng chức năng chia sẻ màn hình.", "Custom Server Options": "Các lựa chọn máy chủ", "Dismiss": "Bỏ qua", "powered by Matrix": "tài trợ bởi Matrix", "Welcome to Riot.im": "Chào mừng tới Riot.im", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Chat phân tán, mã hóa & giao tiếp được tài trợ bởi [matrix]", - "Chat with Riot Bot": "Chat với Riot Bot", "Unexpected error preparing the app. See console for details.": "Lỗi xảy ra trong lúc chuẩn bị app. Xem console log để biết chi tiết.", - "Your Riot is misconfigured": "Hệ thống Riot của bạn bị thiết lập sai", - "Your Riot configuration contains invalid JSON. Please correct the problem and reload the page.": "Thiết lập Riot của bạn chứa JSON không hợp lệ. Bạn hãy sửa lỗi và tải lại trang.", "The message from the parser is: %(message)s": "Nội dung tin là: %(message)s", "Invalid JSON": "JSON không hợp lệ", "Invalid configuration: can only specify one of default_server_config, default_server_name, or default_hs_url.": "Thiết lập không hợp lệ: chỉ có thể điền một trong số default_server_config, default_server_name, hoặc default_hs_url.", @@ -19,7 +14,5 @@ "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Bạn có thể sử dụng lựa chọn máy chủ khác để đăng nhập vào máy chủ Matrix bằng cách nhập đường dẫn máy chủ riêng. Cách này giúp bạn sử dụng Riot với máy chủ riêng của bạn.", "Sign In": "Đăng nhập", "Create Account": "Tạo tài khoản", - "Need help?": "Cần hỗ trợ?", - "Explore rooms": "Khám phá phòng chat", - "Room Directory": "Danh mục phòng" + "Explore rooms": "Khám phá phòng chat" } diff --git a/src/i18n/strings/vls.json b/src/i18n/strings/vls.json index 4a8f33f51c..a65d17c6af 100644 --- a/src/i18n/strings/vls.json +++ b/src/i18n/strings/vls.json @@ -2,9 +2,7 @@ "Unexpected error preparing the app. See console for details.": "’t Is een onverwachte foute ipgetreedn by ’t voorbereidn van den app. Bekykt de console vo details.", "Invalid configuration: can only specify one of default_server_config, default_server_name, or default_hs_url.": "Oungeldige configuroasje: ku moar één van default_server_config, default_server_name, of default_hs_url ingeevn.", "Invalid configuration: no default server specified.": "Oungeldige configuroasje: geen standoardserver ingegeevn.", - "%(brand)s Desktop on %(platformName)s": "%(brand)s Desktop ip %(platformName)s", "Unknown device": "Ounbekend toestel", - "%(appName)s via %(browserName)s on %(osName)s": "%(appName)s via %(browserName)s ip %(osName)s", "You need to be using HTTPS to place a screen-sharing call.": "Je moet HTTPS gebruukn vo een iproep me schermdeeln te kunn startn.", "powered by Matrix": "meuglik gemakt deur Matrix", "Custom Server Options": "Angepaste serverinstelliengn", @@ -14,12 +12,7 @@ "Decentralised, encrypted chat & collaboration powered by [matrix]": "Gedecentraliseerd en versleuteld chattn & soamenwerkn meuglik gemakt deur [matrix]", "Sign In": "Anmeldn", "Create Account": "Account anmoakn", - "Need help?": "Hulp nodig?", - "Chat with Riot Bot": "Chattn me Riot-robot", "Explore rooms": "Gesprekkn ountdekkn", - "Room Directory": "Gesprekscataloog", - "Your Riot is misconfigured": "Je Riot is verkeerd geconfigureerd gewist", - "Your Riot configuration contains invalid JSON. Please correct the problem and reload the page.": "Je Riot-configuroasje bevat oungeldigen JSON. Corrigeer ’t probleem en herload ’t blad.", "The message from the parser is: %(message)s": "’t Bericht van de verwerker is: %(message)s", "Invalid JSON": "Oungeldigen JSON", "Go to your browser to complete Sign In": "Goa noa je browser voe d’anmeldienge te voltooin" diff --git a/src/i18n/strings/zh_Hans.json b/src/i18n/strings/zh_Hans.json index a60dfa4fd3..5a83fba71e 100644 --- a/src/i18n/strings/zh_Hans.json +++ b/src/i18n/strings/zh_Hans.json @@ -1,24 +1,17 @@ { - "%(appName)s via %(browserName)s on %(osName)s": "在 %(osName)s 下 %(browserName)s 浏览器中运行的 %(appName)s", "Custom Server Options": "自定义服务器选项", "Dismiss": "标记为已读", "powered by Matrix": "由 Matrix 驱动", - "%(brand)s Desktop on %(platformName)s": "在 %(platformName)s 上运行的 Riot 桌面版", "Unknown device": "未知设备", "You need to be using HTTPS to place a screen-sharing call.": "您需要使用 HTTPS 以进行共享屏幕通话。", "Welcome to Riot.im": "欢迎来到 Riot.im", "Decentralised, encrypted chat & collaboration powered by [matrix]": "去中心化、加密聊天与协作,由 [matrix] 驱动", - "Chat with Riot Bot": "与 Riot 机器人聊天", "Sign In": "登入", "Create Account": "创建帐号", - "Need help?": "需要帮助?", "Explore rooms": "探索房间", - "Room Directory": "房间目录", "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "您可以在自定义服务器选项中通过指定其他主服务器的 URL 来登录其他 Matrix 服务器。 这允许您在不同的主服务器上通过已有的 Matrix 帐户来使用 Riot 。", - "Your Riot configuration contains invalid JSON. Please correct the problem and reload the page.": "您的 Riot 设置中有无效的 JSON,请将其修复并重新加载此页。", "The message from the parser is: %(message)s": "语法分析器的信息:%(message)s", "Invalid JSON": "无效的 JSON", - "Your Riot is misconfigured": "您的 Riot 配置有错误", "Unexpected error preparing the app. See console for details.": "软件准备时出错,详细信息请查看控制台。", "Invalid configuration: can only specify one of default_server_config, default_server_name, or default_hs_url.": "无效的配置:只能设置 default_server_config,default_server_name,或 default_hs_url 中的一个。", "Invalid configuration: no default server specified.": "无效的配置:没有设置默认服务器。", @@ -30,8 +23,6 @@ "Go to your browser to complete Sign In": "去您的浏览器完成登录", "%(appName)s (%(browserName)s, %(osName)s)": "%(appName)s (%(browserName)s, %(osName)s)", "Unsupported browser": "不支持的浏览器", - "Your browser can't run Riot": "您的浏览器无法运行 Riot", - "Riot uses advanced browser features which aren't supported by your current browser.": "Riot 使用了不被您目前的浏览器支持的高级功能。", "Please install Chrome, Firefox, or Safari for the best experience.": "请安装 ChromeFirefoxSafari 以获得最佳体验。", "You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "您可以继续使用您目前的浏览器,但部分或全部的功能可能无法正常工作,应用程序的外观可能也看起来不正确。", "I understand the risks and wish to continue": "我了解风险并希望继续", diff --git a/src/i18n/strings/zh_Hant.json b/src/i18n/strings/zh_Hant.json index 6daec42762..78d8eeb1dc 100644 --- a/src/i18n/strings/zh_Hant.json +++ b/src/i18n/strings/zh_Hant.json @@ -1,25 +1,18 @@ { - "%(appName)s via %(browserName)s on %(osName)s": "在 %(osName)s 的 %(browserName)s 上的 %(appName)s", "Custom Server Options": "自訂伺服器選項", "Dismiss": "關閉", "powered by Matrix": "由 Matrix 提供", "Unknown device": "未知裝置", "You need to be using HTTPS to place a screen-sharing call.": "你需要使用 HTTPS 來撥打螢幕分享的通話。", - "%(brand)s Desktop on %(platformName)s": "%(platformName)s 的 Riot 桌面版", "Welcome to Riot.im": "歡迎來到 Riot.im", "Decentralised, encrypted chat & collaboration powered by [matrix]": "去中心化、保密的聊天與協作,由 [matrix] 提供", - "Chat with Riot Bot": "與 Riot 機器人聊天", "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "您可以以使用自訂伺服器選項指定不同的家伺服器 URL 以登入其他 Matrix 伺服器。這讓您可以在不同的家伺服器上使用既有的 Matrix 帳號登入 Riot。", "Sign In": "登入", "Create Account": "建立帳號", - "Need help?": "需要協助?", "Explore rooms": "探索聊天室", - "Room Directory": "聊天室目錄", "Unexpected error preparing the app. See console for details.": "準備應用程式時發生未預期的錯誤。請見主控台以取得更多資訊。", "Invalid configuration: can only specify one of default_server_config, default_server_name, or default_hs_url.": "無效的設定:只能指定 default_server_config、default_server_name 或 default_hs_url 其中之一。", "Invalid configuration: no default server specified.": "無效設定:未指定預設的伺服器。", - "Your Riot is misconfigured": "您的 Riot 沒有設定好", - "Your Riot configuration contains invalid JSON. Please correct the problem and reload the page.": "您的 Riot 包含無效的 JSON。請修正問題並重新整理頁面。", "The message from the parser is: %(message)s": "從解析器而來的訊息為:%(message)s", "Invalid JSON": "無效的 JSON", "Go to your browser to complete Sign In": "到您的瀏覽器完成登入", @@ -30,8 +23,6 @@ "%(brand)s Desktop (%(platformName)s)": "Riot 桌面版 (%(platformName)s)", "%(appName)s (%(browserName)s, %(osName)s)": "%(appName)s (%(browserName)s, %(osName)s)", "Unsupported browser": "不支援的瀏覽器", - "Your browser can't run Riot": "您的瀏覽器無法執行 Riot", - "Riot uses advanced browser features which aren't supported by your current browser.": "Riot 使用了不被您目前的瀏覽器所支援的進階瀏覽器功能。", "Please install Chrome, Firefox, or Safari for the best experience.": "請安裝 ChromeFirefoxSafari 以取得最佳體驗。", "You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "您可以繼續使用您目前的瀏覽器,但部份或全部的功能可能會無法運作,而應用程式的外觀與感覺可能也會不正確。", "I understand the risks and wish to continue": "我了解風險並希望繼續", From a0494eeecbc153c069aebfbe11f680cb144001e3 Mon Sep 17 00:00:00 2001 From: "J. Ryan Stinnett" Date: Mon, 13 Jul 2020 14:24:32 +0100 Subject: [PATCH 04/10] Update welcome brand name --- res/welcome.html | 2 +- src/i18n/strings/en_EN.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/res/welcome.html b/res/welcome.html index f26bdd8d8a..238c304f9a 100644 --- a/res/welcome.html +++ b/res/welcome.html @@ -172,7 +172,7 @@ we don't have an account and should hide them. No account == no guest account ei -

_t("Welcome to Riot.im")

+

_t("Welcome to Element")

_t("Decentralised, encrypted chat & collaboration powered by [matrix]")

diff --git a/src/i18n/strings/en_EN.json b/src/i18n/strings/en_EN.json index 952ac7e4f1..5dd43a4b1f 100644 --- a/src/i18n/strings/en_EN.json +++ b/src/i18n/strings/en_EN.json @@ -29,7 +29,7 @@ "I understand the risks and wish to continue": "I understand the risks and wish to continue", "Go to Riot.im": "Go to Riot.im", "Failed to start": "Failed to start", - "Welcome to Riot.im": "Welcome to Riot.im", + "Welcome to Element": "Welcome to Element", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Decentralised, encrypted chat & collaboration powered by [matrix]", "Sign In": "Sign In", "Create Account": "Create Account", From 62d22f50ab1e806a2970d3f5544bf7d5f76075a4 Mon Sep 17 00:00:00 2001 From: "J. Ryan Stinnett" Date: Mon, 13 Jul 2020 14:49:36 +0100 Subject: [PATCH 05/10] Update welcome brand name in translations --- src/i18n/strings/ar.json | 2 +- src/i18n/strings/az.json | 2 +- src/i18n/strings/bg.json | 2 +- src/i18n/strings/ca.json | 2 +- src/i18n/strings/cs.json | 2 +- src/i18n/strings/cy.json | 2 +- src/i18n/strings/da.json | 2 +- src/i18n/strings/de_DE.json | 2 +- src/i18n/strings/el.json | 2 +- src/i18n/strings/en_US.json | 2 +- src/i18n/strings/eo.json | 2 +- src/i18n/strings/es.json | 2 +- src/i18n/strings/et.json | 2 +- src/i18n/strings/eu.json | 2 +- src/i18n/strings/fa.json | 2 +- src/i18n/strings/fi.json | 2 +- src/i18n/strings/fr.json | 2 +- src/i18n/strings/ga.json | 2 +- src/i18n/strings/gl.json | 2 +- src/i18n/strings/he.json | 2 +- src/i18n/strings/hi.json | 2 +- src/i18n/strings/hr.json | 2 +- src/i18n/strings/hu.json | 2 +- src/i18n/strings/id.json | 2 +- src/i18n/strings/is.json | 2 +- src/i18n/strings/it.json | 2 +- src/i18n/strings/ja.json | 2 +- src/i18n/strings/jbo.json | 1 - src/i18n/strings/ka.json | 2 +- src/i18n/strings/kab.json | 2 +- src/i18n/strings/ko.json | 2 +- src/i18n/strings/lt.json | 2 +- src/i18n/strings/lv.json | 2 +- src/i18n/strings/ml.json | 1 - src/i18n/strings/mn.json | 2 +- src/i18n/strings/nb_NO.json | 2 +- src/i18n/strings/nl.json | 2 +- src/i18n/strings/nn.json | 2 +- src/i18n/strings/oc.json | 2 +- src/i18n/strings/pl.json | 2 +- src/i18n/strings/pt.json | 2 +- src/i18n/strings/pt_BR.json | 2 +- src/i18n/strings/ro.json | 2 +- src/i18n/strings/ru.json | 2 +- src/i18n/strings/sk.json | 2 +- src/i18n/strings/sl.json | 2 +- src/i18n/strings/sq.json | 2 +- src/i18n/strings/sr.json | 2 +- src/i18n/strings/sr_Latn.json | 2 +- src/i18n/strings/sv.json | 2 +- src/i18n/strings/ta.json | 2 +- src/i18n/strings/te.json | 1 - src/i18n/strings/th.json | 2 +- src/i18n/strings/tr.json | 2 +- src/i18n/strings/uk.json | 2 +- src/i18n/strings/vi.json | 2 +- src/i18n/strings/vls.json | 2 +- src/i18n/strings/zh_Hans.json | 2 +- src/i18n/strings/zh_Hant.json | 2 +- 59 files changed, 56 insertions(+), 59 deletions(-) diff --git a/src/i18n/strings/ar.json b/src/i18n/strings/ar.json index 46a290d8f0..28753df625 100644 --- a/src/i18n/strings/ar.json +++ b/src/i18n/strings/ar.json @@ -4,7 +4,7 @@ "Unknown device": "جهاز مجهول", "You need to be using HTTPS to place a screen-sharing call.": "تحتاج الى استخدام الاتصال الآمن (HTTPS) للسماح بمشاركة الشاشة.", "powered by Matrix": "مشغل بواسطة Matrix", - "Welcome to Riot.im": "مرحبا بك في Riot.im", + "Welcome to Element": "مرحبا بك في Element", "Decentralised, encrypted chat & collaboration powered by [matrix]": "[matrix] تعاون مدعوم مواسطة & دردشة لا مركزية ومشفرة", "Create Account": "انشاء حساب", "Explore rooms": "استكشف غرف المحادثات", diff --git a/src/i18n/strings/az.json b/src/i18n/strings/az.json index 60b2fa2207..faa961bfad 100644 --- a/src/i18n/strings/az.json +++ b/src/i18n/strings/az.json @@ -13,6 +13,6 @@ "Custom Server Options": "Fərdi Server Seçimləri", "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Fərqli server URL-ni təyin etməklə digər Matrix serverlərinə daxil olmaq üçün fərdi server seçimlərini istifadə edə bilərsiniz. Bu sizə başqa serverdə qaldırılmış mövcud Matrix hesabınızla Riot-u işlətməyə imkan verir.", "Dismiss": "Nəzərə almayın", - "Welcome to Riot.im": "Riot.im-ə xoş gəlmişsiniz", + "Welcome to Element": "Element-ə xoş gəlmişsiniz", "Decentralised, encrypted chat & collaboration powered by [matrix]": "[matrix] tərəfindən təchiz edilmiş mərkəziləşdirilməmiş, şifrələnmiş çat və əməkdaşlıq platforması" } diff --git a/src/i18n/strings/bg.json b/src/i18n/strings/bg.json index c68645bbd1..0794fefdbc 100644 --- a/src/i18n/strings/bg.json +++ b/src/i18n/strings/bg.json @@ -4,7 +4,7 @@ "Custom Server Options": "Потребителски опции за сървър", "Dismiss": "Затвори", "powered by Matrix": "базирано на Matrix", - "Welcome to Riot.im": "Добре дошли в Riot.im", + "Welcome to Element": "Добре дошли в Element", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Децентрализиран, шифрован чат и съвместна работа, базирани на [matrix]", "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Може да използвате настройките за собствен сървър за да влезете в друг Matrix сървър, чрез указване на адреса му. Това ви позволява да използвате Riot със съществуващ Matrix акаунт, принадлежащ към друг сървър.", "Sign In": "Вписване", diff --git a/src/i18n/strings/ca.json b/src/i18n/strings/ca.json index 48bf37fa25..40b8382bda 100644 --- a/src/i18n/strings/ca.json +++ b/src/i18n/strings/ca.json @@ -2,7 +2,7 @@ "Custom Server Options": "Opcions de servidor personalitzat", "Dismiss": "Omet", "Unknown device": "Dispositiu desconegut", - "Welcome to Riot.im": "Us donem la benvinguda a Riot.im", + "Welcome to Element": "Us donem la benvinguda a Element", "You need to be using HTTPS to place a screen-sharing call.": "Heu d'utilitzar HTTPS per poder fer una trucada amb pantalla compartida.", "powered by Matrix": "amb tecnologia de Matrix", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Xat descentralitzat, encriptat i col·laboratiu amb tecnologia de [matrix]", diff --git a/src/i18n/strings/cs.json b/src/i18n/strings/cs.json index a577380e3b..15831cc7bd 100644 --- a/src/i18n/strings/cs.json +++ b/src/i18n/strings/cs.json @@ -1,5 +1,5 @@ { - "Welcome to Riot.im": "Vítá vás Riot.im", + "Welcome to Element": "Vítá vás Element", "Unknown device": "Neznámé zařízení", "You need to be using HTTPS to place a screen-sharing call.": "Pro uskutečnění hovoru se sdílením obrazovky musíte používat HTTPS.", "Dismiss": "Zahodit", diff --git a/src/i18n/strings/cy.json b/src/i18n/strings/cy.json index eeae9825cf..6a881bf600 100644 --- a/src/i18n/strings/cy.json +++ b/src/i18n/strings/cy.json @@ -10,7 +10,7 @@ "Custom Server Options": "Opsiynau Gweinydd Addasadwy", "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Gallwch ddefnyddio'r opsiynau gweinydd addasadwy i mewngofnodi i mewn i weinyddion Matrix eraill trwy rhoi URL hafanweinydd gwahanol. Mae hyn yn caniatáu ichi ddefnyddio Riot gyda chyfrif Matrix sy'n bodoli eisoes ar hafanweinydd gwahanol.", "Dismiss": "Wfftio", - "Welcome to Riot.im": "Croeso i Riot.im", + "Welcome to Element": "Croeso i Element", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Sgwrsio a chydweithredu datganoledig a amgryptiedig â phwerwyd gan [matrix]", "Sign In": "Mewngofnodi", "Create Account": "Creu Cyfrif", diff --git a/src/i18n/strings/da.json b/src/i18n/strings/da.json index 0ca6fdd9fe..e7cb38e6ff 100644 --- a/src/i18n/strings/da.json +++ b/src/i18n/strings/da.json @@ -4,7 +4,7 @@ "powered by Matrix": "Drevet af Matrix", "Unknown device": "Ukendt enhed", "You need to be using HTTPS to place a screen-sharing call.": "Du skal bruge HTTPS for at lave skærmdelings opkald.", - "Welcome to Riot.im": "Velkommen til Riot.im", + "Welcome to Element": "Velkommen til Element", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Decentraliseret, krypteret chat & samarbejde baseret på [matrix]", "The message from the parser is: %(message)s": "Beskeden fra parseren er: %(message)s", "Invalid JSON": "Ugyldig JSON", diff --git a/src/i18n/strings/de_DE.json b/src/i18n/strings/de_DE.json index 0c720b0f92..8b0eca8ea1 100644 --- a/src/i18n/strings/de_DE.json +++ b/src/i18n/strings/de_DE.json @@ -4,7 +4,7 @@ "Dismiss": "Ablehnen", "Unknown device": "Unbekanntes Gerät", "You need to be using HTTPS to place a screen-sharing call.": "Du musst HTTPS nutzen um einen Anruf mit Bildschirmfreigabe durchzuführen.", - "Welcome to Riot.im": "Willkommen bei Riot.im", + "Welcome to Element": "Willkommen bei Element", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Dezentrale, verschlüsselte Chat- & Kollaborationslösung unterstützt von [matrix]", "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Du kannst benutzerdefinierte Server-Optionen nutzen, um dich an anderen Matrix Servern anzumelden, indem du eine andere Heimserver-URL angibst. Dies erlaubt dir, Riot mit einem existierenden Matrix-Konto auf einem anderen Heimserver zu nutzen.", "Sign In": "Anmelden", diff --git a/src/i18n/strings/el.json b/src/i18n/strings/el.json index d3f0106a0e..0196ab5e4d 100644 --- a/src/i18n/strings/el.json +++ b/src/i18n/strings/el.json @@ -4,7 +4,7 @@ "Unknown device": "Άγνωστη συσκευή", "You need to be using HTTPS to place a screen-sharing call.": "Απαιτείται η χρήση HTTPS για την πραγματοποίηση κλήσης διαμοιρασμού επιφάνειας εργασίας.", "powered by Matrix": "λειτουργεί με το Matrix", - "Welcome to Riot.im": "Καλώς ήλθατε στο Riot.im", + "Welcome to Element": "Καλώς ήλθατε στο Element", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Αποκεντρωμένη, κρυπτογραφημένη συνομιλία και συνεργασία χρησιμοποιώντας το [matrix]", "Sign In": "Σύνδεση", "Create Account": "Δημιουργία Λογαριασμού", diff --git a/src/i18n/strings/en_US.json b/src/i18n/strings/en_US.json index 11ba9885ba..bbe2b802d4 100644 --- a/src/i18n/strings/en_US.json +++ b/src/i18n/strings/en_US.json @@ -4,7 +4,7 @@ "powered by Matrix": "powered by Matrix", "Unknown device": "Unknown device", "You need to be using HTTPS to place a screen-sharing call.": "You need to be using HTTPS to place a screen-sharing call.", - "Welcome to Riot.im": "Welcome to Riot.im", + "Welcome to Element": "Welcome to Element", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Decentralised, encrypted chat & collaboration powered by [matrix]", "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.", "Sign In": "Sign In", diff --git a/src/i18n/strings/eo.json b/src/i18n/strings/eo.json index a8120b6d44..4e5b48d1aa 100644 --- a/src/i18n/strings/eo.json +++ b/src/i18n/strings/eo.json @@ -4,7 +4,7 @@ "Custom Server Options": "Propraj servilaj elektoj", "Unknown device": "Nekonata aparato", "You need to be using HTTPS to place a screen-sharing call.": "Vi devas uzi HTTPS por ekranvidadi.", - "Welcome to Riot.im": "Bonvenon al Riot.im", + "Welcome to Element": "Bonvenon al Element", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Malcentra, ĉifrita babilado & kunlaboro povigita per [matrix]", "Sign In": "Saluti", "Create Account": "Krei konton", diff --git a/src/i18n/strings/es.json b/src/i18n/strings/es.json index af512fb9ea..27ede5af89 100644 --- a/src/i18n/strings/es.json +++ b/src/i18n/strings/es.json @@ -4,7 +4,7 @@ "Dismiss": "Omitir", "powered by Matrix": "con el poder de Matrix", "You need to be using HTTPS to place a screen-sharing call.": "Debes usar HTTPS para hacer una llamada con pantalla compartida.", - "Welcome to Riot.im": "Bienvenido a Riot.im", + "Welcome to Element": "Bienvenido a Element", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Conversaciones cifradas y descentralizadas y colaboración con el poder de [matrix]", "Sign In": "Iniciar sesión", "Create Account": "Crear cuenta", diff --git a/src/i18n/strings/et.json b/src/i18n/strings/et.json index 50c46fd5ce..a8c1a5f973 100644 --- a/src/i18n/strings/et.json +++ b/src/i18n/strings/et.json @@ -17,7 +17,7 @@ "powered by Matrix": "põhineb Matrix'il", "Custom Server Options": "Serveri kohaldatud seadistused", "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Selleks et sisse logida teistesse Matrix'i serveritesse võid sa määrates vajaliku koduserveri aadreesi kasutada kohaldatud serveriseadistusi. See võimaldab sul kasutada Riot'it olemasoleva Matrix'i kontoga teisest koduserverist.", - "Welcome to Riot.im": "Tere tulemast Riot.im kasutajaks", + "Welcome to Element": "Tere tulemast Element kasutajaks", "Sign In": "Logi sisse", "Create Account": "Loo konto", "%(brand)s Desktop (%(platformName)s)": "Riot'i töölauaversioon (%(platformName)s)", diff --git a/src/i18n/strings/eu.json b/src/i18n/strings/eu.json index 1bd1ef1124..d39f41c23e 100644 --- a/src/i18n/strings/eu.json +++ b/src/i18n/strings/eu.json @@ -4,7 +4,7 @@ "powered by Matrix": "Matrix mamian", "Unknown device": "Gailu ezezaguna", "You need to be using HTTPS to place a screen-sharing call.": "HTTPS erabili behar duzu sekretuak partekatzeko dei bat ezartzeko.", - "Welcome to Riot.im": "Ongi etorri Riot.im mezularitzara", + "Welcome to Element": "Ongi etorri Element mezularitzara", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Deszentralizatutako eta zifratutako txat eta elkarlana [matrix] sareari esker", "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Zerbitzari pertsonalizatuaren aukera erabili dezakezu bestelako Matrix zerbitzari batera konektatzeko, bere URL-a adierazita. Honek Riot beste zerbitzari batean duzun Matrix kontuarekin erabiltzea ahalbidetzen dizu.", "Sign In": "Hasi saioa", diff --git a/src/i18n/strings/fa.json b/src/i18n/strings/fa.json index e8473895f0..4c97a423d4 100644 --- a/src/i18n/strings/fa.json +++ b/src/i18n/strings/fa.json @@ -1,7 +1,7 @@ { "powered by Matrix": "قدرت‌یافته از ماتریکس", "Unknown device": "دستگاه ناشناخته", - "Welcome to Riot.im": "به Riot.im خوش‌آمدید", + "Welcome to Element": "به Element خوش‌آمدید", "Decentralised, encrypted chat & collaboration powered by [matrix]": "چت مرکزگریز و رمزنگاری‌شده & ارائه‌ای از ماتریکس", "Custom Server Options": "تنظیمات سفارشی برای سرور", "Dismiss": "نادیده بگیر", diff --git a/src/i18n/strings/fi.json b/src/i18n/strings/fi.json index 8b071631ac..e830d582cb 100644 --- a/src/i18n/strings/fi.json +++ b/src/i18n/strings/fi.json @@ -1,7 +1,7 @@ { "Dismiss": "Hylkää", "Unknown device": "Tuntematon laite", - "Welcome to Riot.im": "Tervetuloa Riot.im-sovellukseen", + "Welcome to Element": "Tervetuloa Element-sovellukseen", "Custom Server Options": "Palvelinasetukset", "You need to be using HTTPS to place a screen-sharing call.": "Sinun täytyy käyttää HTTPS-yhteyttä, jotta voit jakaa ruudun puhelussa.", "powered by Matrix": "moottorina Matrix", diff --git a/src/i18n/strings/fr.json b/src/i18n/strings/fr.json index d1900b3061..14bf466046 100644 --- a/src/i18n/strings/fr.json +++ b/src/i18n/strings/fr.json @@ -4,7 +4,7 @@ "powered by Matrix": "propulsé par Matrix", "Unknown device": "Appareil inconnu", "You need to be using HTTPS to place a screen-sharing call.": "Vous devez utiliser HTTPS pour effectuer un appel avec partage d’écran.", - "Welcome to Riot.im": "Bienvenue sur Riot.im", + "Welcome to Element": "Bienvenue sur Element", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Discussion & collaboration décentralisées et chiffrées, propulsées par [matrix]", "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Vous pouvez utiliser les options de serveur personnalisé pour vous connecter à d'autres serveurs Matrix en renseignant l'URL d'un autre serveur d'accueil. Cela vous permet d'utiliser Riot avec un compte Matrix existant sur un serveur d'accueil différent.", "Sign In": "Se connecter", diff --git a/src/i18n/strings/ga.json b/src/i18n/strings/ga.json index 4509df2d21..0c88dc4f18 100644 --- a/src/i18n/strings/ga.json +++ b/src/i18n/strings/ga.json @@ -5,7 +5,7 @@ "Custom Server Options": "Socruithe do fhreastalaí saincheaptha", "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Is féidir na socruithe do fhreastalaí saincheaptha a úsáid chun síniú isteach le freastalaithe Matrix eile ach URL freastalaí ar leith a shainiú. Cuirfidh sé seo ar do chumas Riot a úsáid le cuntas Matrix atá ar taifead ag an bhfreastalaí eile sin.", "Dismiss": "Cuir uait", - "Welcome to Riot.im": "Fáilte romhat chuig Riot.im", + "Welcome to Element": "Fáilte romhat chuig Element", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Meán comhrá agus comhoibriú, díláraithe agus criptithe, cumhachtaithe ag [matrix]", "Sign In": "Sínigh Isteach", "Create Account": "Déan cuntas a chruthú", diff --git a/src/i18n/strings/gl.json b/src/i18n/strings/gl.json index f7624559d1..0ebde043ed 100644 --- a/src/i18n/strings/gl.json +++ b/src/i18n/strings/gl.json @@ -4,7 +4,7 @@ "powered by Matrix": "funciona grazas a Matrix", "Unknown device": "Dispositivo descoñecido", "You need to be using HTTPS to place a screen-sharing call.": "Precisa utilizar HTTPS para establecer unha chamada de pantalla compartida.", - "Welcome to Riot.im": "Benvida/o a Riot.im", + "Welcome to Element": "Benvida/o a Element", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Conversas e colaboración descentralizada e cifrada grazas a [matrix]", "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Podes usar as opcións de servidor personalizado para iniciar sesión en outros servidores Matrix especificando unha dirección diferente de servidor doméstico. Con esto podes usar Riot cunha conta Matrix existente noutro servidor doméstico.", "Sign In": "Conectar", diff --git a/src/i18n/strings/he.json b/src/i18n/strings/he.json index b915d94abb..c2f06c8554 100644 --- a/src/i18n/strings/he.json +++ b/src/i18n/strings/he.json @@ -4,7 +4,7 @@ "powered by Matrix": "מופעל ע\"י Matrix", "Unknown device": "מכשיר לא ידוע", "You need to be using HTTPS to place a screen-sharing call.": "עליך להשתמש ב HTTPS בכדי לבצע שיחת ווידאו משותפת.", - "Welcome to Riot.im": "ברוכים הבאים ל Riot.im", + "Welcome to Element": "ברוכים הבאים ל Element", "Decentralised, encrypted chat & collaboration powered by [matrix]": "צ'ט מוצפן & ושת\"פ נעשה ע\"י ה [matrix]", "Invalid JSON": "JSON לא חוקי", "Invalid configuration: can only specify one of default_server_config, default_server_name, or default_hs_url.": "תצורה שגויה: ניתן לציין רק אחד מהבאים, default_server_config, default_server_name, או default_hs_url.", diff --git a/src/i18n/strings/hi.json b/src/i18n/strings/hi.json index 2c2d562727..6d29a83b5c 100644 --- a/src/i18n/strings/hi.json +++ b/src/i18n/strings/hi.json @@ -4,7 +4,7 @@ "Custom Server Options": "कस्टम सर्वर विकल्प", "Dismiss": "खारिज", "powered by Matrix": "मैट्रिक्स द्वारा संचालित", - "Welcome to Riot.im": "Riot.im में आपका स्वागत है", + "Welcome to Element": "Element में आपका स्वागत है", "Decentralised, encrypted chat & collaboration powered by [matrix]": "[मैट्रिक्स] द्वारा संचालित विकेंद्रीकृत, एन्क्रिप्टेड चैट और सहयोगिता", "Sign In": "साइन करना", "Create Account": "खाता बनाएं", diff --git a/src/i18n/strings/hr.json b/src/i18n/strings/hr.json index 743eb049be..8390818cc8 100644 --- a/src/i18n/strings/hr.json +++ b/src/i18n/strings/hr.json @@ -4,6 +4,6 @@ "Custom Server Options": "Prilagođene opcije poslužitelja", "Dismiss": "Odbaci", "powered by Matrix": "powered by Matrix", - "Welcome to Riot.im": "Dobrodošli u Riot.im", + "Welcome to Element": "Dobrodošli u Element", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Decentralizirani, enkriptirani chat & kolaboracija powered by [matrix]" } diff --git a/src/i18n/strings/hu.json b/src/i18n/strings/hu.json index 454b8a01a5..127fe6f990 100644 --- a/src/i18n/strings/hu.json +++ b/src/i18n/strings/hu.json @@ -4,7 +4,7 @@ "powered by Matrix": "a gépházban: Matrix", "Unknown device": "Ismeretlen eszköz", "You need to be using HTTPS to place a screen-sharing call.": "Képernyőmegosztás indításához HTTPS-t kell használnod.", - "Welcome to Riot.im": "Üdvözöl a Riot.im", + "Welcome to Element": "Üdvözöl a Element", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Decentralizált, titkosított csevegés és kollaboráció [matrix] alapokon", "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Használhatsz egyéni kiszolgálóbeállításokat, hogy más Matrix-kiszolgálóra jelentkezz be, úgy, hogy megadod a másik kiszolgáló URL-jét. Ezzel a Riotot használhatod más Matrix kiszolgálón lévő fiókkal.", "Sign In": "Bejelentkezés", diff --git a/src/i18n/strings/id.json b/src/i18n/strings/id.json index 9a234da169..4254a52528 100644 --- a/src/i18n/strings/id.json +++ b/src/i18n/strings/id.json @@ -4,6 +4,6 @@ "powered by Matrix": "didukung oleh Matrix", "Unknown device": "Perangkat Tidak Diketahui", "You need to be using HTTPS to place a screen-sharing call.": "Anda perlu menggunakan HTTPS untuk melakukan panggilan berbagi-layar.", - "Welcome to Riot.im": "Selamat datang di Riot.im", + "Welcome to Element": "Selamat datang di Element", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Obrolan terenkripsi, terdesentralisasi & kolaborasi didukung oleh [matrix]" } diff --git a/src/i18n/strings/is.json b/src/i18n/strings/is.json index a5640ffee7..a35b90b44d 100644 --- a/src/i18n/strings/is.json +++ b/src/i18n/strings/is.json @@ -1,6 +1,6 @@ { "powered by Matrix": "keyrt með Matrix", - "Welcome to Riot.im": "Velkomin í Riot.im", + "Welcome to Element": "Velkomin í Element", "Unknown device": "Óþekkt tæki", "Dismiss": "Hafna", "Custom Server Options": "Sérsniðnir valkostir vefþjóns", diff --git a/src/i18n/strings/it.json b/src/i18n/strings/it.json index 3998d563c8..8c370f1c16 100644 --- a/src/i18n/strings/it.json +++ b/src/i18n/strings/it.json @@ -4,7 +4,7 @@ "powered by Matrix": "offerto da Matrix", "Unknown device": "Dispositivo sconosciuto", "You need to be using HTTPS to place a screen-sharing call.": "Devi usare HTTPS per effettuare una chiamata con la condivisione dello schermo.", - "Welcome to Riot.im": "Benvenuti su Riot.im", + "Welcome to Element": "Benvenuti su Element", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Chat criptate, decentralizzate e collaborazioni offerte da [matrix]", "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Puoi usare le opzioni di server personalizzato per accedere ad altri server Matrix specificando un URL homeserver diverso. Ciò ti permette di usare Riot con un account Matrix esistente su un homeserver differente.", "Sign In": "Accedi", diff --git a/src/i18n/strings/ja.json b/src/i18n/strings/ja.json index 7817781ef7..6c11691f1d 100644 --- a/src/i18n/strings/ja.json +++ b/src/i18n/strings/ja.json @@ -1,5 +1,5 @@ { - "Welcome to Riot.im": "Riot.im へようこそ", + "Welcome to Element": "Element へようこそ", "Unknown device": "不明な端末", "Custom Server Options": "カスタムサーバのオプション", "Dismiss": "やめる", diff --git a/src/i18n/strings/jbo.json b/src/i18n/strings/jbo.json index a573f29912..dbe2e50af3 100644 --- a/src/i18n/strings/jbo.json +++ b/src/i18n/strings/jbo.json @@ -4,6 +4,5 @@ "Custom Server Options": "lo macnu se cuxna be fi lo'i samse'u", "Dismiss": "mipri", "powered by Matrix": ".i la nacmeimei cu cumgau", - "Welcome to Riot.im": ".i fi'i lo pilno be la nu zunti", "Decentralised, encrypted chat & collaboration powered by [matrix]": ".i la nacmeimei cu cumgau lo mifra je na'e se midju nu tavla je ke kansa gunka" } diff --git a/src/i18n/strings/ka.json b/src/i18n/strings/ka.json index 93f31dc1d5..294d1e5708 100644 --- a/src/i18n/strings/ka.json +++ b/src/i18n/strings/ka.json @@ -4,6 +4,6 @@ "Custom Server Options": "პერსონალიზებული სერვერის პარამეტრები", "Dismiss": "უარის თქმა", "powered by Matrix": "Matrix-ზე დაფუძნებული", - "Welcome to Riot.im": "კეთილი იყოს თქვენი მობრძანება Riot.im-ზე", + "Welcome to Element": "კეთილი იყოს თქვენი მობრძანება Element-ზე", "Decentralised, encrypted chat & collaboration powered by [matrix]": "დეცენტრალიზებული, დაშიფრული ჩატი & კოლაბორაცია, დაფუძნებული [matrix]-ზე" } diff --git a/src/i18n/strings/kab.json b/src/i18n/strings/kab.json index 18c02cce3a..b91ad1456a 100644 --- a/src/i18n/strings/kab.json +++ b/src/i18n/strings/kab.json @@ -26,6 +26,6 @@ "I understand the risks and wish to continue": "Gziɣ ayen ara d-yeḍrun maca bɣiɣ ad kemmleɣ", "Go to Riot.im": "Ṛuḥ ɣer Riot.im", "Failed to start": "Asenker ur yeddi ara", - "Welcome to Riot.im": "Ansuf ɣer Riot.im", + "Welcome to Element": "Ansuf ɣer Element", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Adiwenni & attekki araslemmas d uwgelhan s lmendad n [matrix]" } diff --git a/src/i18n/strings/ko.json b/src/i18n/strings/ko.json index 95b21302e0..dc2494efd5 100644 --- a/src/i18n/strings/ko.json +++ b/src/i18n/strings/ko.json @@ -3,7 +3,7 @@ "Dismiss": "버리기", "powered by Matrix": "Matrix의 지원을 받음", "Unknown device": "알 수 없는 기기", - "Welcome to Riot.im": "Riot.im에 오신 것을 환영합니다", + "Welcome to Element": "Element에 오신 것을 환영합니다", "You need to be using HTTPS to place a screen-sharing call.": "화면 공유 전화를 걸려면 HTTPS를 사용해야 합니다.", "Decentralised, encrypted chat & collaboration powered by [matrix]": "분산되고, 암호화된 대화 & [matrix]의 지원으로 협력", "The message from the parser is: %(message)s": "파서에서 온 메시지: %(message)s", diff --git a/src/i18n/strings/lt.json b/src/i18n/strings/lt.json index a168c0d9c7..f6e3095891 100644 --- a/src/i18n/strings/lt.json +++ b/src/i18n/strings/lt.json @@ -1,7 +1,7 @@ { "Unknown device": "Nežinomas įrenginys", "powered by Matrix": "veikia su Matrix", - "Welcome to Riot.im": "Sveiki atvykę į Riot.im", + "Welcome to Element": "Sveiki atvykę į Element", "You need to be using HTTPS to place a screen-sharing call.": "Norint skambinti naudojant ekrano vaizdo dalijimosi funkciją, jūs turite naudoti HTTPS.", "Custom Server Options": "Pasirinktiniai Serverio Nustatymai", "Dismiss": "Atmesti", diff --git a/src/i18n/strings/lv.json b/src/i18n/strings/lv.json index cc442af3dd..fc1d0214a2 100644 --- a/src/i18n/strings/lv.json +++ b/src/i18n/strings/lv.json @@ -4,7 +4,7 @@ "powered by Matrix": "Tiek darbināta ar Matrix", "Unknown device": "Nezināma ierīce", "You need to be using HTTPS to place a screen-sharing call.": "Lai izmantotu ekrāna kopīgošanas zvanu, nepieciešams izmantot HTTPS savienojumu.", - "Welcome to Riot.im": "Esiet gaidīti Riot.im", + "Welcome to Element": "Esiet gaidīti Element", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Decentralizēta, šifrēta čata & kopdarbošanās sistēma uz [matrix] bāzes", "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Varat izmantot pielāgotās servera opcijas, lai pierakstītos citos Matrix serveros, norādot citu mājas servera URL. Tas ļauj jums izmantot Riot ar esošu Matrix kontu citā mājas serverī.", "Sign In": "Ienākt", diff --git a/src/i18n/strings/ml.json b/src/i18n/strings/ml.json index 44dbd65bb0..942989e421 100644 --- a/src/i18n/strings/ml.json +++ b/src/i18n/strings/ml.json @@ -4,6 +4,5 @@ "powered by Matrix": "മാട്രിക്സില്‍ പ്രവര്‍ത്തിക്കുന്നു", "Unknown device": "അപരിചിത ഡിവൈസ്", "You need to be using HTTPS to place a screen-sharing call.": "സ്ക്രീന്‍ ഷെയറിങ്ങ് കോള്‍ നടത്തണമെങ്കില്‍ https ഉപയോഗിക്കണം.", - "Welcome to Riot.im": "റയട്ടിലേക്ക് സ്വാഗതം", "Decentralised, encrypted chat & collaboration powered by [matrix]": "വികേന്ദ്രീകൃത , എന്‍ക്രിപ്റ്റഡ് ചാറ്റ് & മാട്രിക്സ് നല്‍കുന്ന കൊളാബൊറേഷന്‍" } diff --git a/src/i18n/strings/mn.json b/src/i18n/strings/mn.json index 92693a852d..8a32e685a9 100644 --- a/src/i18n/strings/mn.json +++ b/src/i18n/strings/mn.json @@ -10,7 +10,7 @@ "Custom Server Options": "Кастом серверийн сонголтууд", "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Та кастом серверийн сонголтууд ашиглан серверийн хаягийг зааж, өөр сервер рүү нэвтэрч болно. Энэ нь танд Риотыг одоо байгаа матрикс аккаунтаараа өөр сервер дээр ашиглах боломж олгоно.", "Dismiss": "Орхих", - "Welcome to Riot.im": "Riot.im -д тавтай морил", + "Welcome to Element": "Element -д тавтай морил", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Төвлөрсөн бус, нууцлалтай чат & хамтын ажиллагааг [matrix] - ивээв", "Sign In": "Нэвтрэх", "Create Account": "Хэрэглэгч үүсгэх", diff --git a/src/i18n/strings/nb_NO.json b/src/i18n/strings/nb_NO.json index 570e76af75..a7df3808b2 100644 --- a/src/i18n/strings/nb_NO.json +++ b/src/i18n/strings/nb_NO.json @@ -4,7 +4,7 @@ "Unknown device": "Ukjent enhet", "You need to be using HTTPS to place a screen-sharing call.": "Du er nødt til å bruke HTTPS for å ha en samtale med skjermdeling.", "Dismiss": "Avvis", - "Welcome to Riot.im": "Velkommen til Riot.im", + "Welcome to Element": "Velkommen til Element", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Desentralisert, kryptert chat & samarbeid drevet av [matrix]", "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Du kan bruke instillinger for «egendefinert tjener» til å logge inn på andre Matrix-tjenere ved å spesifisere en annen URL. Dette lar deg bruke Riot med en eksisterende Matrix-konto på en annen hjemmetjener.", "Sign In": "Logg inn", diff --git a/src/i18n/strings/nl.json b/src/i18n/strings/nl.json index e51aa893b8..177677a418 100644 --- a/src/i18n/strings/nl.json +++ b/src/i18n/strings/nl.json @@ -4,7 +4,7 @@ "powered by Matrix": "draait op Matrix", "Unknown device": "Onbekend apparaat", "You need to be using HTTPS to place a screen-sharing call.": "Oproepen met schermdelen vergen HTTPS.", - "Welcome to Riot.im": "Welkom bij Riot.im", + "Welcome to Element": "Welkom bij Element", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Gedecentraliseerd en versleuteld chatten & samenwerken dankzij [matrix]", "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Met aangepaste serverinstellingen kunt u zich door een andere thuisserver-URL in te voeren aanmelden bij andere Matrix-servers. Zo kunt u Riot met een bestaand Matrix-account op een andere thuisserver gebruiken.", "Sign In": "Aanmelden", diff --git a/src/i18n/strings/nn.json b/src/i18n/strings/nn.json index 8ee7a8a7e1..330cf4b85b 100644 --- a/src/i18n/strings/nn.json +++ b/src/i18n/strings/nn.json @@ -3,7 +3,7 @@ "You need to be using HTTPS to place a screen-sharing call.": "Du må bruka HTTPS for å ha ein samtale med skjermdeling.", "Dismiss": "Avvis", "powered by Matrix": "Matrixdriven", - "Welcome to Riot.im": "Velkomen til Riot.im", + "Welcome to Element": "Velkomen til Element", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Desentralisert, kryptert nettprat & samarbeid drive av [matrix]", "Custom Server Options": "Tilpassa tenar-innstillingar", "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Du kan nytta dei eigendefinerte tenarinstillingane for å logga inn på andre Matrix-tenarar ved å uppgje ein annan heimtenar-URL. Dette lèt deg bruka Riot med ein Matrix-konto som allereie finst på ein annan heimtenar.", diff --git a/src/i18n/strings/oc.json b/src/i18n/strings/oc.json index 3855a59c71..00cb267061 100644 --- a/src/i18n/strings/oc.json +++ b/src/i18n/strings/oc.json @@ -7,7 +7,7 @@ "powered by Matrix": "propulsat per Matrix", "Custom Server Options": "Opcions de servidor personalizat", "Dismiss": "Refusar", - "Welcome to Riot.im": "La benvenguda a Riot.im", + "Welcome to Element": "La benvenguda a Element", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Messatjariá chifrada, descentralizada e collaborativa propulsada per [matrix]", "Sign In": "Se connectar", "Create Account": "Crear un compte", diff --git a/src/i18n/strings/pl.json b/src/i18n/strings/pl.json index 0830215c4e..7d8b7795d5 100644 --- a/src/i18n/strings/pl.json +++ b/src/i18n/strings/pl.json @@ -4,7 +4,7 @@ "powered by Matrix": "napędzany przez Matrix", "Unknown device": "Nieznane urządzenie", "You need to be using HTTPS to place a screen-sharing call.": "Musisz używać bezpiecznego protokołu HTTPS aby użyć połączenia współdzielenia ekranu.", - "Welcome to Riot.im": "Witamy w Riot.im", + "Welcome to Element": "Witamy w Element", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Zdecentralizowany, szyfrowany czat & współpraca oparta na [matrix]", "Create Account": "Stwórz konto", "Sign In": "Zaloguj", diff --git a/src/i18n/strings/pt.json b/src/i18n/strings/pt.json index 268edefeee..9da3cbe1b7 100644 --- a/src/i18n/strings/pt.json +++ b/src/i18n/strings/pt.json @@ -4,7 +4,7 @@ "powered by Matrix": "powered by Matrix", "Unknown device": "Dispositivo desconhecido", "You need to be using HTTPS to place a screen-sharing call.": "Necessita de estar a usar HTTPS para poder iniciar uma chamada com partilha de ecrã.", - "Welcome to Riot.im": "Bem-vindo ao Riot.im", + "Welcome to Element": "Bem-vindo ao Element", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Chat descentralizado, encriptado & colaborativo powered by [matrix]", "The message from the parser is: %(message)s": "A mensagem do parser é: %(message)s", "Invalid JSON": "JSON inválido", diff --git a/src/i18n/strings/pt_BR.json b/src/i18n/strings/pt_BR.json index c7cf81bed7..606ca4825c 100644 --- a/src/i18n/strings/pt_BR.json +++ b/src/i18n/strings/pt_BR.json @@ -4,7 +4,7 @@ "powered by Matrix": "oferecido por Matrix", "Unknown device": "Dispositivo desconhecido", "You need to be using HTTPS to place a screen-sharing call.": "Você precisa estar usando HTTPS para poder iniciar uma chamada com compartilhamento de tela.", - "Welcome to Riot.im": "Seja bem-vinda(o) a Riot.im", + "Welcome to Element": "Seja bem-vinda(o) a Element", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Chat descentralizado, criptografado e colaborativo oferecido por [matrix]", "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Você pode usar as opções personalizadas do servidor para entrar em outros servidores Matrix, especificando um URL diferente de homeserver. Isso permite que você use o Riot com uma conta Matrix existente em um homeserver diferente.", "Sign In": "Entrar", diff --git a/src/i18n/strings/ro.json b/src/i18n/strings/ro.json index f59c91fba7..d45e1f8c13 100644 --- a/src/i18n/strings/ro.json +++ b/src/i18n/strings/ro.json @@ -3,7 +3,7 @@ "Custom Server Options": "Opțiuni Server Personalizate", "Dismiss": "Închide", "powered by Matrix": "propulsat de Matrix", - "Welcome to Riot.im": "Bun venit pe Riot.im", + "Welcome to Element": "Bun venit pe Element", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Chat decentralizat, criptat & colaborare propulsata de [matrix]", "You need to be using HTTPS to place a screen-sharing call.": "Trebuie să folosești HTTPS pentru a plasa un apel de tip screen-sharing.", "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Puteți utiliza opțiunile personalizate ale serverului pentru a vă conecta la alte servere Matrix specificând o adresă URL diferită pentru homeserver. Acest lucru vă permite să utilizați Riot cu un cont Matrix existent pe un alt server de domiciliu.", diff --git a/src/i18n/strings/ru.json b/src/i18n/strings/ru.json index 3d64f139d8..5777e27963 100644 --- a/src/i18n/strings/ru.json +++ b/src/i18n/strings/ru.json @@ -4,7 +4,7 @@ "powered by Matrix": "основано на Matrix", "Unknown device": "Неизвестное устройство", "You need to be using HTTPS to place a screen-sharing call.": "Для трансляции рабочего стола требуется использование HTTPS.", - "Welcome to Riot.im": "Добро пожаловать в Riot.im", + "Welcome to Element": "Добро пожаловать в Element", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Децентрализованный, шифрованный чат и совместное рабочее пространство на основе [matrix]", "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Вы можете изменить параметры для входа на другие Matrix серверы, указав другой URL.\nЭто позволит использовать Riot с учетной записью Matrix, существующей на другом сервере.", "Sign In": "Войти", diff --git a/src/i18n/strings/sk.json b/src/i18n/strings/sk.json index 7e38c5f6a1..c20dfdfdab 100644 --- a/src/i18n/strings/sk.json +++ b/src/i18n/strings/sk.json @@ -4,7 +4,7 @@ "Custom Server Options": "Vlastné možnosti servera", "Dismiss": "Zamietnuť", "powered by Matrix": "poháňa Matrix", - "Welcome to Riot.im": "Víta vás Riot.im", + "Welcome to Element": "Víta vás Element", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Decentralizovaný, šifrovaný chat a spolupráca na platforme [matrix]", "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Môžete použiť vlastné možnosti servera na prihlásenie sa k ďalším serverom Matrix zadaním URL adresy domovského servera. Toto vám umožní použiť Riot na prihlásenie sa k existujúcemu Matrix účtu na inom domovskom servery.", "Sign In": "Prihlásiť sa", diff --git a/src/i18n/strings/sl.json b/src/i18n/strings/sl.json index b6a79e4efa..42aeff5a08 100644 --- a/src/i18n/strings/sl.json +++ b/src/i18n/strings/sl.json @@ -5,7 +5,7 @@ "Custom Server Options": "Možnosti strežnika po meri", "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Možnosti strežnika po meri lahko uporabite za prijavo v druge Matrix strežnike, s tem da podate drug URL domačega strežnika. To vam omogoča, da uporabljate Riot z obstoječim Matrix računom na drugem strežniku.", "Dismiss": "Opusti", - "Welcome to Riot.im": "Dobrodošli v Riot.im", + "Welcome to Element": "Dobrodošli v Element", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Decentralizirano šifrirano sporočanje & sodelovanje s pomočjo [matrix]", "Sign In": "Prijava", "Create Account": "Registracija", diff --git a/src/i18n/strings/sq.json b/src/i18n/strings/sq.json index 1b8d2b8407..71c9b9564c 100644 --- a/src/i18n/strings/sq.json +++ b/src/i18n/strings/sq.json @@ -4,7 +4,7 @@ "Custom Server Options": "Mundësi Vetjake Shërbyesi", "Dismiss": "Mos e merr parasysh", "powered by Matrix": "bazuar në Matrix", - "Welcome to Riot.im": "Mirë se vini te Riot.im", + "Welcome to Element": "Mirë se vini te Element", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Fjalosje & bashkëpunim të decentralizuar, të fshehtëzuar, bazuar në [matrix]", "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Mund të përdorni mundësitë mbi shërbyes vetjak, për të bërë hyrjen në shërbyes të tjerë Matrix, duke dhënë një tjetër URL shërbyesi Home. Kjo ju lejon ta përdorni këtë aplikacion në një tjetër shërbyes Home, me një llogari ekzistuese Matrix.", "Sign In": "Hyni", diff --git a/src/i18n/strings/sr.json b/src/i18n/strings/sr.json index 6c8fce5bf7..9dc342cd6f 100644 --- a/src/i18n/strings/sr.json +++ b/src/i18n/strings/sr.json @@ -4,7 +4,7 @@ "Custom Server Options": "Прилагођене опције сервера", "Dismiss": "Одбаци", "powered by Matrix": "покреће Матрикс", - "Welcome to Riot.im": "Добродошли у Riot.im", + "Welcome to Element": "Добродошли у Element", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Децентрализовано, шифровано ћаскање и сарадња коју покреће [matrix]", "Sign In": "Пријава", "Create Account": "Направи налог", diff --git a/src/i18n/strings/sr_Latn.json b/src/i18n/strings/sr_Latn.json index e4e52bc45e..d6f24e5690 100644 --- a/src/i18n/strings/sr_Latn.json +++ b/src/i18n/strings/sr_Latn.json @@ -10,7 +10,7 @@ "Custom Server Options": "Prilagođene opcije servera", "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Možete koristiti prilagođene opcije servera kako bi ste se prijavili na druge Matriks servere tako što ćete navesti različiti URL kućnog servera. Ovo vam omogućava da koristite Riot sa postojećim Matriks nalogom na drugom kućnom serveru.", "Dismiss": "Odbaci", - "Welcome to Riot.im": "Dobrodošli u Riot.im", + "Welcome to Element": "Dobrodošli u Element", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Decentralizovano, šifrovano ćaskanje & i saradnja koju pokreće [matrix]", "Sign In": "Prijavite se", "Create Account": "Napravite nalog", diff --git a/src/i18n/strings/sv.json b/src/i18n/strings/sv.json index 634763845b..786227c638 100644 --- a/src/i18n/strings/sv.json +++ b/src/i18n/strings/sv.json @@ -4,7 +4,7 @@ "powered by Matrix": "drivs av Matrix", "Unknown device": "Okänd enhet", "You need to be using HTTPS to place a screen-sharing call.": "Du måste använda HTTPS för att ringa med skärmdelning.", - "Welcome to Riot.im": "Välkommen till Riot.im", + "Welcome to Element": "Välkommen till Element", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Decentraliserad, krypterad chatt & samarbetsplattform möjliggjort med [matrix]", "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Under anpassade serverinställningar kan du logga in på andra Matrixservrar genom att ange en egen hemserveradress. På så sätt kan du använda Riot med ett Matrixkonto du redan har på en annan hemserver.", "Sign In": "Logga in", diff --git a/src/i18n/strings/ta.json b/src/i18n/strings/ta.json index 7617e0d087..a7782c6c3c 100644 --- a/src/i18n/strings/ta.json +++ b/src/i18n/strings/ta.json @@ -4,7 +4,7 @@ "powered by Matrix": "Matrix-ஆல் ஆனது", "Unknown device": "தெரியாத கருவி", "You need to be using HTTPS to place a screen-sharing call.": "நீங்கள் திரைபகிர்வு அழைப்பை மேற்க்கொள்ள HTTPS-ஐ பயன்படுத்த வேண்டும்.", - "Welcome to Riot.im": "Riot.im -ற்க்கு வரவேற்க்கிறோம்", + "Welcome to Element": "Element -ற்க்கு வரவேற்க்கிறோம்", "The message from the parser is: %(message)s": "பாகுபடுத்தி அனுப்பிய செய்தி: %(message)s", "Invalid JSON": "தவறான JSON", "Unexpected error preparing the app. See console for details.": "பயன்பாட்டைத் தயாரிப்பதில் எதிர்பாராத பிழை. விவரங்களுக்கு console ஐப் பார்க்கவும்.", diff --git a/src/i18n/strings/te.json b/src/i18n/strings/te.json index 063ff8d2d8..7e6625cd3d 100644 --- a/src/i18n/strings/te.json +++ b/src/i18n/strings/te.json @@ -1,7 +1,6 @@ { "Custom Server Options": "మలచిన సేవిక ఎంపికలు", "Dismiss": "రద్దుచేసే", - "Welcome to Riot.im": "రిమోట్.ఇం కి స్వగతం", "Unknown device": "తెలుయని పరికరం", "You need to be using HTTPS to place a screen-sharing call.": "తెర ని పంచే కాల్ కి HTTPS అవసరం." } diff --git a/src/i18n/strings/th.json b/src/i18n/strings/th.json index f0934d72cc..863776b6f6 100644 --- a/src/i18n/strings/th.json +++ b/src/i18n/strings/th.json @@ -4,7 +4,7 @@ "Unknown device": "อุปกรณ์ที่ไม่รู้จัก", "You need to be using HTTPS to place a screen-sharing call.": "คุณต้องใช้ HTTPS เพื่อเริ่มติดต่อแบบแบ่งปันหน้าจอ", "Custom Server Options": "กำหนดเซิร์ฟเวอร์เอง", - "Welcome to Riot.im": "ยินดีต้อนรับสู่ Riot.im", + "Welcome to Element": "ยินดีต้อนรับสู่ Element", "Decentralised, encrypted chat & collaboration powered by [matrix]": "ระบบแชทและประสานงาน ไร้ศูนย์กลางและเข้ารหัสได้ โดยใช้เทคโนโลยีจาก [matrix]", "The message from the parser is: %(message)s": "ข้อความจากparserคือ:%(message)s", "Invalid JSON": "JSON ไม่ถูกต้อง", diff --git a/src/i18n/strings/tr.json b/src/i18n/strings/tr.json index 49ee7c38cc..7ed2e05bbc 100644 --- a/src/i18n/strings/tr.json +++ b/src/i18n/strings/tr.json @@ -4,7 +4,7 @@ "powered by Matrix": "Matrix'den besleniyor", "Unknown device": "Bilinmeyen aygıt", "You need to be using HTTPS to place a screen-sharing call.": "Ekran paylaşımlı arama yapmak için HTTPS kullanıyor olmalısınız.", - "Welcome to Riot.im": "Riot.im'e hoş geldiniz", + "Welcome to Element": "Element'e hoş geldiniz", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Merkezsiz, şifreli sohbet & işbirliği ile Matrix tarafından desteklenmektedir", "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Özel sunucu seçenekleri kullanıp farklı bir anamakine URL'si belirleyerek diğer Matrix sunucularına giriş yapabilirsin. Bu Riot'u varolan bir Matrix hesabı ile farklı anamakine de kullanmanı sağlar.", "Sign In": "Giriş Yap", diff --git a/src/i18n/strings/uk.json b/src/i18n/strings/uk.json index 9734d3f9bf..3b074f23fb 100644 --- a/src/i18n/strings/uk.json +++ b/src/i18n/strings/uk.json @@ -4,7 +4,7 @@ "powered by Matrix": "працює на Matrix", "Unknown device": "Невідомий пристрій", "You need to be using HTTPS to place a screen-sharing call.": "Ви маєте використовувати HTTPS щоб зробити виклик із поширенням екрану.", - "Welcome to Riot.im": "Ласкаво просимо до Riot.im", + "Welcome to Element": "Ласкаво просимо до Element", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Децентралізована, зашифрована балачка та засіб для співробітництва, що працює на [matrix]", "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Ви можете використати власні параметри сервера для входу в інші Matrix сервери, вказавши інший URL. Це дозволить використовувати Riot з наявною обліківкою Matrix на іншому сервері.", "Sign In": "Увійти", diff --git a/src/i18n/strings/vi.json b/src/i18n/strings/vi.json index d3ec5f8058..6f702d8192 100644 --- a/src/i18n/strings/vi.json +++ b/src/i18n/strings/vi.json @@ -4,7 +4,7 @@ "Custom Server Options": "Các lựa chọn máy chủ", "Dismiss": "Bỏ qua", "powered by Matrix": "tài trợ bởi Matrix", - "Welcome to Riot.im": "Chào mừng tới Riot.im", + "Welcome to Element": "Chào mừng tới Element", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Chat phân tán, mã hóa & giao tiếp được tài trợ bởi [matrix]", "Unexpected error preparing the app. See console for details.": "Lỗi xảy ra trong lúc chuẩn bị app. Xem console log để biết chi tiết.", "The message from the parser is: %(message)s": "Nội dung tin là: %(message)s", diff --git a/src/i18n/strings/vls.json b/src/i18n/strings/vls.json index a65d17c6af..3ce275518a 100644 --- a/src/i18n/strings/vls.json +++ b/src/i18n/strings/vls.json @@ -8,7 +8,7 @@ "Custom Server Options": "Angepaste serverinstelliengn", "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Je kut d’angepaste serverinstelliengn gebruukn vo jen eigen an te meldn by andere Matrix-servers, deur een andere thuusserver-URL in te geevn. Da lat je toe van Riot te gebruukn met e bestoande Matrix-account by een andere thuusserver.", "Dismiss": "Afwyzn", - "Welcome to Riot.im": "Welgekommn by Riot.im", + "Welcome to Element": "Welgekommn by Element", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Gedecentraliseerd en versleuteld chattn & soamenwerkn meuglik gemakt deur [matrix]", "Sign In": "Anmeldn", "Create Account": "Account anmoakn", diff --git a/src/i18n/strings/zh_Hans.json b/src/i18n/strings/zh_Hans.json index 5a83fba71e..cfdb8cf27e 100644 --- a/src/i18n/strings/zh_Hans.json +++ b/src/i18n/strings/zh_Hans.json @@ -4,7 +4,7 @@ "powered by Matrix": "由 Matrix 驱动", "Unknown device": "未知设备", "You need to be using HTTPS to place a screen-sharing call.": "您需要使用 HTTPS 以进行共享屏幕通话。", - "Welcome to Riot.im": "欢迎来到 Riot.im", + "Welcome to Element": "欢迎来到 Element", "Decentralised, encrypted chat & collaboration powered by [matrix]": "去中心化、加密聊天与协作,由 [matrix] 驱动", "Sign In": "登入", "Create Account": "创建帐号", diff --git a/src/i18n/strings/zh_Hant.json b/src/i18n/strings/zh_Hant.json index 78d8eeb1dc..b44f97e1f5 100644 --- a/src/i18n/strings/zh_Hant.json +++ b/src/i18n/strings/zh_Hant.json @@ -4,7 +4,7 @@ "powered by Matrix": "由 Matrix 提供", "Unknown device": "未知裝置", "You need to be using HTTPS to place a screen-sharing call.": "你需要使用 HTTPS 來撥打螢幕分享的通話。", - "Welcome to Riot.im": "歡迎來到 Riot.im", + "Welcome to Element": "歡迎來到 Element", "Decentralised, encrypted chat & collaboration powered by [matrix]": "去中心化、保密的聊天與協作,由 [matrix] 提供", "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "您可以以使用自訂伺服器選項指定不同的家伺服器 URL 以登入其他 Matrix 伺服器。這讓您可以在不同的家伺服器上使用既有的 Matrix 帳號登入 Riot。", "Sign In": "登入", From acb22f4fe5c3cbd347b570f7c47ac7797503256c Mon Sep 17 00:00:00 2001 From: "J. Ryan Stinnett" Date: Mon, 13 Jul 2020 17:02:20 +0100 Subject: [PATCH 06/10] Replace references to riot.im --- src/async-components/structures/CompatibilityView.tsx | 4 ++-- src/async-components/structures/ErrorView.tsx | 4 ++-- src/i18n/strings/en_EN.json | 2 +- src/vector/app.tsx | 4 ++-- src/vector/mobile_guide/index.js | 2 +- src/vector/static/incompatible-browser.html | 4 ++-- src/vector/static/unable-to-load.html | 4 ++-- 7 files changed, 12 insertions(+), 12 deletions(-) diff --git a/src/async-components/structures/CompatibilityView.tsx b/src/async-components/structures/CompatibilityView.tsx index b42c3f7fd0..7bcd4774d7 100644 --- a/src/async-components/structures/CompatibilityView.tsx +++ b/src/async-components/structures/CompatibilityView.tsx @@ -97,8 +97,8 @@ const CompatibilityView: React.FC = ({ onAccept }) => { diff --git a/src/async-components/structures/ErrorView.tsx b/src/async-components/structures/ErrorView.tsx index 3f0cca2dbb..acde7ac0a2 100644 --- a/src/async-components/structures/ErrorView.tsx +++ b/src/async-components/structures/ErrorView.tsx @@ -48,8 +48,8 @@ const ErrorView: React.FC = ({title, messages}) => {
diff --git a/src/i18n/strings/en_EN.json b/src/i18n/strings/en_EN.json index 5dd43a4b1f..117892ec7f 100644 --- a/src/i18n/strings/en_EN.json +++ b/src/i18n/strings/en_EN.json @@ -27,7 +27,7 @@ "Please install Chrome, Firefox, or Safari for the best experience.": "Please install Chrome, Firefox, or Safari for the best experience.", "You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.", "I understand the risks and wish to continue": "I understand the risks and wish to continue", - "Go to Riot.im": "Go to Riot.im", + "Go to element.io": "Go to element.io", "Failed to start": "Failed to start", "Welcome to Element": "Welcome to Element", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Decentralised, encrypted chat & collaboration powered by [matrix]", diff --git a/src/vector/app.tsx b/src/vector/app.tsx index 5dcee9a7a2..445a37ba55 100644 --- a/src/vector/app.tsx +++ b/src/vector/app.tsx @@ -86,11 +86,11 @@ function onNewScreen(screen: string) { // // If we're in electron, we should never pass through a file:// URL otherwise // the identity server will try to 302 the browser to it, which breaks horribly. -// so in that instance, hardcode to use riot.im/app for now instead. +// so in that instance, hardcode to use app.element.io for now instead. function makeRegistrationUrl(params: object) { let url; if (window.location.protocol === "vector:") { - url = 'https://riot.im/app/#/register'; + url = 'https://app.element.io/#/register'; } else { url = ( window.location.protocol + '//' + diff --git a/src/vector/mobile_guide/index.js b/src/vector/mobile_guide/index.js index 105aba1fa2..f174d777b1 100644 --- a/src/vector/mobile_guide/index.js +++ b/src/vector/mobile_guide/index.js @@ -93,7 +93,7 @@ async function initPage() { if (hsUrl !== 'https://matrix.org/') { document.getElementById('configure_riot_button').href = - "https://riot.im/config/config?hs_url=" + encodeURIComponent(hsUrl) + + "https://app.element.io/config/config?hs_url=" + encodeURIComponent(hsUrl) + "&is_url=" + encodeURIComponent(isUrl); document.getElementById('step1_heading').innerHTML= '1: Install the app'; document.getElementById('step2_container').style.display = 'block'; diff --git a/src/vector/static/incompatible-browser.html b/src/vector/static/incompatible-browser.html index 69287949e1..7caee20488 100644 --- a/src/vector/static/incompatible-browser.html +++ b/src/vector/static/incompatible-browser.html @@ -482,8 +482,8 @@
diff --git a/src/vector/static/unable-to-load.html b/src/vector/static/unable-to-load.html index c91e51a8e8..c1eb0f9f46 100644 --- a/src/vector/static/unable-to-load.html +++ b/src/vector/static/unable-to-load.html @@ -189,8 +189,8 @@
From c8a258b4bb303af0cef01816be7015fe4c629f7e Mon Sep 17 00:00:00 2001 From: "J. Ryan Stinnett" Date: Mon, 13 Jul 2020 17:03:03 +0100 Subject: [PATCH 07/10] Replace riot.im in translated strings --- src/i18n/strings/bg.json | 2 +- src/i18n/strings/de_DE.json | 2 +- src/i18n/strings/eo.json | 2 +- src/i18n/strings/es.json | 2 +- src/i18n/strings/et.json | 2 +- src/i18n/strings/eu.json | 2 +- src/i18n/strings/fi.json | 2 +- src/i18n/strings/fr.json | 2 +- src/i18n/strings/gl.json | 2 +- src/i18n/strings/hu.json | 2 +- src/i18n/strings/it.json | 2 +- src/i18n/strings/ja.json | 2 +- src/i18n/strings/kab.json | 2 +- src/i18n/strings/ko.json | 2 +- src/i18n/strings/lt.json | 2 +- src/i18n/strings/lv.json | 2 +- src/i18n/strings/nl.json | 2 +- src/i18n/strings/pl.json | 2 +- src/i18n/strings/pt_BR.json | 2 +- src/i18n/strings/ro.json | 2 +- src/i18n/strings/ru.json | 2 +- src/i18n/strings/sk.json | 2 +- src/i18n/strings/sq.json | 2 +- src/i18n/strings/sv.json | 2 +- src/i18n/strings/uk.json | 2 +- src/i18n/strings/zh_Hans.json | 2 +- src/i18n/strings/zh_Hant.json | 2 +- 27 files changed, 27 insertions(+), 27 deletions(-) diff --git a/src/i18n/strings/bg.json b/src/i18n/strings/bg.json index 0794fefdbc..3a44895d96 100644 --- a/src/i18n/strings/bg.json +++ b/src/i18n/strings/bg.json @@ -26,6 +26,6 @@ "Please install Chrome, Firefox, or Safari for the best experience.": "Инсталирайте Chrome, Firefox или Safari за най-добра работа.", "You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Може да продължите да използвате сегашния си браузър, но някои или всички функции може да се окажат неработещи, или пък външния вид на приложението да изглежда неправилен.", "I understand the risks and wish to continue": "Разбирам рисковете и желая да продължа", - "Go to Riot.im": "Отиди на Riot.im", + "Go to element.io": "Отиди на element.io", "Failed to start": "Неуспешно стартиране" } diff --git a/src/i18n/strings/de_DE.json b/src/i18n/strings/de_DE.json index 8b0eca8ea1..836525e129 100644 --- a/src/i18n/strings/de_DE.json +++ b/src/i18n/strings/de_DE.json @@ -21,7 +21,7 @@ "Missing indexeddb worker script!": "Indexeddb worker Skript fehlt!", "Previous/next recently visited room or community": "Vorheriger/nächster kürzlich besuchter Raum oder Community", "Unsupported browser": "Nicht unterstützter Browser", - "Go to Riot.im": "Gehe zu Riot.im", + "Go to element.io": "Gehe zu element.io", "Failed to start": "Start fehlgeschlagen", "%(brand)s Desktop (%(platformName)s)": "%(brand)s Desktop (%(platformName)s)", "%(appName)s (%(browserName)s, %(osName)s)": "%(appName)s (%(browserName)s, %(osName)s)", diff --git a/src/i18n/strings/eo.json b/src/i18n/strings/eo.json index 4e5b48d1aa..238c99b6d0 100644 --- a/src/i18n/strings/eo.json +++ b/src/i18n/strings/eo.json @@ -26,7 +26,7 @@ "Please install Chrome, Firefox, or Safari for the best experience.": "Bonvolu instali foliumilon Chrome, Firefox, aŭ Safari, por la plej bona sperto.", "You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Vi povas daŭre uzadi vian nunan foliumilon, sed iuj (eĉ ĉiuj) funkcioj eble ne funkcios, kaj la aspekto de la aplikaĵo eble ne estos ĝusta.", "I understand the risks and wish to continue": "Mi komprenas la riskon kaj volas pluiĝi", - "Go to Riot.im": "Iri al Riot.im", + "Go to element.io": "Iri al element.io", "Failed to start": "Malsukcesis starti", "Download Completed": "Elŝuto finiĝis", "Open": "Malfermi" diff --git a/src/i18n/strings/es.json b/src/i18n/strings/es.json index 27ede5af89..0031e0992e 100644 --- a/src/i18n/strings/es.json +++ b/src/i18n/strings/es.json @@ -26,6 +26,6 @@ "Please install Chrome, Firefox, or Safari for the best experience.": "Por favor, instale Chrome, Firefox, o Safari para la mejor experiencia.", "You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Puedes seguir utilizando tu navegador actual, pero puede que algunas funcionalidades no estén disponibles o que algunas partes de la aplicación se muestren de forma incorrecta.", "I understand the risks and wish to continue": "Entiendo los riesgos y deseo continuar", - "Go to Riot.im": "Ir a Riot.im", + "Go to element.io": "Ir a element.io", "Failed to start": "Fallo al iniciar" } diff --git a/src/i18n/strings/et.json b/src/i18n/strings/et.json index a8c1a5f973..9fc950670c 100644 --- a/src/i18n/strings/et.json +++ b/src/i18n/strings/et.json @@ -26,7 +26,7 @@ "Please install Chrome, Firefox, or Safari for the best experience.": "Parima kasutuskogemuse jaoks palun paigalda Chrome, Firefox või Safari.", "You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Sa võid jätkata praeguse brauseri kasutamist, kuid mõned või kõik funktsionaalsused ei pruugi toimida ning rakenduse välimus võib vigane olla.", "I understand the risks and wish to continue": "Ma mõistan riske ja soovin jätkata", - "Go to Riot.im": "Mine Riot.im lehele", + "Go to element.io": "Mine element.io lehele", "Failed to start": "Käivitamine ei õnnestunud", "Download Completed": "Allalaadimine on lõpetatud", "Open": "Ava" diff --git a/src/i18n/strings/eu.json b/src/i18n/strings/eu.json index d39f41c23e..ca2eeb6619 100644 --- a/src/i18n/strings/eu.json +++ b/src/i18n/strings/eu.json @@ -26,6 +26,6 @@ "Please install Chrome, Firefox, or Safari for the best experience.": "Instalatu Chrome, Firefox, edo Safari esperientzia hobe baterako.", "You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Zure oraingo nabigatzailea erabiltzen jarraitu dezakezu, baina ezaugarri batzuk agian ez dute funtzionatuko eta itxura desegokia izan daiteke.", "I understand the risks and wish to continue": "Arriskuak ulertzen ditut eta jarraitu nahi dut", - "Go to Riot.im": "Joan Riot.im gunera", + "Go to element.io": "Joan element.io gunera", "Failed to start": "Huts egin du abiatzean" } diff --git a/src/i18n/strings/fi.json b/src/i18n/strings/fi.json index e830d582cb..0aafce23fe 100644 --- a/src/i18n/strings/fi.json +++ b/src/i18n/strings/fi.json @@ -29,5 +29,5 @@ "Failed to start": "Käynnistys ei onnistunut", "Download Completed": "Lataus valmis", "Open": "Avaa", - "Go to Riot.im": "Mene osoitteeseen riot.im" + "Go to element.io": "Mene osoitteeseen riot.im" } diff --git a/src/i18n/strings/fr.json b/src/i18n/strings/fr.json index 14bf466046..451e657f89 100644 --- a/src/i18n/strings/fr.json +++ b/src/i18n/strings/fr.json @@ -25,7 +25,7 @@ "Please install Chrome, Firefox, or Safari for the best experience.": "Veuillez installer Chrome, Firefox ou Safari pour une expérience optimale.", "You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Vous pouvez continuer à utiliser votre navigateur actuel, mais vous risquez de trouver que certaines fonctionnalités et/ou l'apparence de l'application sont incorrectes.", "I understand the risks and wish to continue": "Je comprends les risques et souhaite continuer", - "Go to Riot.im": "Aller vers Riot.im", + "Go to element.io": "Aller vers element.io", "Failed to start": "Échec au démarrage", "%(brand)s Desktop (%(platformName)s)": "Riot pour bureau (%(platformName)s)", "Download Completed": "Téléchargement terminé", diff --git a/src/i18n/strings/gl.json b/src/i18n/strings/gl.json index 0ebde043ed..2c2893c997 100644 --- a/src/i18n/strings/gl.json +++ b/src/i18n/strings/gl.json @@ -26,7 +26,7 @@ "Please install Chrome, Firefox, or Safari for the best experience.": "Instala Chrome, Firefox, ou Safari para ter unha mellor experiencia.", "You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Podes continuar co teu navegador, pero algunhas características poderían non funcionar e o aspecto da aplicación podería non ser o correcto.", "I understand the risks and wish to continue": "Entendo os riscos e desexo continuar", - "Go to Riot.im": "Ir a Riot.im", + "Go to element.io": "Ir a element.io", "Failed to start": "Fallou o inicio", "Download Completed": "Descarga realizada", "Open": "Abrir" diff --git a/src/i18n/strings/hu.json b/src/i18n/strings/hu.json index 127fe6f990..aa861e91f0 100644 --- a/src/i18n/strings/hu.json +++ b/src/i18n/strings/hu.json @@ -26,7 +26,7 @@ "Please install Chrome, Firefox, or Safari for the best experience.": "A legjobb élmény eléréséhez kérlek telepíts Chrome-ot, Firefoxot vagy Safarit.", "You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Folytathatod a jelenlegi böngésződdel, de néhány vagy az összes funkció használhatatlan lehet, vagy hibák lehetnek az alkalmazás kinézetében és viselkedésében.", "I understand the risks and wish to continue": "Megértettem a kockázatot és folytatom", - "Go to Riot.im": "Irány a Riot.im", + "Go to element.io": "Irány a element.io", "Failed to start": "Az indítás sikertelen", "Download Completed": "A letöltés befejeződött", "Open": "Megnyitás" diff --git a/src/i18n/strings/it.json b/src/i18n/strings/it.json index 8c370f1c16..5443269612 100644 --- a/src/i18n/strings/it.json +++ b/src/i18n/strings/it.json @@ -26,7 +26,7 @@ "Please install Chrome, Firefox, or Safari for the best experience.": "Installa Chrome, Firefox, o Safari per una migliore esperienza.", "You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Puoi comunque usare il browser attuale, ma alcune o tutte le caratteristiche potrebbero non funzionare e l'aspetto dell'applicazione potrebbe essere sbagliato.", "I understand the risks and wish to continue": "Capisco i rischi e desidero continuare", - "Go to Riot.im": "Vai su Riot.im", + "Go to element.io": "Vai su element.io", "Failed to start": "Avvio fallito", "Download Completed": "Scaricamento completato", "Open": "Apri" diff --git a/src/i18n/strings/ja.json b/src/i18n/strings/ja.json index 6c11691f1d..005d561ce1 100644 --- a/src/i18n/strings/ja.json +++ b/src/i18n/strings/ja.json @@ -27,6 +27,6 @@ "Go to your browser to complete Sign In": "サインインを完了させるためにブラウザへ移動してください", "%(appName)s (%(browserName)s, %(osName)s)": "%(appName)s(%(browserName)s, %(osName)s)", "Unsupported browser": "サポートされていないブラウザ", - "Go to Riot.im": "Riot.imへ移動", + "Go to element.io": "Riot.imへ移動", "Failed to start": "起動に失敗しました" } diff --git a/src/i18n/strings/kab.json b/src/i18n/strings/kab.json index b91ad1456a..76d7388792 100644 --- a/src/i18n/strings/kab.json +++ b/src/i18n/strings/kab.json @@ -24,7 +24,7 @@ "Please install Chrome, Firefox, or Safari for the best experience.": "Ma ulac aɣilif, sebded Chrome, Firefox, neɣSafari i tirmit igerrzen.", "You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Tzemreḍ ad tkemmleḍ deg useqdec n yiminig-ik(im) amiran, maca kra n tmahilin neɣ akk zemrent ur nteddu ara, rnu arwes n usnas yezmer ad d-iban d armeɣtu.", "I understand the risks and wish to continue": "Gziɣ ayen ara d-yeḍrun maca bɣiɣ ad kemmleɣ", - "Go to Riot.im": "Ṛuḥ ɣer Riot.im", + "Go to element.io": "Ṛuḥ ɣer element.io", "Failed to start": "Asenker ur yeddi ara", "Welcome to Element": "Ansuf ɣer Element", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Adiwenni & attekki araslemmas d uwgelhan s lmendad n [matrix]" diff --git a/src/i18n/strings/ko.json b/src/i18n/strings/ko.json index dc2494efd5..fb4e3a1745 100644 --- a/src/i18n/strings/ko.json +++ b/src/i18n/strings/ko.json @@ -25,6 +25,6 @@ "Please install Chrome, Firefox, or Safari for the best experience.": "최상의 경험을 위해 Chrome, Firefox, 또는 Safari를 설치해주세요.", "You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "현재 사용중이신 브라우저를 계속 사용하셔도 됩니다, 다만 일부 기능들이 작동하지 않을 수 있으며 애플리케이션이 잘못돼 보일 수 있습니다.", "I understand the risks and wish to continue": "위험하다는 것을 이해했으며 계속하고 싶습니다", - "Go to Riot.im": "Riot.im으로 가기", + "Go to element.io": "Riot.im으로 가기", "Failed to start": "시작 실패" } diff --git a/src/i18n/strings/lt.json b/src/i18n/strings/lt.json index f6e3095891..571be27a64 100644 --- a/src/i18n/strings/lt.json +++ b/src/i18n/strings/lt.json @@ -26,6 +26,6 @@ "Please install Chrome, Firefox, or Safari for the best experience.": "Riot geriausiai veikia su Chrome, Firefox, arba Safari naršyklėmis.", "You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Jūs galite toliau naudotis savo dabartine naršykle, bet kai kurios arba visos funkcijos gali neveikti ir programos išvaizda bei sąsaja gali būti neteisingai rodoma.", "I understand the risks and wish to continue": "Suprantu šią riziką ir noriu tęsti", - "Go to Riot.im": "Eiti į Riot.im", + "Go to element.io": "Eiti į element.io", "Failed to start": "Nepavyko paleisti" } diff --git a/src/i18n/strings/lv.json b/src/i18n/strings/lv.json index fc1d0214a2..95cbddb602 100644 --- a/src/i18n/strings/lv.json +++ b/src/i18n/strings/lv.json @@ -22,6 +22,6 @@ "Please install Chrome, Firefox, or Safari for the best experience.": "Lūdzu instalē Chrome, Firefox, vai Safari priekš labākās pieredzes.", "You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Tu vari turpināt izmantot savu pašreizējo pārlūku, bet dažas vai visas funkcijas nestrādās, un lietotnes izskats var būt nepareizs.", "I understand the risks and wish to continue": "Es pieņemu riskus un vēlos turpināt", - "Go to Riot.im": "Ej uz Riot.im", + "Go to element.io": "Ej uz element.io", "Failed to start": "Neizdevās palaist" } diff --git a/src/i18n/strings/nl.json b/src/i18n/strings/nl.json index 177677a418..4ea5bc1962 100644 --- a/src/i18n/strings/nl.json +++ b/src/i18n/strings/nl.json @@ -26,6 +26,6 @@ "Please install Chrome, Firefox, or Safari for the best experience.": "Installeer Chrome, Firefox, of Safari voor de beste gebruikservaring.", "You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "U kunt uw huidige browser blijven gebruiken, maar sommige of alle features zouden niet kunnen werken en de uitstraling van het programma kan verkeerd zijn.", "I understand the risks and wish to continue": "Ik begrijp de risico's en wil verder gaan", - "Go to Riot.im": "Ga naar Riot.im", + "Go to element.io": "Ga naar element.io", "Failed to start": "Opstarten gefaald" } diff --git a/src/i18n/strings/pl.json b/src/i18n/strings/pl.json index 7d8b7795d5..5a02519df6 100644 --- a/src/i18n/strings/pl.json +++ b/src/i18n/strings/pl.json @@ -26,6 +26,6 @@ "Please install Chrome, Firefox, or Safari for the best experience.": "Zainstaluj Chrome, Firefox, lub Safari w celu zapewnienia najlepszego działania.", "You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Możesz kontynuować używanie obecnej przeglądarki, lecz niektóre lub wszystkie funkcje mogą nie działać oraz wygląd aplikacji może być niepoprawny.", "I understand the risks and wish to continue": "Rozumiem ryzyko i chcę kontynuować", - "Go to Riot.im": "Przejdź do Riot.im", + "Go to element.io": "Przejdź do element.io", "Failed to start": "Nie udało się wystartować" } diff --git a/src/i18n/strings/pt_BR.json b/src/i18n/strings/pt_BR.json index 606ca4825c..5c1875c256 100644 --- a/src/i18n/strings/pt_BR.json +++ b/src/i18n/strings/pt_BR.json @@ -23,7 +23,7 @@ "Please install Chrome, Firefox, or Safari for the best experience.": "Instale o Chrome , o Firefox ou o Safari para obter uma melhor experiência.", "You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Você pode continuar usando o navegador atual, mas alguns dos recursos podem não funcionar e a aparência do aplicativo pode estar incorreta.", "I understand the risks and wish to continue": "Entendo os riscos e desejo continuar", - "Go to Riot.im": "Vá para Riot.im", + "Go to element.io": "Vá para element.io", "Failed to start": "Falha ao iniciar", "Missing indexeddb worker script!": "Script de trabalho indexeddb não encontrado!", "Open": "Abrir", diff --git a/src/i18n/strings/ro.json b/src/i18n/strings/ro.json index d45e1f8c13..b3fe540804 100644 --- a/src/i18n/strings/ro.json +++ b/src/i18n/strings/ro.json @@ -17,6 +17,6 @@ "Unsupported browser": "Acest browser nu este suportat", "Please install Chrome, Firefox, or Safari for the best experience.": "Instalati va rog Chrome, Firefox, or Safari pentru o experienta mai buna.", "I understand the risks and wish to continue": "Inteleg riscul si doresc sa continui", - "Go to Riot.im": "Acceseaza Riot.im", + "Go to element.io": "Acceseaza element.io", "Failed to start": "Nu reuseste sa porneasca" } diff --git a/src/i18n/strings/ru.json b/src/i18n/strings/ru.json index 5777e27963..f3de065472 100644 --- a/src/i18n/strings/ru.json +++ b/src/i18n/strings/ru.json @@ -26,6 +26,6 @@ "Please install Chrome, Firefox, or Safari for the best experience.": "Пожалуйста поставьте Chrome, Firefox, или Safari для лучшей совместимости.", "You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Вы можете продолжать пользоваться этим браузером но некоторые возможности будут недоступны и интерфейс может быть отрисован неправильно.", "I understand the risks and wish to continue": "Я понимаю риск и хочу продолжить", - "Go to Riot.im": "К Riot.im", + "Go to element.io": "К element.io", "Failed to start": "Старт не удался" } diff --git a/src/i18n/strings/sk.json b/src/i18n/strings/sk.json index c20dfdfdab..2156868e70 100644 --- a/src/i18n/strings/sk.json +++ b/src/i18n/strings/sk.json @@ -26,7 +26,7 @@ "Please install Chrome, Firefox, or Safari for the best experience.": "Prosím, nainštalujte si Chrome, Firefox alebo Safari pre najlepší zážitok.", "You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Môžete naďalej používať váš súčasný prehliadač, ale niektoré alebo všetky funkcie nemusia fungovať a zážitok z aplikácie nemusí byť optimálny.", "I understand the risks and wish to continue": "Rozumiem riziku a chcem pokračovať", - "Go to Riot.im": "Prejsť na Riot.im", + "Go to element.io": "Prejsť na element.io", "Failed to start": "Zapnutie zlyhalo", "Download Completed": "Preberanie dokončené", "Open": "Otvoriť" diff --git a/src/i18n/strings/sq.json b/src/i18n/strings/sq.json index 71c9b9564c..235b3d5782 100644 --- a/src/i18n/strings/sq.json +++ b/src/i18n/strings/sq.json @@ -25,7 +25,7 @@ "Please install Chrome, Firefox, or Safari for the best experience.": "Ju lutemi, për funksionimin më të mirë, instaloni Chrome, Firefox, ose Safari.", "You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Mund të vazhdoni të përdorni shfletuesin tuaj të tanishëm, por disa ose krejt veçoritë mund të mos funksionojnë dhe pamja dhe ndjesitë prej aplikacionit të mos jenë të sakta.", "I understand the risks and wish to continue": "I kuptoj rreziqet dhe dëshiroj të vazhdoj", - "Go to Riot.im": "Shko te Riot.im", + "Go to element.io": "Shko te element.io", "Failed to start": "S’u arrit të nisej", "Missing indexeddb worker script!": "Mungon programth worker-i indexeddb-je!", "Download Completed": "Shkarkim i Plotësuar", diff --git a/src/i18n/strings/sv.json b/src/i18n/strings/sv.json index 786227c638..b4532ebb82 100644 --- a/src/i18n/strings/sv.json +++ b/src/i18n/strings/sv.json @@ -26,6 +26,6 @@ "Please install Chrome, Firefox, or Safari for the best experience.": "Installera Chrome, Firefox, eller Safari för den bästa upplevelsen.", "You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Du kan fortsätta använda din nuvarande webbläsare, men vissa eller alla funktioner kanske inte fungerar och uteseendet samt känslan av applikationen kan var felaktig.", "I understand the risks and wish to continue": "Jag förstår riskerna och vill fortsätta", - "Go to Riot.im": "Gå till Riot.im", + "Go to element.io": "Gå till element.io", "Failed to start": "Misslyckade att starta" } diff --git a/src/i18n/strings/uk.json b/src/i18n/strings/uk.json index 3b074f23fb..bfca69c2ec 100644 --- a/src/i18n/strings/uk.json +++ b/src/i18n/strings/uk.json @@ -19,6 +19,6 @@ "Please install Chrome, Firefox, or Safari for the best experience.": "Для найкращих вражень від користування встановіть, будь ласка, Chrome, Firefox, або Safari.", "You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Ви можете продовжити, користуючись вашим поточним переглядачем, але деякі функції можуть не працювати і застосунок може виглядати неправильно.", "I understand the risks and wish to continue": "Я усвідомлюю ризик і бажаю продовжити", - "Go to Riot.im": "Перейти на Riot.im", + "Go to element.io": "Перейти на element.io", "Failed to start": "Запуск не вдався" } diff --git a/src/i18n/strings/zh_Hans.json b/src/i18n/strings/zh_Hans.json index cfdb8cf27e..eaf755821c 100644 --- a/src/i18n/strings/zh_Hans.json +++ b/src/i18n/strings/zh_Hans.json @@ -26,6 +26,6 @@ "Please install Chrome, Firefox, or Safari for the best experience.": "请安装 ChromeFirefoxSafari 以获得最佳体验。", "You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "您可以继续使用您目前的浏览器,但部分或全部的功能可能无法正常工作,应用程序的外观可能也看起来不正确。", "I understand the risks and wish to continue": "我了解风险并希望继续", - "Go to Riot.im": "去 Riot.im", + "Go to element.io": "去 element.io", "Failed to start": "启动失败" } diff --git a/src/i18n/strings/zh_Hant.json b/src/i18n/strings/zh_Hant.json index b44f97e1f5..12f91612a6 100644 --- a/src/i18n/strings/zh_Hant.json +++ b/src/i18n/strings/zh_Hant.json @@ -26,7 +26,7 @@ "Please install Chrome, Firefox, or Safari for the best experience.": "請安裝 ChromeFirefoxSafari 以取得最佳體驗。", "You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "您可以繼續使用您目前的瀏覽器,但部份或全部的功能可能會無法運作,而應用程式的外觀與感覺可能也會不正確。", "I understand the risks and wish to continue": "我了解風險並希望繼續", - "Go to Riot.im": "到 Riot.im", + "Go to element.io": "到 element.io", "Failed to start": "啟動失敗", "Download Completed": "下載完成", "Open": "開啟" From 2af008d5f053af85113b4cedb32e9f600cad4ef6 Mon Sep 17 00:00:00 2001 From: "J. Ryan Stinnett" Date: Mon, 13 Jul 2020 17:18:26 +0100 Subject: [PATCH 08/10] Remove VectorCustomServerOptions and strings --- .../views/auth/VectorCustomServerDialog.js | 50 ------------------- src/i18n/strings/ar.json | 1 - src/i18n/strings/az.json | 2 - src/i18n/strings/be.json | 1 - src/i18n/strings/bg.json | 2 - src/i18n/strings/ca.json | 2 - src/i18n/strings/cs.json | 2 - src/i18n/strings/cy.json | 2 - src/i18n/strings/da.json | 2 - src/i18n/strings/de_DE.json | 2 - src/i18n/strings/el.json | 2 - src/i18n/strings/en_EN.json | 2 - src/i18n/strings/en_US.json | 2 - src/i18n/strings/eo.json | 2 - src/i18n/strings/es.json | 2 - src/i18n/strings/et.json | 2 - src/i18n/strings/eu.json | 2 - src/i18n/strings/fa.json | 1 - src/i18n/strings/fi.json | 2 - src/i18n/strings/fr.json | 2 - src/i18n/strings/ga.json | 2 - src/i18n/strings/gl.json | 2 - src/i18n/strings/he.json | 1 - src/i18n/strings/hi.json | 4 +- src/i18n/strings/hr.json | 1 - src/i18n/strings/hu.json | 2 - src/i18n/strings/id.json | 1 - src/i18n/strings/is.json | 1 - src/i18n/strings/it.json | 2 - src/i18n/strings/ja.json | 2 - src/i18n/strings/jbo.json | 1 - src/i18n/strings/ka.json | 1 - src/i18n/strings/kab.json | 2 - src/i18n/strings/ko.json | 2 - src/i18n/strings/lt.json | 2 - src/i18n/strings/lv.json | 2 - src/i18n/strings/ml.json | 1 - src/i18n/strings/mn.json | 2 - src/i18n/strings/nb_NO.json | 2 - src/i18n/strings/nl.json | 2 - src/i18n/strings/nn.json | 2 - src/i18n/strings/oc.json | 1 - src/i18n/strings/pl.json | 2 - src/i18n/strings/pt.json | 2 - src/i18n/strings/pt_BR.json | 2 - src/i18n/strings/ro.json | 2 - src/i18n/strings/ru.json | 2 - src/i18n/strings/sk.json | 2 - src/i18n/strings/sl.json | 2 - src/i18n/strings/sq.json | 2 - src/i18n/strings/sr.json | 2 - src/i18n/strings/sr_Latn.json | 2 - src/i18n/strings/sv.json | 2 - src/i18n/strings/ta.json | 2 - src/i18n/strings/te.json | 1 - src/i18n/strings/th.json | 1 - src/i18n/strings/tr.json | 2 - src/i18n/strings/uk.json | 2 - src/i18n/strings/vi.json | 2 - src/i18n/strings/vls.json | 2 - src/i18n/strings/zh_Hans.json | 2 - src/i18n/strings/zh_Hant.json | 2 - 62 files changed, 1 insertion(+), 160 deletions(-) delete mode 100644 src/components/views/auth/VectorCustomServerDialog.js diff --git a/src/components/views/auth/VectorCustomServerDialog.js b/src/components/views/auth/VectorCustomServerDialog.js deleted file mode 100644 index c4f4e7495a..0000000000 --- a/src/components/views/auth/VectorCustomServerDialog.js +++ /dev/null @@ -1,50 +0,0 @@ -/* -Copyright 2015, 2016 OpenMarket Ltd -Copyright 2017, 2019 New Vector Ltd - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -import React from "react"; -import { _t } from 'matrix-react-sdk/src/languageHandler'; - -/** - * This is identical to `CustomServerDialog` except for replacing "this app" - * with "Riot". - */ -const VectorCustomServerDialog = ({onFinished}) => { - return ( -
-
- { _t('Custom Server Options') } -
-
-

{_t( - "You can use the custom server options to sign into other " + - "Matrix servers by specifying a different homeserver URL. This " + - "allows you to use Riot with an existing Matrix account on a " + - "different homeserver.", - )}

-
-
- -
-
- ); -}; - -VectorCustomServerDialog.replaces = 'CustomServerDialog'; - -export default VectorCustomServerDialog; diff --git a/src/i18n/strings/ar.json b/src/i18n/strings/ar.json index 28753df625..0cc2534212 100644 --- a/src/i18n/strings/ar.json +++ b/src/i18n/strings/ar.json @@ -1,5 +1,4 @@ { - "Custom Server Options": "الإعدادات الشخصية للخادوم", "Dismiss": "تجاهل", "Unknown device": "جهاز مجهول", "You need to be using HTTPS to place a screen-sharing call.": "تحتاج الى استخدام الاتصال الآمن (HTTPS) للسماح بمشاركة الشاشة.", diff --git a/src/i18n/strings/az.json b/src/i18n/strings/az.json index faa961bfad..6958694e77 100644 --- a/src/i18n/strings/az.json +++ b/src/i18n/strings/az.json @@ -10,8 +10,6 @@ "Invalid configuration: no default server specified.": "Yanlış konfiqurasiya: ilkin server təyin edilməyib", "The message from the parser is: %(message)s": "Sözügedən mesaj: %(message)s", "powered by Matrix": "Matrix tərəfindən təchiz edilmişdir", - "Custom Server Options": "Fərdi Server Seçimləri", - "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Fərqli server URL-ni təyin etməklə digər Matrix serverlərinə daxil olmaq üçün fərdi server seçimlərini istifadə edə bilərsiniz. Bu sizə başqa serverdə qaldırılmış mövcud Matrix hesabınızla Riot-u işlətməyə imkan verir.", "Dismiss": "Nəzərə almayın", "Welcome to Element": "Element-ə xoş gəlmişsiniz", "Decentralised, encrypted chat & collaboration powered by [matrix]": "[matrix] tərəfindən təchiz edilmiş mərkəziləşdirilməmiş, şifrələnmiş çat və əməkdaşlıq platforması" diff --git a/src/i18n/strings/be.json b/src/i18n/strings/be.json index c9ddc6426a..2078f53ee6 100644 --- a/src/i18n/strings/be.json +++ b/src/i18n/strings/be.json @@ -1,5 +1,4 @@ { - "Custom Server Options": "Карыстальніцкія параметры сервера", "Dismiss": "Aдхіліць", "powered by Matrix": "працуе на Matrix" } diff --git a/src/i18n/strings/bg.json b/src/i18n/strings/bg.json index 3a44895d96..3b41a7622b 100644 --- a/src/i18n/strings/bg.json +++ b/src/i18n/strings/bg.json @@ -1,12 +1,10 @@ { "Unknown device": "Непознато устройство", "You need to be using HTTPS to place a screen-sharing call.": "Трябва да използвате HTTPS, за да споделите екрана си.", - "Custom Server Options": "Потребителски опции за сървър", "Dismiss": "Затвори", "powered by Matrix": "базирано на Matrix", "Welcome to Element": "Добре дошли в Element", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Децентрализиран, шифрован чат и съвместна работа, базирани на [matrix]", - "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Може да използвате настройките за собствен сървър за да влезете в друг Matrix сървър, чрез указване на адреса му. Това ви позволява да използвате Riot със съществуващ Matrix акаунт, принадлежащ към друг сървър.", "Sign In": "Вписване", "Create Account": "Създай профил", "Explore rooms": "Открий стаи", diff --git a/src/i18n/strings/ca.json b/src/i18n/strings/ca.json index 40b8382bda..d4be8f45f3 100644 --- a/src/i18n/strings/ca.json +++ b/src/i18n/strings/ca.json @@ -1,5 +1,4 @@ { - "Custom Server Options": "Opcions de servidor personalitzat", "Dismiss": "Omet", "Unknown device": "Dispositiu desconegut", "Welcome to Element": "Us donem la benvinguda a Element", @@ -8,7 +7,6 @@ "Decentralised, encrypted chat & collaboration powered by [matrix]": "Xat descentralitzat, encriptat i col·laboratiu amb tecnologia de [matrix]", "Create Account": "Crea un compte", "Explore rooms": "Exploreu les sales", - "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Podeu emprar les opcions personalitzades del servidor per iniciar la sessió en altres servidors de Matrix especificant un URL de servidor personal diferent. Això us permet emprar el Riot amb un compte de Matrix existent en un servidor personal diferent.", "Sign In": "Inicia la sessió", "Invalid configuration: no default server specified.": "Configuració no vàlida: no s'ha especificat cap servidor per defecte.", "Invalid JSON": "JSON no vàlid", diff --git a/src/i18n/strings/cs.json b/src/i18n/strings/cs.json index 15831cc7bd..4752a768b8 100644 --- a/src/i18n/strings/cs.json +++ b/src/i18n/strings/cs.json @@ -4,9 +4,7 @@ "You need to be using HTTPS to place a screen-sharing call.": "Pro uskutečnění hovoru se sdílením obrazovky musíte používat HTTPS.", "Dismiss": "Zahodit", "powered by Matrix": "používá protokol Matrix", - "Custom Server Options": "Vlastní nastavení serveru", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Decentralizovaný, šifrovaný chat a spolupráce na platformě [matrix]", - "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Ve vlastním nastavení serveru můžete nastavit použití vlastního domovského serveru. To vám umožní používat Riot s existujícím Matrix účtem na jiném serveru.", "Sign In": "Přihlásit se", "Create Account": "Vytvořit účet", "Explore rooms": "Procházet místnosti", diff --git a/src/i18n/strings/cy.json b/src/i18n/strings/cy.json index 6a881bf600..dcee3439ad 100644 --- a/src/i18n/strings/cy.json +++ b/src/i18n/strings/cy.json @@ -7,8 +7,6 @@ "Unknown device": "Dyfais anhysbys", "You need to be using HTTPS to place a screen-sharing call.": "Mae angen i chi fod yn defnyddio HTTPS i osod galwad rhannu sgrin.", "powered by Matrix": "pwerwyd gan Matrix", - "Custom Server Options": "Opsiynau Gweinydd Addasadwy", - "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Gallwch ddefnyddio'r opsiynau gweinydd addasadwy i mewngofnodi i mewn i weinyddion Matrix eraill trwy rhoi URL hafanweinydd gwahanol. Mae hyn yn caniatáu ichi ddefnyddio Riot gyda chyfrif Matrix sy'n bodoli eisoes ar hafanweinydd gwahanol.", "Dismiss": "Wfftio", "Welcome to Element": "Croeso i Element", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Sgwrsio a chydweithredu datganoledig a amgryptiedig â phwerwyd gan [matrix]", diff --git a/src/i18n/strings/da.json b/src/i18n/strings/da.json index e7cb38e6ff..d31f055503 100644 --- a/src/i18n/strings/da.json +++ b/src/i18n/strings/da.json @@ -1,5 +1,4 @@ { - "Custom Server Options": "Brugerdefinerede serverindstillinger", "Dismiss": "Afslut", "powered by Matrix": "Drevet af Matrix", "Unknown device": "Ukendt enhed", @@ -11,7 +10,6 @@ "Unexpected error preparing the app. See console for details.": "Uventet fejl ved forberedelse af appen. Se konsollen for detaljer.", "Invalid configuration: can only specify one of default_server_config, default_server_name, or default_hs_url.": "Ugyldig konfiguration: kan kun angive en af default_server_config, default_server_name eller default_hs_url.", "Invalid configuration: no default server specified.": "Ugyldig konfiguration: ingen standardserver angivet.", - "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Du kan bruge de brugertilpassede serverindstillinger til at logge på andre Matrix-servere ved at angive en anden homeserver URL. Dette giver dig mulighed for at bruge Riot med en eksisterende Matrix konto på en anden homeserver.", "Sign In": "Log ind", "Create Account": "Opret brugerkonto", "Explore rooms": "Udforsk rum", diff --git a/src/i18n/strings/de_DE.json b/src/i18n/strings/de_DE.json index 836525e129..6dab0ee15e 100644 --- a/src/i18n/strings/de_DE.json +++ b/src/i18n/strings/de_DE.json @@ -1,12 +1,10 @@ { "powered by Matrix": "betrieben mit Matrix", - "Custom Server Options": "Benutzerdefinierte Server-Optionen", "Dismiss": "Ablehnen", "Unknown device": "Unbekanntes Gerät", "You need to be using HTTPS to place a screen-sharing call.": "Du musst HTTPS nutzen um einen Anruf mit Bildschirmfreigabe durchzuführen.", "Welcome to Element": "Willkommen bei Element", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Dezentrale, verschlüsselte Chat- & Kollaborationslösung unterstützt von [matrix]", - "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Du kannst benutzerdefinierte Server-Optionen nutzen, um dich an anderen Matrix Servern anzumelden, indem du eine andere Heimserver-URL angibst. Dies erlaubt dir, Riot mit einem existierenden Matrix-Konto auf einem anderen Heimserver zu nutzen.", "Sign In": "Anmelden", "Create Account": "Account erstellen", "Explore rooms": "Erkunde Räume", diff --git a/src/i18n/strings/el.json b/src/i18n/strings/el.json index 0196ab5e4d..b4c9b28192 100644 --- a/src/i18n/strings/el.json +++ b/src/i18n/strings/el.json @@ -1,5 +1,4 @@ { - "Custom Server Options": "Προσαρμοσμένες ρυθμίσεις διακομιστή", "Dismiss": "Απόρριψη", "Unknown device": "Άγνωστη συσκευή", "You need to be using HTTPS to place a screen-sharing call.": "Απαιτείται η χρήση HTTPS για την πραγματοποίηση κλήσης διαμοιρασμού επιφάνειας εργασίας.", @@ -13,6 +12,5 @@ "Unexpected error preparing the app. See console for details.": "Απρόοπτο σφάλμα κατά την προετοιμασία της εφαρμογής. Δείτε το τερματικό για λεπτομέρειες.", "Invalid configuration: can only specify one of default_server_config, default_server_name, or default_hs_url.": "Μη έγκυρη ρύθμιση παραμέτρων: δυνατότητα ορισμού μόνο ένα από τα default_server_config, default_server_name, ή default_hs_url.", "Invalid configuration: no default server specified.": "Μη έγκυρη ρύθμιση παραμέτρων: δεν έχει οριστεί προκαθορισμένος διακομιστής.", - "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Μπορείτε να χρησιμοποιήσετε τις επιλογές προσαρμοσμένου διακομιστή για να κάνετε σύνδεση σε άλλους διακομιστές Matrix με το να ορίσετε διαφορετικό URL διακομιστή φιλοξενίας. Αυτό σας επιτρέπει να χρησιμοποιήσετε το Riot με έναν υπάρχον λογαριασμό Matrix σε ένα διαφορετικό διακομιστή φιλοξενίας.", "Explore rooms": "Εξερευνήστε δωμάτια" } diff --git a/src/i18n/strings/en_EN.json b/src/i18n/strings/en_EN.json index 117892ec7f..6fbf308b3c 100644 --- a/src/i18n/strings/en_EN.json +++ b/src/i18n/strings/en_EN.json @@ -19,8 +19,6 @@ "%(appName)s (%(browserName)s, %(osName)s)": "%(appName)s (%(browserName)s, %(osName)s)", "You need to be using HTTPS to place a screen-sharing call.": "You need to be using HTTPS to place a screen-sharing call.", "powered by Matrix": "powered by Matrix", - "Custom Server Options": "Custom Server Options", - "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.", "Unsupported browser": "Unsupported browser", "Your browser can't run %(brand)s": "Your browser can't run %(brand)s", "%(brand)s uses advanced browser features which aren't supported by your current browser.": "%(brand)s uses advanced browser features which aren't supported by your current browser.", diff --git a/src/i18n/strings/en_US.json b/src/i18n/strings/en_US.json index bbe2b802d4..d6026903fc 100644 --- a/src/i18n/strings/en_US.json +++ b/src/i18n/strings/en_US.json @@ -1,12 +1,10 @@ { - "Custom Server Options": "Custom Server Options", "Dismiss": "Dismiss", "powered by Matrix": "powered by Matrix", "Unknown device": "Unknown device", "You need to be using HTTPS to place a screen-sharing call.": "You need to be using HTTPS to place a screen-sharing call.", "Welcome to Element": "Welcome to Element", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Decentralised, encrypted chat & collaboration powered by [matrix]", - "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.", "Sign In": "Sign In", "Create Account": "Create Account", "Explore rooms": "Explore rooms", diff --git a/src/i18n/strings/eo.json b/src/i18n/strings/eo.json index 238c99b6d0..f8b9d2edbd 100644 --- a/src/i18n/strings/eo.json +++ b/src/i18n/strings/eo.json @@ -1,7 +1,6 @@ { "Dismiss": "Rezigni", "powered by Matrix": "povigita per Matrix", - "Custom Server Options": "Propraj servilaj elektoj", "Unknown device": "Nekonata aparato", "You need to be using HTTPS to place a screen-sharing call.": "Vi devas uzi HTTPS por ekranvidadi.", "Welcome to Element": "Bonvenon al Element", @@ -9,7 +8,6 @@ "Sign In": "Saluti", "Create Account": "Krei konton", "Explore rooms": "Esplori ĉambrojn", - "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Vi povas uzi proprajn servilajn elekteblojn por saluti al aliaj serviloj de Matrix per doni alian hejmeservilan URL-on. Tio povigos vin uzi Riot kun jama konto de Matrix en alia hejmservilo.", "Unexpected error preparing the app. See console for details.": "Neatendita eraro okazis dum la preparado de la aplikaĵo. Rigardu la konzolon por detaloj.", "Invalid configuration: can only specify one of default_server_config, default_server_name, or default_hs_url.": "Nevalida agordo: vi povas specifi nur unu elekteblon el « default_server_config », « default_server_name », aŭ « default_hs_url ».", "Invalid configuration: no default server specified.": "Nevalida agordo: neniu implicita servilo estas specifita.", diff --git a/src/i18n/strings/es.json b/src/i18n/strings/es.json index 0031e0992e..cc0538cf20 100644 --- a/src/i18n/strings/es.json +++ b/src/i18n/strings/es.json @@ -1,5 +1,4 @@ { - "Custom Server Options": "Opciones de Servidor Personalizado", "Unknown device": "Dispositivo desconocido", "Dismiss": "Omitir", "powered by Matrix": "con el poder de Matrix", @@ -9,7 +8,6 @@ "Sign In": "Iniciar sesión", "Create Account": "Crear cuenta", "Explore rooms": "Explorar salas", - "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Puedes usar las opciones personalizadas del servidor para iniciar sesión en otros servidores Matrix, especificando la dirección URL del servidor. Esto te permite usar una cuenta Matrix en un servidor diferente.", "Unexpected error preparing the app. See console for details.": "Error inesperado preparando la aplicación. Vea la consola para más detalles.", "Invalid configuration: can only specify one of default_server_config, default_server_name, or default_hs_url.": "Configuración errónea: sólo puede especificar uno de default_server_config, default_server_name, o default_hs_url.", "Invalid configuration: no default server specified.": "Configuración errónea: no se ha especificado servidor.", diff --git a/src/i18n/strings/et.json b/src/i18n/strings/et.json index 9fc950670c..18a65a49e9 100644 --- a/src/i18n/strings/et.json +++ b/src/i18n/strings/et.json @@ -15,8 +15,6 @@ "Previous/next recently visited room or community": "Eelmine/järgmine hiljuti kasutatud jututuba või kogukond", "You need to be using HTTPS to place a screen-sharing call.": "Ekraani jagava kõne jaoks pead kasutama HTTPS-ühendust.", "powered by Matrix": "põhineb Matrix'il", - "Custom Server Options": "Serveri kohaldatud seadistused", - "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Selleks et sisse logida teistesse Matrix'i serveritesse võid sa määrates vajaliku koduserveri aadreesi kasutada kohaldatud serveriseadistusi. See võimaldab sul kasutada Riot'it olemasoleva Matrix'i kontoga teisest koduserverist.", "Welcome to Element": "Tere tulemast Element kasutajaks", "Sign In": "Logi sisse", "Create Account": "Loo konto", diff --git a/src/i18n/strings/eu.json b/src/i18n/strings/eu.json index ca2eeb6619..3e1f3b16bb 100644 --- a/src/i18n/strings/eu.json +++ b/src/i18n/strings/eu.json @@ -1,12 +1,10 @@ { - "Custom Server Options": "Zerbitzari pertsonalizatuaren aukerak", "Dismiss": "Baztertu", "powered by Matrix": "Matrix mamian", "Unknown device": "Gailu ezezaguna", "You need to be using HTTPS to place a screen-sharing call.": "HTTPS erabili behar duzu sekretuak partekatzeko dei bat ezartzeko.", "Welcome to Element": "Ongi etorri Element mezularitzara", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Deszentralizatutako eta zifratutako txat eta elkarlana [matrix] sareari esker", - "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Zerbitzari pertsonalizatuaren aukera erabili dezakezu bestelako Matrix zerbitzari batera konektatzeko, bere URL-a adierazita. Honek Riot beste zerbitzari batean duzun Matrix kontuarekin erabiltzea ahalbidetzen dizu.", "Sign In": "Hasi saioa", "Create Account": "Sortu kontua", "Explore rooms": "Arakatu gelak", diff --git a/src/i18n/strings/fa.json b/src/i18n/strings/fa.json index 4c97a423d4..83f95380db 100644 --- a/src/i18n/strings/fa.json +++ b/src/i18n/strings/fa.json @@ -3,7 +3,6 @@ "Unknown device": "دستگاه ناشناخته", "Welcome to Element": "به Element خوش‌آمدید", "Decentralised, encrypted chat & collaboration powered by [matrix]": "چت مرکزگریز و رمزنگاری‌شده & ارائه‌ای از ماتریکس", - "Custom Server Options": "تنظیمات سفارشی برای سرور", "Dismiss": "نادیده بگیر", "You need to be using HTTPS to place a screen-sharing call.": "شما باید از ارتباط امن HTTPS برای به‌راه‌اندازی یک چتِ شامل به اشتراک‌گذاری صفحه‌ی کامیپوتر استفاده کنید.", "Invalid JSON": "JSON اشتباه", diff --git a/src/i18n/strings/fi.json b/src/i18n/strings/fi.json index 0aafce23fe..74e7cc98d5 100644 --- a/src/i18n/strings/fi.json +++ b/src/i18n/strings/fi.json @@ -2,11 +2,9 @@ "Dismiss": "Hylkää", "Unknown device": "Tuntematon laite", "Welcome to Element": "Tervetuloa Element-sovellukseen", - "Custom Server Options": "Palvelinasetukset", "You need to be using HTTPS to place a screen-sharing call.": "Sinun täytyy käyttää HTTPS-yhteyttä, jotta voit jakaa ruudun puhelussa.", "powered by Matrix": "moottorina Matrix", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Hajautettua ja salattua viestintää Matrix-teknologialla", - "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Voit käyttää mukautettuja palvelinasetuksia kirjautuaksesi muihin Matrix-palvelimiin. Tämä mahdollistaa Riotin käyttämisen toisella kotipalvelimella olevalla Matrix-tilillä.", "Sign In": "Kirjaudu", "Create Account": "Luo tili", "Explore rooms": "Selaa huoneita", diff --git a/src/i18n/strings/fr.json b/src/i18n/strings/fr.json index 451e657f89..085d849248 100644 --- a/src/i18n/strings/fr.json +++ b/src/i18n/strings/fr.json @@ -1,12 +1,10 @@ { - "Custom Server Options": "Options de serveur personnalisées", "Dismiss": "Ignorer", "powered by Matrix": "propulsé par Matrix", "Unknown device": "Appareil inconnu", "You need to be using HTTPS to place a screen-sharing call.": "Vous devez utiliser HTTPS pour effectuer un appel avec partage d’écran.", "Welcome to Element": "Bienvenue sur Element", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Discussion & collaboration décentralisées et chiffrées, propulsées par [matrix]", - "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Vous pouvez utiliser les options de serveur personnalisé pour vous connecter à d'autres serveurs Matrix en renseignant l'URL d'un autre serveur d'accueil. Cela vous permet d'utiliser Riot avec un compte Matrix existant sur un serveur d'accueil différent.", "Sign In": "Se connecter", "Create Account": "Créer un compte", "Explore rooms": "Explorer les salons", diff --git a/src/i18n/strings/ga.json b/src/i18n/strings/ga.json index 0c88dc4f18..2b46f756e7 100644 --- a/src/i18n/strings/ga.json +++ b/src/i18n/strings/ga.json @@ -2,8 +2,6 @@ "Unknown device": "Gléas nár aithníodh", "You need to be using HTTPS to place a screen-sharing call.": "Ní mór HTTPS a úsáid chun glaoch comhroinnt scáileáin a chur.", "powered by Matrix": "cumhachtaithe ag Matrix", - "Custom Server Options": "Socruithe do fhreastalaí saincheaptha", - "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Is féidir na socruithe do fhreastalaí saincheaptha a úsáid chun síniú isteach le freastalaithe Matrix eile ach URL freastalaí ar leith a shainiú. Cuirfidh sé seo ar do chumas Riot a úsáid le cuntas Matrix atá ar taifead ag an bhfreastalaí eile sin.", "Dismiss": "Cuir uait", "Welcome to Element": "Fáilte romhat chuig Element", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Meán comhrá agus comhoibriú, díláraithe agus criptithe, cumhachtaithe ag [matrix]", diff --git a/src/i18n/strings/gl.json b/src/i18n/strings/gl.json index 2c2893c997..0232fd3d76 100644 --- a/src/i18n/strings/gl.json +++ b/src/i18n/strings/gl.json @@ -1,12 +1,10 @@ { - "Custom Server Options": "Opcións personalizadas do servidor", "Dismiss": "Rexeitar", "powered by Matrix": "funciona grazas a Matrix", "Unknown device": "Dispositivo descoñecido", "You need to be using HTTPS to place a screen-sharing call.": "Precisa utilizar HTTPS para establecer unha chamada de pantalla compartida.", "Welcome to Element": "Benvida/o a Element", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Conversas e colaboración descentralizada e cifrada grazas a [matrix]", - "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Podes usar as opcións de servidor personalizado para iniciar sesión en outros servidores Matrix especificando unha dirección diferente de servidor doméstico. Con esto podes usar Riot cunha conta Matrix existente noutro servidor doméstico.", "Sign In": "Conectar", "Create Account": "Crear conta", "Explore rooms": "Explorar salas", diff --git a/src/i18n/strings/he.json b/src/i18n/strings/he.json index c2f06c8554..555c001aab 100644 --- a/src/i18n/strings/he.json +++ b/src/i18n/strings/he.json @@ -1,5 +1,4 @@ { - "Custom Server Options": "הגדרות שרת מותאמות אישית", "Dismiss": "שחרר", "powered by Matrix": "מופעל ע\"י Matrix", "Unknown device": "מכשיר לא ידוע", diff --git a/src/i18n/strings/hi.json b/src/i18n/strings/hi.json index 6d29a83b5c..8aa012a860 100644 --- a/src/i18n/strings/hi.json +++ b/src/i18n/strings/hi.json @@ -1,13 +1,11 @@ { "Unknown device": "अज्ञात यन्त्र", "You need to be using HTTPS to place a screen-sharing call.": "स्क्रीन साझा की कॉल करने के लिए आपको HTTPS का उपयोग करने की आवश्यकता है।", - "Custom Server Options": "कस्टम सर्वर विकल्प", "Dismiss": "खारिज", "powered by Matrix": "मैट्रिक्स द्वारा संचालित", "Welcome to Element": "Element में आपका स्वागत है", "Decentralised, encrypted chat & collaboration powered by [matrix]": "[मैट्रिक्स] द्वारा संचालित विकेंद्रीकृत, एन्क्रिप्टेड चैट और सहयोगिता", "Sign In": "साइन करना", "Create Account": "खाता बनाएं", - "Explore rooms": "रूम का अन्वेषण करें", - "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "आप एक अलग होमसर्वर URL निर्दिष्ट करके अन्य मैट्रिक्स सर्वर में साइन इन करने के लिए कस्टम सर्वर विकल्पों का उपयोग कर सकते हैं। यह आपको एक अलग होमसर्वर पर मौजूदा मैट्रिक्स खाते के साथ रायट का उपयोग करने की अनुमति देता है।" + "Explore rooms": "रूम का अन्वेषण करें" } diff --git a/src/i18n/strings/hr.json b/src/i18n/strings/hr.json index 8390818cc8..a3dfce0429 100644 --- a/src/i18n/strings/hr.json +++ b/src/i18n/strings/hr.json @@ -1,7 +1,6 @@ { "Unknown device": "Nepoznati uređaj", "You need to be using HTTPS to place a screen-sharing call.": "Morate koristiti HTTPS kako biste pokrenuli poziv s dijeljenjem ekrana.", - "Custom Server Options": "Prilagođene opcije poslužitelja", "Dismiss": "Odbaci", "powered by Matrix": "powered by Matrix", "Welcome to Element": "Dobrodošli u Element", diff --git a/src/i18n/strings/hu.json b/src/i18n/strings/hu.json index aa861e91f0..485da6123a 100644 --- a/src/i18n/strings/hu.json +++ b/src/i18n/strings/hu.json @@ -1,12 +1,10 @@ { - "Custom Server Options": "Egyéni kiszolgálóbeállítások", "Dismiss": "Eltüntetés", "powered by Matrix": "a gépházban: Matrix", "Unknown device": "Ismeretlen eszköz", "You need to be using HTTPS to place a screen-sharing call.": "Képernyőmegosztás indításához HTTPS-t kell használnod.", "Welcome to Element": "Üdvözöl a Element", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Decentralizált, titkosított csevegés és kollaboráció [matrix] alapokon", - "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Használhatsz egyéni kiszolgálóbeállításokat, hogy más Matrix-kiszolgálóra jelentkezz be, úgy, hogy megadod a másik kiszolgáló URL-jét. Ezzel a Riotot használhatod más Matrix kiszolgálón lévő fiókkal.", "Sign In": "Bejelentkezés", "Create Account": "Fiók létrehozása", "Explore rooms": "Szobák felderítése", diff --git a/src/i18n/strings/id.json b/src/i18n/strings/id.json index 4254a52528..86cd1a41c6 100644 --- a/src/i18n/strings/id.json +++ b/src/i18n/strings/id.json @@ -1,5 +1,4 @@ { - "Custom Server Options": "Pilihan Server Khusus", "Dismiss": "Abaikan", "powered by Matrix": "didukung oleh Matrix", "Unknown device": "Perangkat Tidak Diketahui", diff --git a/src/i18n/strings/is.json b/src/i18n/strings/is.json index a35b90b44d..17f83fdbc2 100644 --- a/src/i18n/strings/is.json +++ b/src/i18n/strings/is.json @@ -3,7 +3,6 @@ "Welcome to Element": "Velkomin í Element", "Unknown device": "Óþekkt tæki", "Dismiss": "Hafna", - "Custom Server Options": "Sérsniðnir valkostir vefþjóns", "You need to be using HTTPS to place a screen-sharing call.": "Þú verður að nota HTTPS til að hringja samtal með deilingu á skjá.", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Dulritað dreifvinnsluspjall & samstarfstól keyrt með [matrix]" } diff --git a/src/i18n/strings/it.json b/src/i18n/strings/it.json index 5443269612..d4abe6b820 100644 --- a/src/i18n/strings/it.json +++ b/src/i18n/strings/it.json @@ -1,12 +1,10 @@ { - "Custom Server Options": "Opzioni server personalizzate", "Dismiss": "Chiudi", "powered by Matrix": "offerto da Matrix", "Unknown device": "Dispositivo sconosciuto", "You need to be using HTTPS to place a screen-sharing call.": "Devi usare HTTPS per effettuare una chiamata con la condivisione dello schermo.", "Welcome to Element": "Benvenuti su Element", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Chat criptate, decentralizzate e collaborazioni offerte da [matrix]", - "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Puoi usare le opzioni di server personalizzato per accedere ad altri server Matrix specificando un URL homeserver diverso. Ciò ti permette di usare Riot con un account Matrix esistente su un homeserver differente.", "Sign In": "Accedi", "Create Account": "Crea account", "Explore rooms": "Esplora stanze", diff --git a/src/i18n/strings/ja.json b/src/i18n/strings/ja.json index 005d561ce1..131da98022 100644 --- a/src/i18n/strings/ja.json +++ b/src/i18n/strings/ja.json @@ -1,7 +1,6 @@ { "Welcome to Element": "Element へようこそ", "Unknown device": "不明な端末", - "Custom Server Options": "カスタムサーバのオプション", "Dismiss": "やめる", "powered by Matrix": "powered by Matrix", "You need to be using HTTPS to place a screen-sharing call.": "画面共有通話を行うにはHTTPS通信を使う必要があります。", @@ -14,7 +13,6 @@ "The message from the parser is: %(message)s": "パーザーのメッセージ: %(message)s", "Invalid JSON": "妥当でないJSON", "Invalid configuration: can only specify one of default_server_config, default_server_name, or default_hs_url.": "無効な設定: default_server_config、default_server_name、または default_hs_urlのいずれか一つのみが指定できます。", - "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "サーバーのカスタムオプションに別のホームサーバーURLを指定することで他のMatrixサーバーにサインインすることができます。これにより別のホームサーバー上で既にあるMatrixのアカウントでRiotを使うことができます。", "Please install Chrome, Firefox, or Safari for the best experience.": "最高のユーザー体験を得るためには、ChromeFirefox、もしくはSafariをインストールしてください。", "You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "現在のブラウザを使い続けることもできますが、いくつか (もしくは全ての) 機能が動作しない可能性や、外観が崩れる可能性があります。", "I understand the risks and wish to continue": "リスクを理解したうえで続行する", diff --git a/src/i18n/strings/jbo.json b/src/i18n/strings/jbo.json index dbe2e50af3..be5830b4d8 100644 --- a/src/i18n/strings/jbo.json +++ b/src/i18n/strings/jbo.json @@ -1,7 +1,6 @@ { "Unknown device": "lo na'e te djuno se pilno", "You need to be using HTTPS to place a screen-sharing call.": ".i la .hytytypysys. sarcu lo nu co'a vidni jorne", - "Custom Server Options": "lo macnu se cuxna be fi lo'i samse'u", "Dismiss": "mipri", "powered by Matrix": ".i la nacmeimei cu cumgau", "Decentralised, encrypted chat & collaboration powered by [matrix]": ".i la nacmeimei cu cumgau lo mifra je na'e se midju nu tavla je ke kansa gunka" diff --git a/src/i18n/strings/ka.json b/src/i18n/strings/ka.json index 294d1e5708..b16781e89d 100644 --- a/src/i18n/strings/ka.json +++ b/src/i18n/strings/ka.json @@ -1,7 +1,6 @@ { "Unknown device": "უცნობი მოწყობილობა", "You need to be using HTTPS to place a screen-sharing call.": "ეკრანის გაზიარების ფუნქციის მქონე ზარისთვის საჭიროა, იყენებდეთ HTTPS-ს.", - "Custom Server Options": "პერსონალიზებული სერვერის პარამეტრები", "Dismiss": "უარის თქმა", "powered by Matrix": "Matrix-ზე დაფუძნებული", "Welcome to Element": "კეთილი იყოს თქვენი მობრძანება Element-ზე", diff --git a/src/i18n/strings/kab.json b/src/i18n/strings/kab.json index 76d7388792..e519682c31 100644 --- a/src/i18n/strings/kab.json +++ b/src/i18n/strings/kab.json @@ -7,7 +7,6 @@ "%(appName)s (%(browserName)s, %(osName)s)": "%(appName)s (%(browserName)s, %(osName)s)", "Create Account": "Rnu amiḍan", "powered by Matrix": "s lmendad n Matrix", - "Custom Server Options": "Iɣewwaren n uqeddac udmawan", "Dismiss": "Agwi", "Sign In": "Kcem", "Explore rooms": "Snirem tixxamin", @@ -19,7 +18,6 @@ "Unexpected error preparing the app. See console for details.": "Tella-d tuccḍa lawan n uheyyi n usnas: Wali tadiwent i wugar telqeyt.", "Previous/next recently visited room or community": "Taxxamt neɣ tamɣiwent wuɣur kecmen imerza send/seld", "You need to be using HTTPS to place a screen-sharing call.": "Ilaq-ak(am) ad tesqedceḍ HTTPs akken ad tesεeddiḍ asiwel s beṭṭu n ugdil.", - "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Tzemreḍ ad tesqedceḍ tixtiṛiyin n uqeddac udmawan akken ad teqqneḍ ɣer iqeddacen-nniḍenn Matrix s ufran n URL n uqeddac agejdan-nniḍen. Ayagi ad ak-yeǧǧ ad tesqedceḍ Riot s umiḍan Matrix yellan ɣef uqeddac agejdan-nniḍen.", "Unsupported browser": "Ur yettusefrak ara yiminig", "Please install Chrome, Firefox, or Safari for the best experience.": "Ma ulac aɣilif, sebded Chrome, Firefox, neɣSafari i tirmit igerrzen.", "You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Tzemreḍ ad tkemmleḍ deg useqdec n yiminig-ik(im) amiran, maca kra n tmahilin neɣ akk zemrent ur nteddu ara, rnu arwes n usnas yezmer ad d-iban d armeɣtu.", diff --git a/src/i18n/strings/ko.json b/src/i18n/strings/ko.json index fb4e3a1745..020e1be41c 100644 --- a/src/i18n/strings/ko.json +++ b/src/i18n/strings/ko.json @@ -1,5 +1,4 @@ { - "Custom Server Options": "맞춤 서버 설정", "Dismiss": "버리기", "powered by Matrix": "Matrix의 지원을 받음", "Unknown device": "알 수 없는 기기", @@ -11,7 +10,6 @@ "Unexpected error preparing the app. See console for details.": "앱을 준비하는 동안 예기치 않은 오류가 발생했습니다. 자세한 내용은 콘솔을 확인하세요.", "Invalid configuration: can only specify one of default_server_config, default_server_name, or default_hs_url.": "잘못된 설정: default_server_config 와 defalut_server_name, default_hs_url 중 하나만 지정할 수 있습니다.", "Invalid configuration: no default server specified.": "잘못된 설정: 기본 서버가 지정되지 않았습니다.", - "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "다른 홈서버 URL을 지정함으로써 맞춤 서버 옵션을 사용, 다른 Matrix 서버에 로그인할 수 있습니다. 이를 통해 다른 홈서버의 기존 Matrix 계정으로 Riot을 사용할 수 있습니다.", "Sign In": "로그인", "Create Account": "계정 만들기", "Explore rooms": "방 검색", diff --git a/src/i18n/strings/lt.json b/src/i18n/strings/lt.json index 571be27a64..94c3b6b359 100644 --- a/src/i18n/strings/lt.json +++ b/src/i18n/strings/lt.json @@ -3,7 +3,6 @@ "powered by Matrix": "veikia su Matrix", "Welcome to Element": "Sveiki atvykę į Element", "You need to be using HTTPS to place a screen-sharing call.": "Norint skambinti naudojant ekrano vaizdo dalijimosi funkciją, jūs turite naudoti HTTPS.", - "Custom Server Options": "Pasirinktiniai Serverio Nustatymai", "Dismiss": "Atmesti", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Decentralizuoti, šifruoti pokalbiai ir bendradarbiavimas, veikiantis su [matrix]", "Sign In": "Prisijungti", @@ -14,7 +13,6 @@ "Unexpected error preparing the app. See console for details.": "Netikėta klaida ruošiant programą. Norėdami sužinoti daugiau detalių, žiūrėkite konsolę.", "Invalid configuration: can only specify one of default_server_config, default_server_name, or default_hs_url.": "Klaidinga konfigūracija: galima nurodyti tik vieną iš default_server_config, default_server_name, arba default_hs_url.", "Invalid configuration: no default server specified.": "Klaidinga konfigūracija: nenurodytas numatytasis serveris.", - "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Jūs galite naudoti pasirinktinius serverio nustatymus, kad prisijungtumėte prie kitų Matrix serverių, nurodydami kito serverio URL. Tai leidžia jums naudotis Riot su kitame serveryje esančia Matrix paskyra.", "Go to your browser to complete Sign In": "Norėdami užbaigti prisijungimą, eikite į naršyklę", "Open user settings": "Atverti vartotojo nustatymus", "Missing indexeddb worker script!": "Trūksta indexeddb worker skripto!", diff --git a/src/i18n/strings/lv.json b/src/i18n/strings/lv.json index 95cbddb602..3968ca98aa 100644 --- a/src/i18n/strings/lv.json +++ b/src/i18n/strings/lv.json @@ -1,12 +1,10 @@ { - "Custom Server Options": "Iestatāmās servera opcijas", "Dismiss": "Atteikt", "powered by Matrix": "Tiek darbināta ar Matrix", "Unknown device": "Nezināma ierīce", "You need to be using HTTPS to place a screen-sharing call.": "Lai izmantotu ekrāna kopīgošanas zvanu, nepieciešams izmantot HTTPS savienojumu.", "Welcome to Element": "Esiet gaidīti Element", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Decentralizēta, šifrēta čata & kopdarbošanās sistēma uz [matrix] bāzes", - "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Varat izmantot pielāgotās servera opcijas, lai pierakstītos citos Matrix serveros, norādot citu mājas servera URL. Tas ļauj jums izmantot Riot ar esošu Matrix kontu citā mājas serverī.", "Sign In": "Ienākt", "Create Account": "Izveidot kontu", "Explore rooms": "Atklāt istabas", diff --git a/src/i18n/strings/ml.json b/src/i18n/strings/ml.json index 942989e421..f873d3ded0 100644 --- a/src/i18n/strings/ml.json +++ b/src/i18n/strings/ml.json @@ -1,5 +1,4 @@ { - "Custom Server Options": "കസ്റ്റം സെര്‍വര്‍ ഓപ്ഷനുകള്‍", "Dismiss": "ഒഴിവാക്കുക", "powered by Matrix": "മാട്രിക്സില്‍ പ്രവര്‍ത്തിക്കുന്നു", "Unknown device": "അപരിചിത ഡിവൈസ്", diff --git a/src/i18n/strings/mn.json b/src/i18n/strings/mn.json index 8a32e685a9..a4bea556b7 100644 --- a/src/i18n/strings/mn.json +++ b/src/i18n/strings/mn.json @@ -7,8 +7,6 @@ "Unknown device": "Үл мэдэгдэх төхөөрөмж", "You need to be using HTTPS to place a screen-sharing call.": "Та дэлгэц хуваалцах дуудлага хийхдээ HTTPS ашиглах ёстой.", "powered by Matrix": "Matrix - Ивээв", - "Custom Server Options": "Кастом серверийн сонголтууд", - "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Та кастом серверийн сонголтууд ашиглан серверийн хаягийг зааж, өөр сервер рүү нэвтэрч болно. Энэ нь танд Риотыг одоо байгаа матрикс аккаунтаараа өөр сервер дээр ашиглах боломж олгоно.", "Dismiss": "Орхих", "Welcome to Element": "Element -д тавтай морил", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Төвлөрсөн бус, нууцлалтай чат & хамтын ажиллагааг [matrix] - ивээв", diff --git a/src/i18n/strings/nb_NO.json b/src/i18n/strings/nb_NO.json index a7df3808b2..2485a03ad0 100644 --- a/src/i18n/strings/nb_NO.json +++ b/src/i18n/strings/nb_NO.json @@ -1,12 +1,10 @@ { - "Custom Server Options": "Server-instillinger", "powered by Matrix": "Drevet av Matrix", "Unknown device": "Ukjent enhet", "You need to be using HTTPS to place a screen-sharing call.": "Du er nødt til å bruke HTTPS for å ha en samtale med skjermdeling.", "Dismiss": "Avvis", "Welcome to Element": "Velkommen til Element", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Desentralisert, kryptert chat & samarbeid drevet av [matrix]", - "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Du kan bruke instillinger for «egendefinert tjener» til å logge inn på andre Matrix-tjenere ved å spesifisere en annen URL. Dette lar deg bruke Riot med en eksisterende Matrix-konto på en annen hjemmetjener.", "Sign In": "Logg inn", "Create Account": "Opprett konto", "Explore rooms": "Se alle rom", diff --git a/src/i18n/strings/nl.json b/src/i18n/strings/nl.json index 4ea5bc1962..32d3dac786 100644 --- a/src/i18n/strings/nl.json +++ b/src/i18n/strings/nl.json @@ -1,12 +1,10 @@ { - "Custom Server Options": "Aangepaste serverinstellingen", "Dismiss": "Afwijzen", "powered by Matrix": "draait op Matrix", "Unknown device": "Onbekend apparaat", "You need to be using HTTPS to place a screen-sharing call.": "Oproepen met schermdelen vergen HTTPS.", "Welcome to Element": "Welkom bij Element", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Gedecentraliseerd en versleuteld chatten & samenwerken dankzij [matrix]", - "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Met aangepaste serverinstellingen kunt u zich door een andere thuisserver-URL in te voeren aanmelden bij andere Matrix-servers. Zo kunt u Riot met een bestaand Matrix-account op een andere thuisserver gebruiken.", "Sign In": "Aanmelden", "Create Account": "Account aanmaken", "Explore rooms": "Gesprekken ontdekken", diff --git a/src/i18n/strings/nn.json b/src/i18n/strings/nn.json index 330cf4b85b..467ef7c926 100644 --- a/src/i18n/strings/nn.json +++ b/src/i18n/strings/nn.json @@ -5,8 +5,6 @@ "powered by Matrix": "Matrixdriven", "Welcome to Element": "Velkomen til Element", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Desentralisert, kryptert nettprat & samarbeid drive av [matrix]", - "Custom Server Options": "Tilpassa tenar-innstillingar", - "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Du kan nytta dei eigendefinerte tenarinstillingane for å logga inn på andre Matrix-tenarar ved å uppgje ein annan heimtenar-URL. Dette lèt deg bruka Riot med ein Matrix-konto som allereie finst på ein annan heimtenar.", "Sign In": "Logg inn", "Create Account": "Opprett konto", "Explore rooms": "Utforsk romma", diff --git a/src/i18n/strings/oc.json b/src/i18n/strings/oc.json index 00cb267061..002f260cb6 100644 --- a/src/i18n/strings/oc.json +++ b/src/i18n/strings/oc.json @@ -5,7 +5,6 @@ "Go to your browser to complete Sign In": "Anatz al navegador per acabar la connexion", "Unknown device": "Periferic desconegut", "powered by Matrix": "propulsat per Matrix", - "Custom Server Options": "Opcions de servidor personalizat", "Dismiss": "Refusar", "Welcome to Element": "La benvenguda a Element", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Messatjariá chifrada, descentralizada e collaborativa propulsada per [matrix]", diff --git a/src/i18n/strings/pl.json b/src/i18n/strings/pl.json index 5a02519df6..eec83f8b65 100644 --- a/src/i18n/strings/pl.json +++ b/src/i18n/strings/pl.json @@ -1,5 +1,4 @@ { - "Custom Server Options": "Niestandardowe opcje serwera", "Dismiss": "Zamknij", "powered by Matrix": "napędzany przez Matrix", "Unknown device": "Nieznane urządzenie", @@ -14,7 +13,6 @@ "Unexpected error preparing the app. See console for details.": "Niespodziewany błąd podczas przygotowywania aplikacji. Otwórz konsolę po szczegóły.", "Invalid configuration: can only specify one of default_server_config, default_server_name, or default_hs_url.": "Błędna konfiguracja. Akceptowalne wartości to: default_server_config, default_server_name, default_hs_url.", "Invalid configuration: no default server specified.": "Błędna konfiguracja: nie wybrano domyślnego serwera.", - "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Możesz użyć Niestandardowych Opcji Serwera by zalogować się do innych serwerów Matrix poprzez podanie URL innego serwera głównego. Dzięki temu możesz używać Riot z istniejącym kontem z innego serwera głównego.", "Open user settings": "Otwórz ustawienia użytkownika", "Go to your browser to complete Sign In": "Aby dokończyć proces rejestracji, przejdź do swojej przeglądarki", "Missing indexeddb worker script!": "Brakujący skrypt workera indexeddb!", diff --git a/src/i18n/strings/pt.json b/src/i18n/strings/pt.json index 9da3cbe1b7..c29ed4a2af 100644 --- a/src/i18n/strings/pt.json +++ b/src/i18n/strings/pt.json @@ -1,5 +1,4 @@ { - "Custom Server Options": "Opções do Servidor Personalizado", "Dismiss": "Descartar", "powered by Matrix": "powered by Matrix", "Unknown device": "Dispositivo desconhecido", @@ -11,7 +10,6 @@ "Unexpected error preparing the app. See console for details.": "Erro inesperado na preparação da aplicação. Veja a consola para mais detalhes.", "Invalid configuration: can only specify one of default_server_config, default_server_name, or default_hs_url.": "Configuração inválida: só pode especificar uma das default_server_config, default_server_name, ou default_hs_url.", "Invalid configuration: no default server specified.": "Configuração inválida: servidor padrão não especificado.", - "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Pode usar as opções de servidor personalizado, para iniciar sessão noutros servidores Matrix, especificando o URL do homeserver diferente. Isto autoriza-lo-á a usar Riot com a sua conta Matrix num servidor diferente.", "Sign In": "Iniciar sessão", "Create Account": "Criar conta", "Explore rooms": "Explorar rooms", diff --git a/src/i18n/strings/pt_BR.json b/src/i18n/strings/pt_BR.json index 5c1875c256..64b108679c 100644 --- a/src/i18n/strings/pt_BR.json +++ b/src/i18n/strings/pt_BR.json @@ -1,12 +1,10 @@ { - "Custom Server Options": "Opções para Servidor Personalizado", "Dismiss": "Descartar", "powered by Matrix": "oferecido por Matrix", "Unknown device": "Dispositivo desconhecido", "You need to be using HTTPS to place a screen-sharing call.": "Você precisa estar usando HTTPS para poder iniciar uma chamada com compartilhamento de tela.", "Welcome to Element": "Seja bem-vinda(o) a Element", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Chat descentralizado, criptografado e colaborativo oferecido por [matrix]", - "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Você pode usar as opções personalizadas do servidor para entrar em outros servidores Matrix, especificando um URL diferente de homeserver. Isso permite que você use o Riot com uma conta Matrix existente em um homeserver diferente.", "Sign In": "Entrar", "Create Account": "Criar Conta", "Explore rooms": "Explore as salas", diff --git a/src/i18n/strings/ro.json b/src/i18n/strings/ro.json index b3fe540804..59571870a1 100644 --- a/src/i18n/strings/ro.json +++ b/src/i18n/strings/ro.json @@ -1,12 +1,10 @@ { "Unknown device": "Device necunoscut", - "Custom Server Options": "Opțiuni Server Personalizate", "Dismiss": "Închide", "powered by Matrix": "propulsat de Matrix", "Welcome to Element": "Bun venit pe Element", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Chat decentralizat, criptat & colaborare propulsata de [matrix]", "You need to be using HTTPS to place a screen-sharing call.": "Trebuie să folosești HTTPS pentru a plasa un apel de tip screen-sharing.", - "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Puteți utiliza opțiunile personalizate ale serverului pentru a vă conecta la alte servere Matrix specificând o adresă URL diferită pentru homeserver. Acest lucru vă permite să utilizați Riot cu un cont Matrix existent pe un alt server de domiciliu.", "Sign In": "Autentificare", "Create Account": "Înregistare", "Explore rooms": "Explorează camerele", diff --git a/src/i18n/strings/ru.json b/src/i18n/strings/ru.json index f3de065472..cab678e455 100644 --- a/src/i18n/strings/ru.json +++ b/src/i18n/strings/ru.json @@ -1,12 +1,10 @@ { - "Custom Server Options": "Параметры другого сервера", "Dismiss": "Отклонить", "powered by Matrix": "основано на Matrix", "Unknown device": "Неизвестное устройство", "You need to be using HTTPS to place a screen-sharing call.": "Для трансляции рабочего стола требуется использование HTTPS.", "Welcome to Element": "Добро пожаловать в Element", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Децентрализованный, шифрованный чат и совместное рабочее пространство на основе [matrix]", - "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Вы можете изменить параметры для входа на другие Matrix серверы, указав другой URL.\nЭто позволит использовать Riot с учетной записью Matrix, существующей на другом сервере.", "Sign In": "Войти", "Create Account": "Создать учётную запись", "Explore rooms": "Исследуйте комнаты", diff --git a/src/i18n/strings/sk.json b/src/i18n/strings/sk.json index 2156868e70..386865642d 100644 --- a/src/i18n/strings/sk.json +++ b/src/i18n/strings/sk.json @@ -1,12 +1,10 @@ { "Unknown device": "Neznáme zariadenie", "You need to be using HTTPS to place a screen-sharing call.": "Ak si želáte spustiť zdieľanie obrazovky, musíte byť pripojení cez protokol HTTPS.", - "Custom Server Options": "Vlastné možnosti servera", "Dismiss": "Zamietnuť", "powered by Matrix": "poháňa Matrix", "Welcome to Element": "Víta vás Element", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Decentralizovaný, šifrovaný chat a spolupráca na platforme [matrix]", - "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Môžete použiť vlastné možnosti servera na prihlásenie sa k ďalším serverom Matrix zadaním URL adresy domovského servera. Toto vám umožní použiť Riot na prihlásenie sa k existujúcemu Matrix účtu na inom domovskom servery.", "Sign In": "Prihlásiť sa", "Create Account": "Vytvoriť účet", "Explore rooms": "Preskúmať miestnosti", diff --git a/src/i18n/strings/sl.json b/src/i18n/strings/sl.json index 42aeff5a08..014f345993 100644 --- a/src/i18n/strings/sl.json +++ b/src/i18n/strings/sl.json @@ -2,8 +2,6 @@ "Unknown device": "Neznana naprava", "You need to be using HTTPS to place a screen-sharing call.": "Za klic s skupno rabo zaslona potrebujete HTTPS.", "powered by Matrix": "poganja Matrix", - "Custom Server Options": "Možnosti strežnika po meri", - "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Možnosti strežnika po meri lahko uporabite za prijavo v druge Matrix strežnike, s tem da podate drug URL domačega strežnika. To vam omogoča, da uporabljate Riot z obstoječim Matrix računom na drugem strežniku.", "Dismiss": "Opusti", "Welcome to Element": "Dobrodošli v Element", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Decentralizirano šifrirano sporočanje & sodelovanje s pomočjo [matrix]", diff --git a/src/i18n/strings/sq.json b/src/i18n/strings/sq.json index 235b3d5782..4f6d027f76 100644 --- a/src/i18n/strings/sq.json +++ b/src/i18n/strings/sq.json @@ -1,12 +1,10 @@ { "Unknown device": "Pajisje e panjohur", "You need to be using HTTPS to place a screen-sharing call.": "Që të bëni një thirrje me ndarje ekrani, duhet të jeni duke përdorur HTTPS-në.", - "Custom Server Options": "Mundësi Vetjake Shërbyesi", "Dismiss": "Mos e merr parasysh", "powered by Matrix": "bazuar në Matrix", "Welcome to Element": "Mirë se vini te Element", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Fjalosje & bashkëpunim të decentralizuar, të fshehtëzuar, bazuar në [matrix]", - "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Mund të përdorni mundësitë mbi shërbyes vetjak, për të bërë hyrjen në shërbyes të tjerë Matrix, duke dhënë një tjetër URL shërbyesi Home. Kjo ju lejon ta përdorni këtë aplikacion në një tjetër shërbyes Home, me një llogari ekzistuese Matrix.", "Sign In": "Hyni", "Create Account": "Krijoni Llogari", "Explore rooms": "Eksploroni dhoma", diff --git a/src/i18n/strings/sr.json b/src/i18n/strings/sr.json index 9dc342cd6f..e76bd37124 100644 --- a/src/i18n/strings/sr.json +++ b/src/i18n/strings/sr.json @@ -1,7 +1,6 @@ { "Unknown device": "Непознати уређај", "You need to be using HTTPS to place a screen-sharing call.": "Морате користити HTTPS да бисте започели позив са дељењем екрана.", - "Custom Server Options": "Прилагођене опције сервера", "Dismiss": "Одбаци", "powered by Matrix": "покреће Матрикс", "Welcome to Element": "Добродошли у Element", @@ -9,7 +8,6 @@ "Sign In": "Пријава", "Create Account": "Направи налог", "Explore rooms": "Истражи собе", - "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Можете користити опције прилагођеног сервера да бисте се пријавили на друге Матрикс сервере тако што ћете навести другачију адресу кућног сервера. Ово вам омогућава да користите Riot са постојећим Матрикс налогом на другом кућном серверу.", "Invalid configuration: no default server specified.": "Погрешно подешавање: подразумевани сервер није наведен.", "The message from the parser is: %(message)s": "Порука из парсера: %(message)s", "Invalid JSON": "Погрешан JSON", diff --git a/src/i18n/strings/sr_Latn.json b/src/i18n/strings/sr_Latn.json index d6f24e5690..ea4b29af89 100644 --- a/src/i18n/strings/sr_Latn.json +++ b/src/i18n/strings/sr_Latn.json @@ -7,8 +7,6 @@ "Unknown device": "Nepoznat uređaj", "You need to be using HTTPS to place a screen-sharing call.": "Treba da koristite HTTPS da bi ste započeli poziv sa deljenjem ekrana.", "powered by Matrix": "pokreće Matriks", - "Custom Server Options": "Prilagođene opcije servera", - "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Možete koristiti prilagođene opcije servera kako bi ste se prijavili na druge Matriks servere tako što ćete navesti različiti URL kućnog servera. Ovo vam omogućava da koristite Riot sa postojećim Matriks nalogom na drugom kućnom serveru.", "Dismiss": "Odbaci", "Welcome to Element": "Dobrodošli u Element", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Decentralizovano, šifrovano ćaskanje & i saradnja koju pokreće [matrix]", diff --git a/src/i18n/strings/sv.json b/src/i18n/strings/sv.json index b4532ebb82..ff26a254f9 100644 --- a/src/i18n/strings/sv.json +++ b/src/i18n/strings/sv.json @@ -1,12 +1,10 @@ { - "Custom Server Options": "Anpassade serverinställningar", "Dismiss": "Avvisa", "powered by Matrix": "drivs av Matrix", "Unknown device": "Okänd enhet", "You need to be using HTTPS to place a screen-sharing call.": "Du måste använda HTTPS för att ringa med skärmdelning.", "Welcome to Element": "Välkommen till Element", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Decentraliserad, krypterad chatt & samarbetsplattform möjliggjort med [matrix]", - "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Under anpassade serverinställningar kan du logga in på andra Matrixservrar genom att ange en egen hemserveradress. På så sätt kan du använda Riot med ett Matrixkonto du redan har på en annan hemserver.", "Sign In": "Logga in", "Create Account": "Skapa konto", "Explore rooms": "Utforska rum", diff --git a/src/i18n/strings/ta.json b/src/i18n/strings/ta.json index a7782c6c3c..6e6f4725e0 100644 --- a/src/i18n/strings/ta.json +++ b/src/i18n/strings/ta.json @@ -1,5 +1,4 @@ { - "Custom Server Options": "விருப்பிற்கேற்ற வழங்கி இடப்புகள்", "Dismiss": "நீக்கு", "powered by Matrix": "Matrix-ஆல் ஆனது", "Unknown device": "தெரியாத கருவி", @@ -10,7 +9,6 @@ "Unexpected error preparing the app. See console for details.": "பயன்பாட்டைத் தயாரிப்பதில் எதிர்பாராத பிழை. விவரங்களுக்கு console ஐப் பார்க்கவும்.", "Invalid configuration: can only specify one of default_server_config, default_server_name, or default_hs_url.": "தவறான உள்ளமைவு: default_server_config, default_server_name அல்லது default_hs_url இல் ஒன்றை மட்டுமே குறிப்பிட முடியும்.", "Invalid configuration: no default server specified.": "தவறான உள்ளமைவு: இயல்புநிலை சேவையகம் குறிப்பிடப்படவில்லை.", - "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "வேறுபட்ட ஹோம்சர்வர் URL ஐக் குறிப்பிடுவதன் மூலம் பிற Matrix சேவையகங்களில் உள்நுழைய தனிப்பயன் சேவையக விருப்பங்களைப் பயன்படுத்தலாம். இது வேறு வீட்டு சேவையகத்தில் ஏற்கனவே உள்ள Matrix கணக்கைக் கொண்ட Riot ஐப் பயன்படுத்த உங்களை அனுமதிக்கிறது.", "Decentralised, encrypted chat & collaboration powered by [matrix]": "[matrix] ஆல் இயக்கப்படும் பரவலாக்கப்பட்ட, மறைகுறியாக்கப்பட்ட அரட்டை & ஒத்துழைப்பு", "Sign In": "உள்நுழைக", "Create Account": "உங்கள் கணக்கை துவங்குங்கள்", diff --git a/src/i18n/strings/te.json b/src/i18n/strings/te.json index 7e6625cd3d..4afc3b0f6b 100644 --- a/src/i18n/strings/te.json +++ b/src/i18n/strings/te.json @@ -1,5 +1,4 @@ { - "Custom Server Options": "మలచిన సేవిక ఎంపికలు", "Dismiss": "రద్దుచేసే", "Unknown device": "తెలుయని పరికరం", "You need to be using HTTPS to place a screen-sharing call.": "తెర ని పంచే కాల్ కి HTTPS అవసరం." diff --git a/src/i18n/strings/th.json b/src/i18n/strings/th.json index 863776b6f6..d9740a9aaf 100644 --- a/src/i18n/strings/th.json +++ b/src/i18n/strings/th.json @@ -3,7 +3,6 @@ "Dismiss": "ไม่สนใจ", "Unknown device": "อุปกรณ์ที่ไม่รู้จัก", "You need to be using HTTPS to place a screen-sharing call.": "คุณต้องใช้ HTTPS เพื่อเริ่มติดต่อแบบแบ่งปันหน้าจอ", - "Custom Server Options": "กำหนดเซิร์ฟเวอร์เอง", "Welcome to Element": "ยินดีต้อนรับสู่ Element", "Decentralised, encrypted chat & collaboration powered by [matrix]": "ระบบแชทและประสานงาน ไร้ศูนย์กลางและเข้ารหัสได้ โดยใช้เทคโนโลยีจาก [matrix]", "The message from the parser is: %(message)s": "ข้อความจากparserคือ:%(message)s", diff --git a/src/i18n/strings/tr.json b/src/i18n/strings/tr.json index 7ed2e05bbc..05d653f75e 100644 --- a/src/i18n/strings/tr.json +++ b/src/i18n/strings/tr.json @@ -1,12 +1,10 @@ { - "Custom Server Options": "Özelleştirilebilir Sunucu Seçenekleri", "Dismiss": "Kapat", "powered by Matrix": "Matrix'den besleniyor", "Unknown device": "Bilinmeyen aygıt", "You need to be using HTTPS to place a screen-sharing call.": "Ekran paylaşımlı arama yapmak için HTTPS kullanıyor olmalısınız.", "Welcome to Element": "Element'e hoş geldiniz", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Merkezsiz, şifreli sohbet & işbirliği ile Matrix tarafından desteklenmektedir", - "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Özel sunucu seçenekleri kullanıp farklı bir anamakine URL'si belirleyerek diğer Matrix sunucularına giriş yapabilirsin. Bu Riot'u varolan bir Matrix hesabı ile farklı anamakine de kullanmanı sağlar.", "Sign In": "Giriş Yap", "Create Account": "Hesap Oluştur", "Explore rooms": "Odaları keşfet", diff --git a/src/i18n/strings/uk.json b/src/i18n/strings/uk.json index bfca69c2ec..fbc6c2e0a0 100644 --- a/src/i18n/strings/uk.json +++ b/src/i18n/strings/uk.json @@ -1,12 +1,10 @@ { - "Custom Server Options": "Власні параметри сервера", "Dismiss": "Відхилити", "powered by Matrix": "працює на Matrix", "Unknown device": "Невідомий пристрій", "You need to be using HTTPS to place a screen-sharing call.": "Ви маєте використовувати HTTPS щоб зробити виклик із поширенням екрану.", "Welcome to Element": "Ласкаво просимо до Element", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Децентралізована, зашифрована балачка та засіб для співробітництва, що працює на [matrix]", - "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Ви можете використати власні параметри сервера для входу в інші Matrix сервери, вказавши інший URL. Це дозволить використовувати Riot з наявною обліківкою Matrix на іншому сервері.", "Sign In": "Увійти", "Create Account": "Створити обліківку", "Explore rooms": "Дослідити кімнати", diff --git a/src/i18n/strings/vi.json b/src/i18n/strings/vi.json index 6f702d8192..ddf67f5dfe 100644 --- a/src/i18n/strings/vi.json +++ b/src/i18n/strings/vi.json @@ -1,7 +1,6 @@ { "Unknown device": "Thiết bị không được nhận biết", "You need to be using HTTPS to place a screen-sharing call.": "Bạn phải sử dụng HTTPS để dùng chức năng chia sẻ màn hình.", - "Custom Server Options": "Các lựa chọn máy chủ", "Dismiss": "Bỏ qua", "powered by Matrix": "tài trợ bởi Matrix", "Welcome to Element": "Chào mừng tới Element", @@ -11,7 +10,6 @@ "Invalid JSON": "JSON không hợp lệ", "Invalid configuration: can only specify one of default_server_config, default_server_name, or default_hs_url.": "Thiết lập không hợp lệ: chỉ có thể điền một trong số default_server_config, default_server_name, hoặc default_hs_url.", "Invalid configuration: no default server specified.": "Cấu hình không hợp lệ: máy chủ mặc định không được thiết lập.", - "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Bạn có thể sử dụng lựa chọn máy chủ khác để đăng nhập vào máy chủ Matrix bằng cách nhập đường dẫn máy chủ riêng. Cách này giúp bạn sử dụng Riot với máy chủ riêng của bạn.", "Sign In": "Đăng nhập", "Create Account": "Tạo tài khoản", "Explore rooms": "Khám phá phòng chat" diff --git a/src/i18n/strings/vls.json b/src/i18n/strings/vls.json index 3ce275518a..2a4fdc4c20 100644 --- a/src/i18n/strings/vls.json +++ b/src/i18n/strings/vls.json @@ -5,8 +5,6 @@ "Unknown device": "Ounbekend toestel", "You need to be using HTTPS to place a screen-sharing call.": "Je moet HTTPS gebruukn vo een iproep me schermdeeln te kunn startn.", "powered by Matrix": "meuglik gemakt deur Matrix", - "Custom Server Options": "Angepaste serverinstelliengn", - "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Je kut d’angepaste serverinstelliengn gebruukn vo jen eigen an te meldn by andere Matrix-servers, deur een andere thuusserver-URL in te geevn. Da lat je toe van Riot te gebruukn met e bestoande Matrix-account by een andere thuusserver.", "Dismiss": "Afwyzn", "Welcome to Element": "Welgekommn by Element", "Decentralised, encrypted chat & collaboration powered by [matrix]": "Gedecentraliseerd en versleuteld chattn & soamenwerkn meuglik gemakt deur [matrix]", diff --git a/src/i18n/strings/zh_Hans.json b/src/i18n/strings/zh_Hans.json index eaf755821c..d4996b001b 100644 --- a/src/i18n/strings/zh_Hans.json +++ b/src/i18n/strings/zh_Hans.json @@ -1,5 +1,4 @@ { - "Custom Server Options": "自定义服务器选项", "Dismiss": "标记为已读", "powered by Matrix": "由 Matrix 驱动", "Unknown device": "未知设备", @@ -9,7 +8,6 @@ "Sign In": "登入", "Create Account": "创建帐号", "Explore rooms": "探索房间", - "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "您可以在自定义服务器选项中通过指定其他主服务器的 URL 来登录其他 Matrix 服务器。 这允许您在不同的主服务器上通过已有的 Matrix 帐户来使用 Riot 。", "The message from the parser is: %(message)s": "语法分析器的信息:%(message)s", "Invalid JSON": "无效的 JSON", "Unexpected error preparing the app. See console for details.": "软件准备时出错,详细信息请查看控制台。", diff --git a/src/i18n/strings/zh_Hant.json b/src/i18n/strings/zh_Hant.json index 12f91612a6..3ba2153800 100644 --- a/src/i18n/strings/zh_Hant.json +++ b/src/i18n/strings/zh_Hant.json @@ -1,12 +1,10 @@ { - "Custom Server Options": "自訂伺服器選項", "Dismiss": "關閉", "powered by Matrix": "由 Matrix 提供", "Unknown device": "未知裝置", "You need to be using HTTPS to place a screen-sharing call.": "你需要使用 HTTPS 來撥打螢幕分享的通話。", "Welcome to Element": "歡迎來到 Element", "Decentralised, encrypted chat & collaboration powered by [matrix]": "去中心化、保密的聊天與協作,由 [matrix] 提供", - "You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "您可以以使用自訂伺服器選項指定不同的家伺服器 URL 以登入其他 Matrix 伺服器。這讓您可以在不同的家伺服器上使用既有的 Matrix 帳號登入 Riot。", "Sign In": "登入", "Create Account": "建立帳號", "Explore rooms": "探索聊天室", From 0667ede7b7f781a2cbf3a3e4f1d7395075473721 Mon Sep 17 00:00:00 2001 From: "J. Ryan Stinnett" Date: Mon, 13 Jul 2020 17:24:53 +0100 Subject: [PATCH 09/10] Replace more brands in translations --- src/i18n/strings/eo.json | 2 +- src/i18n/strings/et.json | 2 +- src/i18n/strings/fi.json | 2 +- src/i18n/strings/fr.json | 2 +- src/i18n/strings/hu.json | 2 +- src/i18n/strings/ja.json | 4 ++-- src/i18n/strings/kab.json | 2 +- src/i18n/strings/ko.json | 4 ++-- src/i18n/strings/lt.json | 3 +-- src/i18n/strings/zh_Hans.json | 2 +- src/i18n/strings/zh_Hant.json | 2 +- 11 files changed, 13 insertions(+), 14 deletions(-) diff --git a/src/i18n/strings/eo.json b/src/i18n/strings/eo.json index f8b9d2edbd..b977e15a1b 100644 --- a/src/i18n/strings/eo.json +++ b/src/i18n/strings/eo.json @@ -18,7 +18,7 @@ "Unable to load config file: please refresh the page to try again.": "Ne povas enlegi agordan dosieron: bonvolu reprovi per aktualigo de la paĝo.", "Previous/next recently visited room or community": "Antaŭa/sekva freŝe vizitita ĉambro aŭ komunumo", "Missing indexeddb worker script!": "Mankas fonskripto «indexeddb»!", - "%(brand)s Desktop (%(platformName)s)": "Riot labortabla (%(platformName)s)", + "%(brand)s Desktop (%(platformName)s)": "%(brand)s labortabla (%(platformName)s)", "%(appName)s (%(browserName)s, %(osName)s)": "%(appName)s (%(browserName)s, %(osName)s)", "Unsupported browser": "Nesubtenata foliumilo", "Please install Chrome, Firefox, or Safari for the best experience.": "Bonvolu instali foliumilon Chrome, Firefox, aŭ Safari, por la plej bona sperto.", diff --git a/src/i18n/strings/et.json b/src/i18n/strings/et.json index 18a65a49e9..3ef611586e 100644 --- a/src/i18n/strings/et.json +++ b/src/i18n/strings/et.json @@ -18,7 +18,7 @@ "Welcome to Element": "Tere tulemast Element kasutajaks", "Sign In": "Logi sisse", "Create Account": "Loo konto", - "%(brand)s Desktop (%(platformName)s)": "Riot'i töölauaversioon (%(platformName)s)", + "%(brand)s Desktop (%(platformName)s)": "%(brand)s'i töölauaversioon (%(platformName)s)", "%(appName)s (%(browserName)s, %(osName)s)": "%(appName)s (%(browserName)s, %(osName)s)", "Unsupported browser": "Sellele brauserile puudub tugi", "Please install Chrome, Firefox, or Safari for the best experience.": "Parima kasutuskogemuse jaoks palun paigalda Chrome, Firefox või Safari.", diff --git a/src/i18n/strings/fi.json b/src/i18n/strings/fi.json index 74e7cc98d5..525f58462f 100644 --- a/src/i18n/strings/fi.json +++ b/src/i18n/strings/fi.json @@ -17,7 +17,7 @@ "Unable to load config file: please refresh the page to try again.": "Asetustiedostoa ei voi ladata. Yritä uudelleen lataamalla sivu uudelleen.", "Open user settings": "Avaa käyttäjäasetukset", "Previous/next recently visited room or community": "Edellinen/seuraava hiljattain vierailtu huone tai yhteisö", - "%(brand)s Desktop (%(platformName)s)": "Riotin työpöytäversio (%(platformName)s)", + "%(brand)s Desktop (%(platformName)s)": "%(brand)sin työpöytäversio (%(platformName)s)", "Go to your browser to complete Sign In": "Tee kirjautuminen loppuun selaimessasi", "%(appName)s (%(browserName)s, %(osName)s)": "%(appName)s (%(browserName)s, %(osName)s)", "Unsupported browser": "Selainta ei tueta", diff --git a/src/i18n/strings/fr.json b/src/i18n/strings/fr.json index 085d849248..cfa0e85483 100644 --- a/src/i18n/strings/fr.json +++ b/src/i18n/strings/fr.json @@ -25,7 +25,7 @@ "I understand the risks and wish to continue": "Je comprends les risques et souhaite continuer", "Go to element.io": "Aller vers element.io", "Failed to start": "Échec au démarrage", - "%(brand)s Desktop (%(platformName)s)": "Riot pour bureau (%(platformName)s)", + "%(brand)s Desktop (%(platformName)s)": "%(brand)s pour bureau (%(platformName)s)", "Download Completed": "Téléchargement terminé", "Open": "Ouvrir" } diff --git a/src/i18n/strings/hu.json b/src/i18n/strings/hu.json index 485da6123a..7e4a695480 100644 --- a/src/i18n/strings/hu.json +++ b/src/i18n/strings/hu.json @@ -18,7 +18,7 @@ "Missing indexeddb worker script!": "Hiányzó indexeddb worker parancsfájl!", "Unable to load config file: please refresh the page to try again.": "A konfigurációs fájlt nem sikerült betölteni: frissítsd az oldalt és próbáld meg újra.", "Previous/next recently visited room or community": "Előző/következő nemrég meglátogatott szobák vagy közösségek", - "%(brand)s Desktop (%(platformName)s)": "Asztali Riot (%(platformName)s)", + "%(brand)s Desktop (%(platformName)s)": "Asztali %(brand)s (%(platformName)s)", "%(appName)s (%(browserName)s, %(osName)s)": "%(appName)s (%(browserName)s, %(osName)s)", "Unsupported browser": "A böngésző nem támogatott", "Please install Chrome, Firefox, or Safari for the best experience.": "A legjobb élmény eléréséhez kérlek telepíts Chrome-ot, Firefoxot vagy Safarit.", diff --git a/src/i18n/strings/ja.json b/src/i18n/strings/ja.json index 131da98022..b62db653fa 100644 --- a/src/i18n/strings/ja.json +++ b/src/i18n/strings/ja.json @@ -21,10 +21,10 @@ "Download Completed": "ダウンロード完了", "Open": "開く", "Open user settings": "ユーザー設定を開く", - "%(brand)s Desktop (%(platformName)s)": "Riotデスクトップ版(%(platformName)s)", + "%(brand)s Desktop (%(platformName)s)": "%(brand)sデスクトップ版(%(platformName)s)", "Go to your browser to complete Sign In": "サインインを完了させるためにブラウザへ移動してください", "%(appName)s (%(browserName)s, %(osName)s)": "%(appName)s(%(browserName)s, %(osName)s)", "Unsupported browser": "サポートされていないブラウザ", - "Go to element.io": "Riot.imへ移動", + "Go to element.io": "element.ioへ移動", "Failed to start": "起動に失敗しました" } diff --git a/src/i18n/strings/kab.json b/src/i18n/strings/kab.json index e519682c31..caeb82b45e 100644 --- a/src/i18n/strings/kab.json +++ b/src/i18n/strings/kab.json @@ -1,7 +1,7 @@ { "Invalid JSON": "JSON armeɣtu", "Open user settings": "Ldi iɣewwaṛen n useqdac", - "%(brand)s Desktop (%(platformName)s)": "Riot n tnarit (%(platformName)s)", + "%(brand)s Desktop (%(platformName)s)": "%(brand)s n tnarit (%(platformName)s)", "Go to your browser to complete Sign In": "Ddu ɣer iminig akken ad tkemleḍ ajerred", "Unknown device": "Ibenk arussin", "%(appName)s (%(browserName)s, %(osName)s)": "%(appName)s (%(browserName)s, %(osName)s)", diff --git a/src/i18n/strings/ko.json b/src/i18n/strings/ko.json index 020e1be41c..6d2d710611 100644 --- a/src/i18n/strings/ko.json +++ b/src/i18n/strings/ko.json @@ -16,13 +16,13 @@ "Unable to load config file: please refresh the page to try again.": "설정 파일을 불러오는 데 실패: 페이지를 새로고침한 후에 다시 시도해 주십시오.", "Open user settings": "사용자 설정 열기", "Previous/next recently visited room or community": "최근에 방문한 이전/다음 방 또는 커뮤니티", - "%(brand)s Desktop (%(platformName)s)": "Riot 데스크탑 (%(platformName)s)", + "%(brand)s Desktop (%(platformName)s)": "%(brand)s 데스크탑 (%(platformName)s)", "Go to your browser to complete Sign In": "로그인을 완료하려면 브라우저로 이동해주세요", "%(appName)s (%(browserName)s, %(osName)s)": "%(appName)s (%(browserName)s, %(osName)s)", "Unsupported browser": "지원되지 않는 브라우저", "Please install Chrome, Firefox, or Safari for the best experience.": "최상의 경험을 위해 Chrome, Firefox, 또는 Safari를 설치해주세요.", "You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "현재 사용중이신 브라우저를 계속 사용하셔도 됩니다, 다만 일부 기능들이 작동하지 않을 수 있으며 애플리케이션이 잘못돼 보일 수 있습니다.", "I understand the risks and wish to continue": "위험하다는 것을 이해했으며 계속하고 싶습니다", - "Go to element.io": "Riot.im으로 가기", + "Go to element.io": "element.io으로 가기", "Failed to start": "시작 실패" } diff --git a/src/i18n/strings/lt.json b/src/i18n/strings/lt.json index 94c3b6b359..6afdf3ac77 100644 --- a/src/i18n/strings/lt.json +++ b/src/i18n/strings/lt.json @@ -18,10 +18,9 @@ "Missing indexeddb worker script!": "Trūksta indexeddb worker skripto!", "Unable to load config file: please refresh the page to try again.": "Nepavyko įkelti konfigūracijos failo: iš naujo užkraukite puslapį ir bandykite dar kartą.", "Previous/next recently visited room or community": "Ankstesnis/sekantis neseniai lankytas kambarys ar bendruomenė", - "%(brand)s Desktop (%(platformName)s)": "Riot Kompiuteriui (%(platformName)s)", + "%(brand)s Desktop (%(platformName)s)": "%(brand)s Kompiuteriui (%(platformName)s)", "%(appName)s (%(browserName)s, %(osName)s)": "%(appName)s (%(browserName)s, %(osName)s)", "Unsupported browser": "Nepalaikoma naršyklė", - "Please install Chrome, Firefox, or Safari for the best experience.": "Riot geriausiai veikia su Chrome, Firefox, arba Safari naršyklėmis.", "You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Jūs galite toliau naudotis savo dabartine naršykle, bet kai kurios arba visos funkcijos gali neveikti ir programos išvaizda bei sąsaja gali būti neteisingai rodoma.", "I understand the risks and wish to continue": "Suprantu šią riziką ir noriu tęsti", "Go to element.io": "Eiti į element.io", diff --git a/src/i18n/strings/zh_Hans.json b/src/i18n/strings/zh_Hans.json index d4996b001b..dcad1cce66 100644 --- a/src/i18n/strings/zh_Hans.json +++ b/src/i18n/strings/zh_Hans.json @@ -17,7 +17,7 @@ "Unable to load config file: please refresh the page to try again.": "无法加载配置文件:请再次刷新页面。", "Open user settings": "打开用户设置", "Previous/next recently visited room or community": "上一个 / 下一个最近访问的聊天室或社区", - "%(brand)s Desktop (%(platformName)s)": "Riot 桌面版 (%(platformName)s)", + "%(brand)s Desktop (%(platformName)s)": "%(brand)s 桌面版 (%(platformName)s)", "Go to your browser to complete Sign In": "去您的浏览器完成登录", "%(appName)s (%(browserName)s, %(osName)s)": "%(appName)s (%(browserName)s, %(osName)s)", "Unsupported browser": "不支持的浏览器", diff --git a/src/i18n/strings/zh_Hant.json b/src/i18n/strings/zh_Hant.json index 3ba2153800..ea551c6705 100644 --- a/src/i18n/strings/zh_Hant.json +++ b/src/i18n/strings/zh_Hant.json @@ -18,7 +18,7 @@ "Missing indexeddb worker script!": "缺少 indexeddb 輔助指令稿!", "Unable to load config file: please refresh the page to try again.": "無法載入設定檔:請重新整理頁面以再試一次。", "Previous/next recently visited room or community": "上一個/下一個最近造訪的聊天室或社群", - "%(brand)s Desktop (%(platformName)s)": "Riot 桌面版 (%(platformName)s)", + "%(brand)s Desktop (%(platformName)s)": "%(brand)s 桌面版 (%(platformName)s)", "%(appName)s (%(browserName)s, %(osName)s)": "%(appName)s (%(browserName)s, %(osName)s)", "Unsupported browser": "不支援的瀏覽器", "Please install Chrome, Firefox, or Safari for the best experience.": "請安裝 ChromeFirefoxSafari 以取得最佳體驗。", From ffab08bd60be34dd34cd0db7c0aa6eca986ce52e Mon Sep 17 00:00:00 2001 From: "J. Ryan Stinnett" Date: Mon, 13 Jul 2020 17:32:17 +0100 Subject: [PATCH 10/10] Update various brand instances in code --- src/components/structures/VectorEmbeddedPage.js | 2 +- src/vector/index.html | 8 ++++---- src/vector/index.ts | 2 +- src/vector/jitsi/index.ts | 2 +- src/vector/mobile_guide/index.html | 6 +++--- src/vector/mobile_guide/index.js | 10 +++++----- src/vector/platform/WebPlatform.ts | 2 +- src/vector/static/incompatible-browser.html | 6 +++--- src/vector/static/unable-to-load.html | 4 ++-- 9 files changed, 21 insertions(+), 21 deletions(-) diff --git a/src/components/structures/VectorEmbeddedPage.js b/src/components/structures/VectorEmbeddedPage.js index fc3b41a504..537b80bc57 100644 --- a/src/components/structures/VectorEmbeddedPage.js +++ b/src/components/structures/VectorEmbeddedPage.js @@ -25,7 +25,7 @@ import { _t } from 'matrix-react-sdk/src/languageHandler'; export default class VectorEmbeddedPage extends EmbeddedPage { static replaces = 'EmbeddedPage'; - // we're overriding the base component here, for Riot-specific tweaks + // we're overriding the base component here, for Element-specific tweaks translate(s) { s = sanitizeHtml(_t(s)); // ugly fix for https://github.com/vector-im/riot-web/issues/4243 diff --git a/src/vector/index.html b/src/vector/index.html index 58483bd88f..4cda4b37a5 100644 --- a/src/vector/index.html +++ b/src/vector/index.html @@ -2,7 +2,7 @@ - Riot + Element @@ -16,8 +16,8 @@ - - + + @@ -51,7 +51,7 @@ } %> - +
diff --git a/src/vector/index.ts b/src/vector/index.ts index e4701cede1..3f35144df4 100644 --- a/src/vector/index.ts +++ b/src/vector/index.ts @@ -121,7 +121,7 @@ async function start() { const isIos = /iPad|iPhone|iPod/.test(navigator.userAgent) && !window.MSStream; const isAndroid = /Android/.test(navigator.userAgent); if (isIos || isAndroid) { - if (document.cookie.indexOf("riot_mobile_redirect_to_guide=false") === -1) { + if (document.cookie.indexOf("element_mobile_redirect_to_guide=false") === -1) { window.location.href = "mobile_guide/"; return; } diff --git a/src/vector/jitsi/index.ts b/src/vector/jitsi/index.ts index 50f07fb954..2526782d71 100644 --- a/src/vector/jitsi/index.ts +++ b/src/vector/jitsi/index.ts @@ -55,7 +55,7 @@ let widgetApi: WidgetApi; const parentUrl = qsParam('parentUrl', true); const widgetId = qsParam('widgetId', true); - // Set this up as early as possible because Riot will be hitting it almost immediately. + // Set this up as early as possible because Element will be hitting it almost immediately. if (parentUrl && widgetId) { widgetApi = new WidgetApi(qsParam('parentUrl'), qsParam('widgetId'), [ Capability.AlwaysOnScreen, diff --git a/src/vector/mobile_guide/index.html b/src/vector/mobile_guide/index.html index 2262ac9e4f..e9b118cd87 100644 --- a/src/vector/mobile_guide/index.html +++ b/src/vector/mobile_guide/index.html @@ -162,7 +162,7 @@ body { -

Set up Riot on iOS or Android

+

Set up Element on iOS or Android

@@ -330,7 +330,7 @@ body {

2: Configure your app

- Configure + Configure

Tap the button above, or manually enable Use custom server and enter:

Homeserver:

Identity Server:

@@ -339,7 +339,7 @@ body {

- + Go to Desktop Site

diff --git a/src/vector/mobile_guide/index.js b/src/vector/mobile_guide/index.js index f174d777b1..4ff7de2820 100644 --- a/src/vector/mobile_guide/index.js +++ b/src/vector/mobile_guide/index.js @@ -1,8 +1,8 @@ import {getVectorConfig} from '../getconfig'; -function onBackToRiotClick() { +function onBackToElementClick() { // Cookie should expire in 4 hours - document.cookie = 'riot_mobile_redirect_to_guide=false;path=/;max-age=14400'; + document.cookie = 'element_mobile_redirect_to_guide=false;path=/;max-age=14400'; window.location.href = '../'; } @@ -10,7 +10,7 @@ function onBackToRiotClick() { function renderConfigError(message) { const contactMsg = "If this is unexpected, please contact your system administrator " + "or technical support representative."; - message = `

Error loading Riot

${message}

${contactMsg}

`; + message = `

Error loading Element

${message}

${contactMsg}

`; const toHide = document.getElementsByClassName("mx_HomePage_container"); const errorContainers = document.getElementsByClassName("mx_HomePage_errorContainer"); @@ -27,7 +27,7 @@ function renderConfigError(message) { } async function initPage() { - document.getElementById('back_to_riot_button').onclick = onBackToRiotClick; + document.getElementById('back_to_element_button').onclick = onBackToElementClick; let config = await getVectorConfig('..'); @@ -92,7 +92,7 @@ async function initPage() { if (isUrl && !isUrl.endsWith('/')) isUrl += '/'; if (hsUrl !== 'https://matrix.org/') { - document.getElementById('configure_riot_button').href = + document.getElementById('configure_element_button').href = "https://app.element.io/config/config?hs_url=" + encodeURIComponent(hsUrl) + "&is_url=" + encodeURIComponent(isUrl); document.getElementById('step1_heading').innerHTML= '1: Install the app'; diff --git a/src/vector/platform/WebPlatform.ts b/src/vector/platform/WebPlatform.ts index 2539440fdc..9d3c635c86 100644 --- a/src/vector/platform/WebPlatform.ts +++ b/src/vector/platform/WebPlatform.ts @@ -186,7 +186,7 @@ export default class WebPlatform extends VectorBasePlatform { let appName = u.format(); // Remove leading slashes if present appName = appName.replace(/^\/\//, ""); - // `appName` is now in the format `riot.im/develop`. + // `appName` is now in the format `develop.element.io`. const ua = new UAParser(); const browserName = ua.getBrowser().name || "unknown browser"; diff --git a/src/vector/static/incompatible-browser.html b/src/vector/static/incompatible-browser.html index 7caee20488..1d685d5394 100644 --- a/src/vector/static/incompatible-browser.html +++ b/src/vector/static/incompatible-browser.html @@ -168,8 +168,8 @@
-

Your browser can't run Riot

-

Riot uses many advanced browser features, some of which are not available or experimental in your current browser.

+

Your browser can't run Element

+

Element uses many advanced browser features, some of which are not available or experimental in your current browser.

Please install Chrome, Firefox, or Safari for the best experience.

@@ -178,7 +178,7 @@