mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-17 14:05:04 +08:00
Merge remote-tracking branch 'origin/develop' into develop
This commit is contained in:
commit
7212831722
@ -251,3 +251,7 @@ input.mx_UserSettings_phoneNumberField {
|
|||||||
color: $accent-color;
|
color: $accent-color;
|
||||||
word-break: break-all;
|
word-break: break-all;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.mx_UserSettings_analyticsModal table {
|
||||||
|
margin: 10px 0px;
|
||||||
|
}
|
||||||
|
@ -20,13 +20,29 @@ import SdkConfig, { DEFAULTS } from './SdkConfig';
|
|||||||
import Modal from './Modal';
|
import Modal from './Modal';
|
||||||
import sdk from './index';
|
import sdk from './index';
|
||||||
|
|
||||||
function getRedactedHash() {
|
const hashRegex = /#\/(groups?|room|user|settings|register|login|forgot_password|home|directory)/;
|
||||||
return window.location.hash.replace(/#\/(group|room|user)\/(.+)/, "#/$1/<redacted>");
|
const hashVarRegex = /#\/(group|room|user)\/.*$/;
|
||||||
|
|
||||||
|
// Remove all but the first item in the hash path. Redact unexpected hashes.
|
||||||
|
function getRedactedHash(hash) {
|
||||||
|
// Don't leak URLs we aren't expecting - they could contain tokens/PII
|
||||||
|
const match = hashRegex.exec(hash);
|
||||||
|
if (!match) {
|
||||||
|
console.warn(`Unexpected hash location "${hash}"`);
|
||||||
|
return '#/<unexpected hash location>';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (hashVarRegex.test(hash)) {
|
||||||
|
return hash.replace(hashVarRegex, "#/$1/<redacted>");
|
||||||
|
}
|
||||||
|
|
||||||
|
return hash.replace(hashRegex, "#/$1");
|
||||||
|
}
|
||||||
|
|
||||||
|
// Return the current origin and hash separated with a `/`. This does not include query parameters.
|
||||||
function getRedactedUrl() {
|
function getRedactedUrl() {
|
||||||
// hardcoded url to make piwik happy
|
const { origin, pathname, hash } = window.location;
|
||||||
return 'https://riot.im/app/' + getRedactedHash();
|
return origin + pathname + getRedactedHash(hash);
|
||||||
}
|
}
|
||||||
|
|
||||||
const customVariables = {
|
const customVariables = {
|
||||||
@ -199,11 +215,25 @@ class Analytics {
|
|||||||
const rows = Object.values(customVariables).map((v) => Tracker.getCustomVariable(v.id)).filter(Boolean);
|
const rows = Object.values(customVariables).map((v) => Tracker.getCustomVariable(v.id)).filter(Boolean);
|
||||||
|
|
||||||
const resolution = `${window.screen.width}x${window.screen.height}`;
|
const resolution = `${window.screen.width}x${window.screen.height}`;
|
||||||
|
const otherVariables = [
|
||||||
|
{
|
||||||
|
expl: _td('Every page you use in the app'),
|
||||||
|
value: _t(
|
||||||
|
'e.g. <CurrentPageURL>',
|
||||||
|
{},
|
||||||
|
{
|
||||||
|
CurrentPageURL: getRedactedUrl(),
|
||||||
|
},
|
||||||
|
),
|
||||||
|
},
|
||||||
|
{ expl: _td('Your User Agent'), value: navigator.userAgent },
|
||||||
|
{ expl: _td('Your device resolution'), value: resolution },
|
||||||
|
];
|
||||||
|
|
||||||
const ErrorDialog = sdk.getComponent('dialogs.ErrorDialog');
|
const ErrorDialog = sdk.getComponent('dialogs.ErrorDialog');
|
||||||
Modal.createTrackedDialog('Analytics Details', '', ErrorDialog, {
|
Modal.createTrackedDialog('Analytics Details', '', ErrorDialog, {
|
||||||
title: _t('Analytics'),
|
title: _t('Analytics'),
|
||||||
description: <div>
|
description: <div className="mx_UserSettings_analyticsModal">
|
||||||
<div>
|
<div>
|
||||||
{ _t('The information being sent to us to help make Riot.im better includes:') }
|
{ _t('The information being sent to us to help make Riot.im better includes:') }
|
||||||
</div>
|
</div>
|
||||||
@ -212,19 +242,14 @@ class Analytics {
|
|||||||
<td>{ _t(customVariables[row[0]].expl) }</td>
|
<td>{ _t(customVariables[row[0]].expl) }</td>
|
||||||
<td><code>{ row[1] }</code></td>
|
<td><code>{ row[1] }</code></td>
|
||||||
</tr>) }
|
</tr>) }
|
||||||
</table>
|
{ otherVariables.map((item, index) =>
|
||||||
<br />
|
<tr key={index}>
|
||||||
<div>
|
<td>{ _t(item.expl) }</td>
|
||||||
{ _t('We also record each page you use in the app (currently <CurrentPageHash>), your User Agent'
|
<td><code>{ item.value }</code></td>
|
||||||
+ ' (<CurrentUserAgent>) and your device resolution (<CurrentDeviceResolution>).',
|
</tr>,
|
||||||
{},
|
|
||||||
{
|
|
||||||
CurrentPageHash: <code>{ getRedactedHash() }</code>,
|
|
||||||
CurrentUserAgent: <code>{ navigator.userAgent }</code>,
|
|
||||||
CurrentDeviceResolution: <code>{ resolution }</code>,
|
|
||||||
},
|
|
||||||
) }
|
) }
|
||||||
|
</table>
|
||||||
|
<div>
|
||||||
{ _t('Where this page includes identifiable information, such as a room, '
|
{ _t('Where this page includes identifiable information, such as a room, '
|
||||||
+ 'user or group ID, that data is removed before being sent to the server.') }
|
+ 'user or group ID, that data is removed before being sent to the server.') }
|
||||||
</div>
|
</div>
|
||||||
|
@ -21,13 +21,6 @@ const DEFAULTS = {
|
|||||||
integrations_rest_url: "https://scalar.vector.im/api",
|
integrations_rest_url: "https://scalar.vector.im/api",
|
||||||
// Where to send bug reports. If not specified, bugs cannot be sent.
|
// Where to send bug reports. If not specified, bugs cannot be sent.
|
||||||
bug_report_endpoint_url: null,
|
bug_report_endpoint_url: null,
|
||||||
|
|
||||||
piwik: {
|
|
||||||
url: "https://piwik.riot.im/",
|
|
||||||
whitelistedHSUrls: ["https://matrix.org"],
|
|
||||||
whitelistedISUrls: ["https://vector.im", "https://matrix.org"],
|
|
||||||
siteId: 1,
|
|
||||||
},
|
|
||||||
};
|
};
|
||||||
|
|
||||||
class SdkConfig {
|
class SdkConfig {
|
||||||
|
@ -950,7 +950,6 @@
|
|||||||
"Import room keys": "Импортиране на ключове за стая",
|
"Import room keys": "Импортиране на ключове за стая",
|
||||||
"File to import": "Файл за импортиране",
|
"File to import": "Файл за импортиране",
|
||||||
"Import": "Импортирай",
|
"Import": "Импортирай",
|
||||||
"We also record each page you use in the app (currently <CurrentPageHash>), your User Agent (<CurrentUserAgent>) and your device resolution (<CurrentDeviceResolution>).": "Също така записваме всяка страница, която използвате в приложението (в момента <CurrentPageHash>), браузъра, който използвате (<CurrentUserAgent>) и резолюцията на устройството (<CurrentDeviceResolution>).",
|
|
||||||
"Where this page includes identifiable information, such as a room, user or group ID, that data is removed before being sent to the server.": "Когато тази страница съдържа информация идентифицираща Вас (като например стая, потребител или идентификатор на група), тези данни биват премахнати преди да бъдат изпратени до сървъра.",
|
"Where this page includes identifiable information, such as a room, user or group ID, that data is removed before being sent to the server.": "Когато тази страница съдържа информация идентифицираща Вас (като например стая, потребител или идентификатор на група), тези данни биват премахнати преди да бъдат изпратени до сървъра.",
|
||||||
"There are unknown devices in this room: if you proceed without verifying them, it will be possible for someone to eavesdrop on your call.": "Има непознати устройства в тази стая. Ако продължите без да ги потвърдите, ще бъде възможно за някого да подслушва Вашия разговор.",
|
"There are unknown devices in this room: if you proceed without verifying them, it will be possible for someone to eavesdrop on your call.": "Има непознати устройства в тази стая. Ако продължите без да ги потвърдите, ще бъде възможно за някого да подслушва Вашия разговор.",
|
||||||
"WARNING: KEY VERIFICATION FAILED! The signing key for %(userId)s and device %(deviceId)s is \"%(fprint)s\" which does not match the provided key \"%(fingerprint)s\". This could mean your communications are being intercepted!": "ВНИМАНИЕ: НЕУСПЕШНО ПОТВЪРЖДАВАНЕ НА КЛЮЧА! Ключът за подписване за %(userId)s и устройството %(deviceId)s е \"%(fprint)s\", което не съвпада с предоставения ключ \"%(fingerprint)s\". Това може да означава, че Вашата комуникация е прихваната!",
|
"WARNING: KEY VERIFICATION FAILED! The signing key for %(userId)s and device %(deviceId)s is \"%(fprint)s\" which does not match the provided key \"%(fingerprint)s\". This could mean your communications are being intercepted!": "ВНИМАНИЕ: НЕУСПЕШНО ПОТВЪРЖДАВАНЕ НА КЛЮЧА! Ключът за подписване за %(userId)s и устройството %(deviceId)s е \"%(fprint)s\", което не съвпада с предоставения ключ \"%(fingerprint)s\". Това може да означава, че Вашата комуникация е прихваната!",
|
||||||
|
@ -952,7 +952,6 @@
|
|||||||
"%(count)s <resendText>Resend all</resendText> or <cancelText>cancel all</cancelText> now. You can also select individual messages to resend or cancel.|one": "<resendText>Nachricht jetzt erneut senden</resendText> oder <cancelText>senden abbrechen</cancelText> now.",
|
"%(count)s <resendText>Resend all</resendText> or <cancelText>cancel all</cancelText> now. You can also select individual messages to resend or cancel.|one": "<resendText>Nachricht jetzt erneut senden</resendText> oder <cancelText>senden abbrechen</cancelText> now.",
|
||||||
"Privacy is important to us, so we don't collect any personal or identifiable data for our analytics.": "Privatsphäre ist uns wichtig, deshalb sammeln wir keine persönlichen oder identifizierbaren Daten für unsere Analysen.",
|
"Privacy is important to us, so we don't collect any personal or identifiable data for our analytics.": "Privatsphäre ist uns wichtig, deshalb sammeln wir keine persönlichen oder identifizierbaren Daten für unsere Analysen.",
|
||||||
"The information being sent to us to help make Riot.im better includes:": "Die Informationen, die an uns gesendet werden um Riot.im zu verbessern enthalten:",
|
"The information being sent to us to help make Riot.im better includes:": "Die Informationen, die an uns gesendet werden um Riot.im zu verbessern enthalten:",
|
||||||
"We also record each page you use in the app (currently <CurrentPageHash>), your User Agent (<CurrentUserAgent>) and your device resolution (<CurrentDeviceResolution>).": "Wir speichern auch jede Seite, die du in der App benutzt (currently <CurrentPageHash>), deinen User Agent (<CurrentUserAgent>) und die Bildschirmauflösung deines Gerätes (<CurrentDeviceResolution>).",
|
|
||||||
"The platform you're on": "Benutzte Plattform",
|
"The platform you're on": "Benutzte Plattform",
|
||||||
"The version of Riot.im": "Riot.im Version",
|
"The version of Riot.im": "Riot.im Version",
|
||||||
"Your language of choice": "Deine ausgewählte Sprache",
|
"Your language of choice": "Deine ausgewählte Sprache",
|
||||||
|
@ -10,9 +10,12 @@
|
|||||||
"Whether or not you're using the Richtext mode of the Rich Text Editor": "Whether or not you're using the Richtext mode of the Rich Text Editor",
|
"Whether or not you're using the Richtext mode of the Rich Text Editor": "Whether or not you're using the Richtext mode of the Rich Text Editor",
|
||||||
"Your homeserver's URL": "Your homeserver's URL",
|
"Your homeserver's URL": "Your homeserver's URL",
|
||||||
"Your identity server's URL": "Your identity server's URL",
|
"Your identity server's URL": "Your identity server's URL",
|
||||||
|
"Every page you use in the app": "Every page you use in the app",
|
||||||
|
"e.g. <CurrentPageURL>": "e.g. <CurrentPageURL>",
|
||||||
|
"Your User Agent": "Your User Agent",
|
||||||
|
"Your device resolution": "Your device resolution",
|
||||||
"Analytics": "Analytics",
|
"Analytics": "Analytics",
|
||||||
"The information being sent to us to help make Riot.im better includes:": "The information being sent to us to help make Riot.im better includes:",
|
"The information being sent to us to help make Riot.im better includes:": "The information being sent to us to help make Riot.im better includes:",
|
||||||
"We also record each page you use in the app (currently <CurrentPageHash>), your User Agent (<CurrentUserAgent>) and your device resolution (<CurrentDeviceResolution>).": "We also record each page you use in the app (currently <CurrentPageHash>), your User Agent (<CurrentUserAgent>) and your device resolution (<CurrentDeviceResolution>).",
|
|
||||||
"Where this page includes identifiable information, such as a room, user or group ID, that data is removed before being sent to the server.": "Where this page includes identifiable information, such as a room, user or group ID, that data is removed before being sent to the server.",
|
"Where this page includes identifiable information, such as a room, user or group ID, that data is removed before being sent to the server.": "Where this page includes identifiable information, such as a room, user or group ID, that data is removed before being sent to the server.",
|
||||||
"Call Failed": "Call Failed",
|
"Call Failed": "Call Failed",
|
||||||
"There are unknown devices in this room: if you proceed without verifying them, it will be possible for someone to eavesdrop on your call.": "There are unknown devices in this room: if you proceed without verifying them, it will be possible for someone to eavesdrop on your call.",
|
"There are unknown devices in this room: if you proceed without verifying them, it will be possible for someone to eavesdrop on your call.": "There are unknown devices in this room: if you proceed without verifying them, it will be possible for someone to eavesdrop on your call.",
|
||||||
|
@ -952,7 +952,6 @@
|
|||||||
"The platform you're on": "Via sistemtipo",
|
"The platform you're on": "Via sistemtipo",
|
||||||
"Which officially provided instance you are using, if any": "Kiun oficiale disponeblan aperon vi uzas, se iun ajn",
|
"Which officially provided instance you are using, if any": "Kiun oficiale disponeblan aperon vi uzas, se iun ajn",
|
||||||
"Whether or not you're using the Richtext mode of the Rich Text Editor": "Ĉu vi uzas la riĉtekstan reĝimon de la riĉteksta redaktilo aŭ ne",
|
"Whether or not you're using the Richtext mode of the Rich Text Editor": "Ĉu vi uzas la riĉtekstan reĝimon de la riĉteksta redaktilo aŭ ne",
|
||||||
"We also record each page you use in the app (currently <CurrentPageHash>), your User Agent (<CurrentUserAgent>) and your device resolution (<CurrentDeviceResolution>).": "Ni ankaŭ registras ĉiun paĝon, kiun vi uzas en la programo (nun <CurrentPageHash>), vian klientan aplikaĵon (<CurrentUserAgent>) kaj vian aparatan distingon (<CurrentDeviceResolution>).",
|
|
||||||
"Where this page includes identifiable information, such as a room, user or group ID, that data is removed before being sent to the server.": "Kiam ĉi tiu paĝo enhavas identigeblajn informojn, ekzemple ĉambron, uzantan aŭ grupan identigilon, ĝi sendiĝas al la servilo sen tiuj.",
|
"Where this page includes identifiable information, such as a room, user or group ID, that data is removed before being sent to the server.": "Kiam ĉi tiu paĝo enhavas identigeblajn informojn, ekzemple ĉambron, uzantan aŭ grupan identigilon, ĝi sendiĝas al la servilo sen tiuj.",
|
||||||
"%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s": "%(weekDayName)s, %(day)s %(monthName)s %(fullYear)s",
|
"%(weekDayName)s, %(monthName)s %(day)s %(fullYear)s": "%(weekDayName)s, %(day)s %(monthName)s %(fullYear)s",
|
||||||
"Disable Community Filter Panel": "Malŝalti komunuman filtran breton",
|
"Disable Community Filter Panel": "Malŝalti komunuman filtran breton",
|
||||||
|
@ -959,7 +959,6 @@
|
|||||||
"Privacy is important to us, so we don't collect any personal or identifiable data for our analytics.": "Pribatutasuna garrantzitsua da guretzat, beraz ez dugu datu pertsonalik edo identifikagarririk jasotzen gure estatistiketan.",
|
"Privacy is important to us, so we don't collect any personal or identifiable data for our analytics.": "Pribatutasuna garrantzitsua da guretzat, beraz ez dugu datu pertsonalik edo identifikagarririk jasotzen gure estatistiketan.",
|
||||||
"Learn more about how we use analytics.": "Ikasi gehiago estatistikei ematen diegun erabileraz.",
|
"Learn more about how we use analytics.": "Ikasi gehiago estatistikei ematen diegun erabileraz.",
|
||||||
"The information being sent to us to help make Riot.im better includes:": "Riot.im hobetzeko bidaltzen zaigun informazioan hau dago:",
|
"The information being sent to us to help make Riot.im better includes:": "Riot.im hobetzeko bidaltzen zaigun informazioan hau dago:",
|
||||||
"We also record each page you use in the app (currently <CurrentPageHash>), your User Agent (<CurrentUserAgent>) and your device resolution (<CurrentDeviceResolution>).": "Aplikazioan erabiltzen duzun orri bakoitza jasotzen dugu (orain <CurrentPageHash>), erabiltzaile-agentea (<CurrentUserAgent>) eta gailuaren bereizmena (<CurrentDeviceResolution>).",
|
|
||||||
"Where this page includes identifiable information, such as a room, user or group ID, that data is removed before being sent to the server.": "Orri honek informazio identifikagarria badu ere, esaterako gela, erabiltzailea edo talde ID-a, datu hauek ezabatu egiten dira zerbitzarira bidali aurretik.",
|
"Where this page includes identifiable information, such as a room, user or group ID, that data is removed before being sent to the server.": "Orri honek informazio identifikagarria badu ere, esaterako gela, erabiltzailea edo talde ID-a, datu hauek ezabatu egiten dira zerbitzarira bidali aurretik.",
|
||||||
"Whether or not you're logged in (we don't record your user name)": "Saioa hasita dagoen ala ez (ez dugu erabiltzaile-izena gordetzen)",
|
"Whether or not you're logged in (we don't record your user name)": "Saioa hasita dagoen ala ez (ez dugu erabiltzaile-izena gordetzen)",
|
||||||
"Which officially provided instance you are using, if any": "Erabiltzen ari zaren instantzia ofiziala, balego",
|
"Which officially provided instance you are using, if any": "Erabiltzen ari zaren instantzia ofiziala, balego",
|
||||||
|
@ -956,7 +956,6 @@
|
|||||||
"Privacy is important to us, so we don't collect any personal or identifiable data for our analytics.": "Le respect de votre vie privée est important pour nous, donc nous ne collectons aucune donnée personnelle ou permettant de vous identifier pour nos statistiques.",
|
"Privacy is important to us, so we don't collect any personal or identifiable data for our analytics.": "Le respect de votre vie privée est important pour nous, donc nous ne collectons aucune donnée personnelle ou permettant de vous identifier pour nos statistiques.",
|
||||||
"Learn more about how we use analytics.": "En savoir plus sur notre utilisation des statistiques.",
|
"Learn more about how we use analytics.": "En savoir plus sur notre utilisation des statistiques.",
|
||||||
"The information being sent to us to help make Riot.im better includes:": "Les informations qui nous sont envoyées pour nous aider à améliorer Riot.im comprennent :",
|
"The information being sent to us to help make Riot.im better includes:": "Les informations qui nous sont envoyées pour nous aider à améliorer Riot.im comprennent :",
|
||||||
"We also record each page you use in the app (currently <CurrentPageHash>), your User Agent (<CurrentUserAgent>) and your device resolution (<CurrentDeviceResolution>).": "Nous enregistrons aussi chaque page que vous utilisez dans l'application (en ce moment <CurrentPageHash>), votre User Agent (<CurrentUserAgent>) et la résolution de votre appareil (<CurrentDeviceResolution>).",
|
|
||||||
"Where this page includes identifiable information, such as a room, user or group ID, that data is removed before being sent to the server.": "Si la page contient des informations permettant de vous identifier, comme un salon, un identifiant d'utilisateur ou de groupe, ces données sont enlevées avant qu'elle ne soit envoyée au serveur.",
|
"Where this page includes identifiable information, such as a room, user or group ID, that data is removed before being sent to the server.": "Si la page contient des informations permettant de vous identifier, comme un salon, un identifiant d'utilisateur ou de groupe, ces données sont enlevées avant qu'elle ne soit envoyée au serveur.",
|
||||||
"The platform you're on": "La plateforme que vous utilisez",
|
"The platform you're on": "La plateforme que vous utilisez",
|
||||||
"The version of Riot.im": "La version de Riot.im",
|
"The version of Riot.im": "La version de Riot.im",
|
||||||
|
@ -951,7 +951,6 @@
|
|||||||
"File to import": "Ficheiro a importar",
|
"File to import": "Ficheiro a importar",
|
||||||
"Import": "Importar",
|
"Import": "Importar",
|
||||||
"The information being sent to us to help make Riot.im better includes:": "A información enviada a Riot.im para axudarnos a mellorar inclúe:",
|
"The information being sent to us to help make Riot.im better includes:": "A información enviada a Riot.im para axudarnos a mellorar inclúe:",
|
||||||
"We also record each page you use in the app (currently <CurrentPageHash>), your User Agent (<CurrentUserAgent>) and your device resolution (<CurrentDeviceResolution>).": "Tamén rexistramos cada páxina que vostede utiliza no aplicativo (actualmente <CurrentPageHash>), o User Agent (<CurrentUserAgent>) e a resolución do dispositivo (<CurrentDeviceResolution>).",
|
|
||||||
"Where this page includes identifiable information, such as a room, user or group ID, that data is removed before being sent to the server.": "Si esta páxina inclúe información identificable como ID de grupo, usuario ou sala, estes datos son eliminados antes de ser enviados ao servidor.",
|
"Where this page includes identifiable information, such as a room, user or group ID, that data is removed before being sent to the server.": "Si esta páxina inclúe información identificable como ID de grupo, usuario ou sala, estes datos son eliminados antes de ser enviados ao servidor.",
|
||||||
"The platform you're on": "A plataforma na que está",
|
"The platform you're on": "A plataforma na que está",
|
||||||
"The version of Riot.im": "A versión de Riot.im",
|
"The version of Riot.im": "A versión de Riot.im",
|
||||||
|
@ -956,7 +956,6 @@
|
|||||||
"Privacy is important to us, so we don't collect any personal or identifiable data for our analytics.": "A személyes adatok védelme fontos számunkra, így mi nem gyűjtünk személyes és személyhez köthető adatokat az analitikánkhoz.",
|
"Privacy is important to us, so we don't collect any personal or identifiable data for our analytics.": "A személyes adatok védelme fontos számunkra, így mi nem gyűjtünk személyes és személyhez köthető adatokat az analitikánkhoz.",
|
||||||
"Learn more about how we use analytics.": "Tudj meg többet arról hogyan használjuk az analitikai adatokat.",
|
"Learn more about how we use analytics.": "Tudj meg többet arról hogyan használjuk az analitikai adatokat.",
|
||||||
"The information being sent to us to help make Riot.im better includes:": "Az adatok amiket a Riot.im javításához felhasználunk az alábbiak:",
|
"The information being sent to us to help make Riot.im better includes:": "Az adatok amiket a Riot.im javításához felhasználunk az alábbiak:",
|
||||||
"We also record each page you use in the app (currently <CurrentPageHash>), your User Agent (<CurrentUserAgent>) and your device resolution (<CurrentDeviceResolution>).": "Felvesszük az összes oldalt amit az alkalmazásban használsz (jelenleg <CurrentPageHash>), a \"User Agent\"-et (<CurrentUserAgent>) és az eszköz felbontását (<CurrentDeviceResolution>).",
|
|
||||||
"Where this page includes identifiable information, such as a room, user or group ID, that data is removed before being sent to the server.": "Minden azonosításra alkalmas adatot mint a szoba, felhasználó vagy csoport azonosítót mielőtt az adatokat elküldenénk eltávolításra kerülnek.",
|
"Where this page includes identifiable information, such as a room, user or group ID, that data is removed before being sent to the server.": "Minden azonosításra alkalmas adatot mint a szoba, felhasználó vagy csoport azonosítót mielőtt az adatokat elküldenénk eltávolításra kerülnek.",
|
||||||
"The platform you're on": "A platform amit használsz",
|
"The platform you're on": "A platform amit használsz",
|
||||||
"The version of Riot.im": "Riot.im verziója",
|
"The version of Riot.im": "Riot.im verziója",
|
||||||
|
@ -101,7 +101,6 @@
|
|||||||
"Your identity server's URL": "L'URL del tuo server di identità",
|
"Your identity server's URL": "L'URL del tuo server di identità",
|
||||||
"Analytics": "Statistiche",
|
"Analytics": "Statistiche",
|
||||||
"The information being sent to us to help make Riot.im better includes:": "Le informazioni inviate per aiutarci a migliorare Riot.im includono:",
|
"The information being sent to us to help make Riot.im better includes:": "Le informazioni inviate per aiutarci a migliorare Riot.im includono:",
|
||||||
"We also record each page you use in the app (currently <CurrentPageHash>), your User Agent (<CurrentUserAgent>) and your device resolution (<CurrentDeviceResolution>).": "Registriamo anche ogni pagina che usi nell'app (attualmente <CurrentPageHash>), il tuo User Agent (<CurrentUserAgent>) e la risoluzione del dispositivo (<CurrentDeviceResolution>).",
|
|
||||||
"Where this page includes identifiable information, such as a room, user or group ID, that data is removed before being sent to the server.": "Se questa pagina include informazioni identificabili, come una stanza, utente o ID di gruppo, questi dati sono rimossi prima che vengano inviati al server.",
|
"Where this page includes identifiable information, such as a room, user or group ID, that data is removed before being sent to the server.": "Se questa pagina include informazioni identificabili, come una stanza, utente o ID di gruppo, questi dati sono rimossi prima che vengano inviati al server.",
|
||||||
"Call Failed": "Chiamata fallita",
|
"Call Failed": "Chiamata fallita",
|
||||||
"There are unknown devices in this room: if you proceed without verifying them, it will be possible for someone to eavesdrop on your call.": "Ci sono dispositivi sconosciuti in questa stanza: se procedi senza verificarli, qualcuno avrà la possibilità di intercettare la tua chiamata.",
|
"There are unknown devices in this room: if you proceed without verifying them, it will be possible for someone to eavesdrop on your call.": "Ci sono dispositivi sconosciuti in questa stanza: se procedi senza verificarli, qualcuno avrà la possibilità di intercettare la tua chiamata.",
|
||||||
|
@ -87,7 +87,6 @@
|
|||||||
"Your identity server's URL": "あなたのアイデンティティサーバのURL",
|
"Your identity server's URL": "あなたのアイデンティティサーバのURL",
|
||||||
"Analytics": "分析",
|
"Analytics": "分析",
|
||||||
"The information being sent to us to help make Riot.im better includes:": "Riot.imをよりよくするために私達に送信される情報は以下を含みます:",
|
"The information being sent to us to help make Riot.im better includes:": "Riot.imをよりよくするために私達に送信される情報は以下を含みます:",
|
||||||
"We also record each page you use in the app (currently <CurrentPageHash>), your User Agent (<CurrentUserAgent>) and your device resolution (<CurrentDeviceResolution>).": "私達はこのアプリであなたが利用したページ(現在は<CurrentPageHash>)、あなたのユーザエージェント(現在は<CurrentUserAgent>)、並びにあなたの端末の解像度(現在の端末では<CurrentDeviceResolution>)も記録します。",
|
|
||||||
"Thursday": "木曜日",
|
"Thursday": "木曜日",
|
||||||
"Messages in one-to-one chats": "一対一のチャットでのメッセージ",
|
"Messages in one-to-one chats": "一対一のチャットでのメッセージ",
|
||||||
"A new version of Riot is available.": "新しいバージョンのRiotが利用可能です。",
|
"A new version of Riot is available.": "新しいバージョンのRiotが利用可能です。",
|
||||||
|
@ -12,7 +12,6 @@
|
|||||||
"Your identity server's URL": "Jūsų identifikavimo serverio URL adresas",
|
"Your identity server's URL": "Jūsų identifikavimo serverio URL adresas",
|
||||||
"Analytics": "Statistika",
|
"Analytics": "Statistika",
|
||||||
"The information being sent to us to help make Riot.im better includes:": "Informacijoje, kuri yra siunčiama Riot.im tobulinimui yra:",
|
"The information being sent to us to help make Riot.im better includes:": "Informacijoje, kuri yra siunčiama Riot.im tobulinimui yra:",
|
||||||
"We also record each page you use in the app (currently <CurrentPageHash>), your User Agent (<CurrentUserAgent>) and your device resolution (<CurrentDeviceResolution>).": "Mes taip pat saugome kiekvieną puslapį, kurį jūs naudojate programėlėje (dabartinis <CurrentPageHash>), jūsų paskyros agentas (<CurrentUserAgent>) ir jūsų įrenginio rezoliucija (<CurrentDeviceResolution>).",
|
|
||||||
"Fetching third party location failed": "Nepavyko gauti trečios šalies vietos",
|
"Fetching third party location failed": "Nepavyko gauti trečios šalies vietos",
|
||||||
"A new version of Riot is available.": "Yra nauja Riot versija.",
|
"A new version of Riot is available.": "Yra nauja Riot versija.",
|
||||||
"I understand the risks and wish to continue": "Aš suprantu riziką ir noriu tęsti",
|
"I understand the risks and wish to continue": "Aš suprantu riziką ir noriu tęsti",
|
||||||
|
@ -695,7 +695,6 @@
|
|||||||
"Your homeserver's URL": "Bāzes servera URL adrese",
|
"Your homeserver's URL": "Bāzes servera URL adrese",
|
||||||
"Your identity server's URL": "Tava Identitātes servera URL adrese",
|
"Your identity server's URL": "Tava Identitātes servera URL adrese",
|
||||||
"The information being sent to us to help make Riot.im better includes:": "Informācija, kura mums tiek nosūtīta, lai ļautu padarīt Riot.im labāku, ietver:",
|
"The information being sent to us to help make Riot.im better includes:": "Informācija, kura mums tiek nosūtīta, lai ļautu padarīt Riot.im labāku, ietver:",
|
||||||
"We also record each page you use in the app (currently <CurrentPageHash>), your User Agent (<CurrentUserAgent>) and your device resolution (<CurrentDeviceResolution>).": "Mēs arī fiksējam katru lapu, kuru tu izmanto programmā (currently <CurrentPageHash>), Tavu lietotāja aģentu (<CurrentUserAgent>) un Tavas ierīces ekrāna izšķirtspēju (<CurrentDeviceResolution>).",
|
|
||||||
"Where this page includes identifiable information, such as a room, user or group ID, that data is removed before being sent to the server.": "Ja šī lapa ietver identificējamu informāciju, tādu kā istaba, lietotājs, grupas Id, šie dati tiek noņemti pirms nosūtīšanas uz serveri.",
|
"Where this page includes identifiable information, such as a room, user or group ID, that data is removed before being sent to the server.": "Ja šī lapa ietver identificējamu informāciju, tādu kā istaba, lietotājs, grupas Id, šie dati tiek noņemti pirms nosūtīšanas uz serveri.",
|
||||||
"Call Failed": "Zvans neizdevās",
|
"Call Failed": "Zvans neizdevās",
|
||||||
"There are unknown devices in this room: if you proceed without verifying them, it will be possible for someone to eavesdrop on your call.": "Šajā istabā ir nepazīstamas ierīces: ja Tu turpināsi bez to pārbaudes, ir iespējams, ka kāda nepiederoša persona var noklausīties Tavas sarunas.",
|
"There are unknown devices in this room: if you proceed without verifying them, it will be possible for someone to eavesdrop on your call.": "Šajā istabā ir nepazīstamas ierīces: ja Tu turpināsi bez to pārbaudes, ir iespējams, ka kāda nepiederoša persona var noklausīties Tavas sarunas.",
|
||||||
|
@ -959,7 +959,6 @@
|
|||||||
"Notify the whole room": "Notificeer de gehele ruimte",
|
"Notify the whole room": "Notificeer de gehele ruimte",
|
||||||
"Room Notification": "Ruimte Notificatie",
|
"Room Notification": "Ruimte Notificatie",
|
||||||
"The information being sent to us to help make Riot.im better includes:": "De informatie dat naar ons wordt verstuurd om Riot.im beter te maken betrekt:",
|
"The information being sent to us to help make Riot.im better includes:": "De informatie dat naar ons wordt verstuurd om Riot.im beter te maken betrekt:",
|
||||||
"We also record each page you use in the app (currently <CurrentPageHash>), your User Agent (<CurrentUserAgent>) and your device resolution (<CurrentDeviceResolution>).": "We nemen ook elke pagina die je in de applicatie gebruikt (momenteel <CurrentPageHash>), je User Agent (<CurrentUserAgent>) en de resolutie van je apparaat (<CurrentDeviceResolution>) op.",
|
|
||||||
"Where this page includes identifiable information, such as a room, user or group ID, that data is removed before being sent to the server.": "Waar deze pagina identificeerbare informatie bevat, zoals een ruimte, gebruiker of groep ID, zal deze data verwijderd worden voordat het naar de server gestuurd wordt.",
|
"Where this page includes identifiable information, such as a room, user or group ID, that data is removed before being sent to the server.": "Waar deze pagina identificeerbare informatie bevat, zoals een ruimte, gebruiker of groep ID, zal deze data verwijderd worden voordat het naar de server gestuurd wordt.",
|
||||||
"The platform you're on": "Het platform waar je je op bevindt",
|
"The platform you're on": "Het platform waar je je op bevindt",
|
||||||
"The version of Riot.im": "De versie van Riot.im",
|
"The version of Riot.im": "De versie van Riot.im",
|
||||||
|
@ -693,7 +693,6 @@
|
|||||||
"Your homeserver's URL": "Adres URL twojego serwera domowego",
|
"Your homeserver's URL": "Adres URL twojego serwera domowego",
|
||||||
"Your identity server's URL": "Adres URL twojego serwera tożsamości",
|
"Your identity server's URL": "Adres URL twojego serwera tożsamości",
|
||||||
"The information being sent to us to help make Riot.im better includes:": "Oto informacje przesyłane do nas, służące do poprawy Riot.im:",
|
"The information being sent to us to help make Riot.im better includes:": "Oto informacje przesyłane do nas, służące do poprawy Riot.im:",
|
||||||
"We also record each page you use in the app (currently <CurrentPageHash>), your User Agent (<CurrentUserAgent>) and your device resolution (<CurrentDeviceResolution>).": "Zapisujemy również każdą stronę, z której korzystasz w aplikacji (obecnie <CurrentPageHash>), twój User Agent (<CurrentUserAgent>) oraz rozdzielczość ekranu twojego urządzenia (<CurrentDeviceResolution>).",
|
|
||||||
"The platform you're on": "Platforma na której jesteś",
|
"The platform you're on": "Platforma na której jesteś",
|
||||||
"There are unknown devices in this room: if you proceed without verifying them, it will be possible for someone to eavesdrop on your call.": "W tym pokoju są nieznane urządzenia: jeżeli będziesz kontynuować bez ich weryfikacji, możliwe będzie podsłuchiwanie Twojego połączenia.",
|
"There are unknown devices in this room: if you proceed without verifying them, it will be possible for someone to eavesdrop on your call.": "W tym pokoju są nieznane urządzenia: jeżeli będziesz kontynuować bez ich weryfikacji, możliwe będzie podsłuchiwanie Twojego połączenia.",
|
||||||
"Answer": "Odbierz",
|
"Answer": "Odbierz",
|
||||||
|
@ -664,7 +664,6 @@
|
|||||||
"Your homeserver's URL": "A URL do seu Servidor de Base (homeserver)",
|
"Your homeserver's URL": "A URL do seu Servidor de Base (homeserver)",
|
||||||
"Your identity server's URL": "A URL do seu servidor de identidade",
|
"Your identity server's URL": "A URL do seu servidor de identidade",
|
||||||
"The information being sent to us to help make Riot.im better includes:": "As informações que estão sendo usadas para ajudar a melhorar o Riot.im incluem:",
|
"The information being sent to us to help make Riot.im better includes:": "As informações que estão sendo usadas para ajudar a melhorar o Riot.im incluem:",
|
||||||
"We also record each page you use in the app (currently <CurrentPageHash>), your User Agent (<CurrentUserAgent>) and your device resolution (<CurrentDeviceResolution>).": "Nós também gravamos cada página que você usa no app (atualmente <CurrentPageHash>), o seu User Agent (<CurrentUserAgent>) e a resolução do seu dispositivo (<CurrentDeviceResolution>).",
|
|
||||||
"Where this page includes identifiable information, such as a room, user or group ID, that data is removed before being sent to the server.": "Quando esta página tem informação de identificação, como uma sala, ID de usuária/o ou de grupo, estes dados são removidos antes de serem enviados ao servidor.",
|
"Where this page includes identifiable information, such as a room, user or group ID, that data is removed before being sent to the server.": "Quando esta página tem informação de identificação, como uma sala, ID de usuária/o ou de grupo, estes dados são removidos antes de serem enviados ao servidor.",
|
||||||
"Call Failed": "A chamada falhou",
|
"Call Failed": "A chamada falhou",
|
||||||
"There are unknown devices in this room: if you proceed without verifying them, it will be possible for someone to eavesdrop on your call.": "Há dispositivos desconhecidos nesta sala: se você continuar sem verificá-los, será possível alguém espiar sua chamada.",
|
"There are unknown devices in this room: if you proceed without verifying them, it will be possible for someone to eavesdrop on your call.": "Há dispositivos desconhecidos nesta sala: se você continuar sem verificá-los, será possível alguém espiar sua chamada.",
|
||||||
|
@ -956,7 +956,6 @@
|
|||||||
"Privacy is important to us, so we don't collect any personal or identifiable data for our analytics.": "Конфиденциальность важна для нас, поэтому мы не собираем никаких личных или идентифицируемых данных для нашей аналитики.",
|
"Privacy is important to us, so we don't collect any personal or identifiable data for our analytics.": "Конфиденциальность важна для нас, поэтому мы не собираем никаких личных или идентифицируемых данных для нашей аналитики.",
|
||||||
"Learn more about how we use analytics.": "Подробнее о том, как мы используем аналитику.",
|
"Learn more about how we use analytics.": "Подробнее о том, как мы используем аналитику.",
|
||||||
"The information being sent to us to help make Riot.im better includes:": "Информация, отправляемая нам, чтобы помочь нам сделать Riot.im лучше, включает в себя:",
|
"The information being sent to us to help make Riot.im better includes:": "Информация, отправляемая нам, чтобы помочь нам сделать Riot.im лучше, включает в себя:",
|
||||||
"We also record each page you use in the app (currently <CurrentPageHash>), your User Agent (<CurrentUserAgent>) and your device resolution (<CurrentDeviceResolution>).": "Мы также записываем, какими страницами в приложении вы пользуетесь (сейчас — <CurrentPageHash>), ваш User-Agent (<CurrentUserAgent>) и разрешение экрана вашего устройства (<CurrentDeviceResolution>).",
|
|
||||||
"Where this page includes identifiable information, such as a room, user or group ID, that data is removed before being sent to the server.": "Если на этой странице встречаются сведения личного характера, например имя комнаты, имя пользователя или группы, они удаляются перед отправкой на сервер.",
|
"Where this page includes identifiable information, such as a room, user or group ID, that data is removed before being sent to the server.": "Если на этой странице встречаются сведения личного характера, например имя комнаты, имя пользователя или группы, они удаляются перед отправкой на сервер.",
|
||||||
"The platform you're on": "Используемая платформа",
|
"The platform you're on": "Используемая платформа",
|
||||||
"The version of Riot.im": "Версия Riot.im",
|
"The version of Riot.im": "Версия Riot.im",
|
||||||
|
@ -957,7 +957,6 @@
|
|||||||
"Privacy is important to us, so we don't collect any personal or identifiable data for our analytics.": "Vaše súkromie je pre nás dôležité, preto nezhromažďujeme žiadne osobné údaje alebo údaje, na základe ktorých je možné vás identifikovať.",
|
"Privacy is important to us, so we don't collect any personal or identifiable data for our analytics.": "Vaše súkromie je pre nás dôležité, preto nezhromažďujeme žiadne osobné údaje alebo údaje, na základe ktorých je možné vás identifikovať.",
|
||||||
"Learn more about how we use analytics.": "Zistite viac o tom, ako spracúvame analytické údaje.",
|
"Learn more about how we use analytics.": "Zistite viac o tom, ako spracúvame analytické údaje.",
|
||||||
"The information being sent to us to help make Riot.im better includes:": "S cieľom vylepšovať aplikáciu Riot.im zbierame nasledujúce údaje:",
|
"The information being sent to us to help make Riot.im better includes:": "S cieľom vylepšovať aplikáciu Riot.im zbierame nasledujúce údaje:",
|
||||||
"We also record each page you use in the app (currently <CurrentPageHash>), your User Agent (<CurrentUserAgent>) and your device resolution (<CurrentDeviceResolution>).": "Zaznamenávame tiež každú stránku aplikácie Riot.im, ktorú otvoríte (momentálne <CurrentPageHash>), reťazec user agent (<CurrentUserAgent>) a rozlíšenie obrazovky vašeho zariadenia (<CurrentDeviceResolution>).",
|
|
||||||
"Where this page includes identifiable information, such as a room, user or group ID, that data is removed before being sent to the server.": "Ak sa na stránke vyskytujú identifikujúce údaje, akými sú napríklad názov miestnosti, ID používateľa, miestnosti alebo skupiny, tieto sú pred odoslaním na server odstránené.",
|
"Where this page includes identifiable information, such as a room, user or group ID, that data is removed before being sent to the server.": "Ak sa na stránke vyskytujú identifikujúce údaje, akými sú napríklad názov miestnosti, ID používateľa, miestnosti alebo skupiny, tieto sú pred odoslaním na server odstránené.",
|
||||||
"The platform you're on": "Vami používaná platforma",
|
"The platform you're on": "Vami používaná platforma",
|
||||||
"The version of Riot.im": "Verzia Riot.im",
|
"The version of Riot.im": "Verzia Riot.im",
|
||||||
|
@ -12,7 +12,6 @@
|
|||||||
"Your identity server's URL": "URL-ja e server-it identiteti tëndë",
|
"Your identity server's URL": "URL-ja e server-it identiteti tëndë",
|
||||||
"Analytics": "Analiza",
|
"Analytics": "Analiza",
|
||||||
"The information being sent to us to help make Riot.im better includes:": "Informacionet që dërgohen për t'i ndihmuar Riot.im-it të përmirësohet përmbajnë:",
|
"The information being sent to us to help make Riot.im better includes:": "Informacionet që dërgohen për t'i ndihmuar Riot.im-it të përmirësohet përmbajnë:",
|
||||||
"We also record each page you use in the app (currently <CurrentPageHash>), your User Agent (<CurrentUserAgent>) and your device resolution (<CurrentDeviceResolution>).": "Ne gjithashtu inçizojmë çdo faqe që përdorë në aplikacion (në këtë çast <CurrentPageHash>), agjentin e përdoruesit tëndë (<CurrentUserAgent>) dhe rezolucionin e pajisjes tënde (<CurrentDeviceResolution>).",
|
|
||||||
"Where this page includes identifiable information, such as a room, user or group ID, that data is removed before being sent to the server.": "Kur kjo faqe pëmban informacione që mund të të identifikojnë, sikur një dhomë, përdorues apo identifikatues grupi, këto të dhëna do të mënjanohen para se t‘i dërgohën një server-it.",
|
"Where this page includes identifiable information, such as a room, user or group ID, that data is removed before being sent to the server.": "Kur kjo faqe pëmban informacione që mund të të identifikojnë, sikur një dhomë, përdorues apo identifikatues grupi, këto të dhëna do të mënjanohen para se t‘i dërgohën një server-it.",
|
||||||
"Call Failed": "Thirrja nuk mundej të realizohet",
|
"Call Failed": "Thirrja nuk mundej të realizohet",
|
||||||
"There are unknown devices in this room: if you proceed without verifying them, it will be possible for someone to eavesdrop on your call.": "Pajisje të panjohura ndodhen në këtë dhomë: nësë vazhdon pa i vërtetuar, është e mundshme që dikush të jua përgjon thirrjen.",
|
"There are unknown devices in this room: if you proceed without verifying them, it will be possible for someone to eavesdrop on your call.": "Pajisje të panjohura ndodhen në këtë dhomë: nësë vazhdon pa i vërtetuar, është e mundshme që dikush të jua përgjon thirrjen.",
|
||||||
|
@ -773,7 +773,6 @@
|
|||||||
"Your identity server's URL": "Адреса вашег идентитеског сервера",
|
"Your identity server's URL": "Адреса вашег идентитеског сервера",
|
||||||
"Analytics": "Аналитика",
|
"Analytics": "Аналитика",
|
||||||
"The information being sent to us to help make Riot.im better includes:": "У податке које нам шаљете зарад побољшавања Riot.im-а спадају:",
|
"The information being sent to us to help make Riot.im better includes:": "У податке које нам шаљете зарад побољшавања Riot.im-а спадају:",
|
||||||
"We also record each page you use in the app (currently <CurrentPageHash>), your User Agent (<CurrentUserAgent>) and your device resolution (<CurrentDeviceResolution>).": "Такође бележимо сваку страницу коју користите у апликацији (тренутно <CurrentPageHash>), ваш кориснички агент (<CurrentUserAgent>) и резолуцију вашег уређаја (<CurrentDeviceResolution>).",
|
|
||||||
"Where this page includes identifiable information, such as a room, user or group ID, that data is removed before being sent to the server.": "Ако страница садржи поверљиве податке (као што је назив собе, корисника или ИБ-ја групе), ти подаци се уклањају пре слања на сервер.",
|
"Where this page includes identifiable information, such as a room, user or group ID, that data is removed before being sent to the server.": "Ако страница садржи поверљиве податке (као што је назив собе, корисника или ИБ-ја групе), ти подаци се уклањају пре слања на сервер.",
|
||||||
"%(oldDisplayName)s changed their display name to %(displayName)s.": "Корисник %(oldDisplayName)s је променио приказно име у %(displayName)s.",
|
"%(oldDisplayName)s changed their display name to %(displayName)s.": "Корисник %(oldDisplayName)s је променио приказно име у %(displayName)s.",
|
||||||
"Failed to set direct chat tag": "Нисам успео да поставим ознаку директног ћаскања",
|
"Failed to set direct chat tag": "Нисам успео да поставим ознаку директног ћаскања",
|
||||||
|
@ -738,7 +738,6 @@
|
|||||||
"Your homeserver's URL": "您的主服务器的链接",
|
"Your homeserver's URL": "您的主服务器的链接",
|
||||||
"Your identity server's URL": "您的身份认证服务器的链接",
|
"Your identity server's URL": "您的身份认证服务器的链接",
|
||||||
"The information being sent to us to help make Riot.im better includes:": "将要为帮助 Riot.im 发展而发送的信息包含:",
|
"The information being sent to us to help make Riot.im better includes:": "将要为帮助 Riot.im 发展而发送的信息包含:",
|
||||||
"We also record each page you use in the app (currently <CurrentPageHash>), your User Agent (<CurrentUserAgent>) and your device resolution (<CurrentDeviceResolution>).": "我们也记录了您在本应用中使用的页面(目前为 <CurrentPageHash>), User Agent(<CurrentUserAgent>)和设备的分辨率(<CurrentDeviceResolution>)。",
|
|
||||||
"Where this page includes identifiable information, such as a room, user or group ID, that data is removed before being sent to the server.": "这个页面中含有可能能用于识别您身份的信息,比如聊天室、用户或群组 ID,在它们发送到服务器上之前,这些数据会被移除。",
|
"Where this page includes identifiable information, such as a room, user or group ID, that data is removed before being sent to the server.": "这个页面中含有可能能用于识别您身份的信息,比如聊天室、用户或群组 ID,在它们发送到服务器上之前,这些数据会被移除。",
|
||||||
"%(weekDayName)s %(time)s": "%(weekDayName)s %(time)s",
|
"%(weekDayName)s %(time)s": "%(weekDayName)s %(time)s",
|
||||||
"%(weekDayName)s, %(monthName)s %(day)s %(time)s": "%(weekDayName)s,%(monthName)s %(day)s %(time)s",
|
"%(weekDayName)s, %(monthName)s %(day)s %(time)s": "%(weekDayName)s,%(monthName)s %(day)s %(time)s",
|
||||||
|
@ -956,7 +956,6 @@
|
|||||||
"Notify the whole room": "通知整個聊天室",
|
"Notify the whole room": "通知整個聊天室",
|
||||||
"Room Notification": "聊天室通知",
|
"Room Notification": "聊天室通知",
|
||||||
"The information being sent to us to help make Riot.im better includes:": "協助讓 Riot.im 變得更好的傳送給我們的資訊包含了:",
|
"The information being sent to us to help make Riot.im better includes:": "協助讓 Riot.im 變得更好的傳送給我們的資訊包含了:",
|
||||||
"We also record each page you use in the app (currently <CurrentPageHash>), your User Agent (<CurrentUserAgent>) and your device resolution (<CurrentDeviceResolution>).": "我們也紀錄了每個您在應用程式中使用的頁面(目前 <CurrentPageHash>),您的使用者代理(<CurrentUserAgent>)與您的裝置解析度(<CurrentDeviceResolution>)。",
|
|
||||||
"Where this page includes identifiable information, such as a room, user or group ID, that data is removed before being sent to the server.": "這個頁面包含了可識別的資訊,如聊天室、使用者或群組 ID,這些資料會在傳到伺服器前被刪除。",
|
"Where this page includes identifiable information, such as a room, user or group ID, that data is removed before being sent to the server.": "這個頁面包含了可識別的資訊,如聊天室、使用者或群組 ID,這些資料會在傳到伺服器前被刪除。",
|
||||||
"The platform you're on": "您使用的平臺是",
|
"The platform you're on": "您使用的平臺是",
|
||||||
"The version of Riot.im": "Riot.im 的版本",
|
"The version of Riot.im": "Riot.im 的版本",
|
||||||
|
Loading…
Reference in New Issue
Block a user