Merge pull request #1226 from vector-im/SimonBrandner/fix/e2ee

This commit is contained in:
Šimon Brandner
2023-07-10 16:05:16 +02:00
committed by GitHub
3 changed files with 6 additions and 3 deletions

View File

@@ -37,7 +37,7 @@
"Display name": "Display name",
"Download debug logs": "Download debug logs",
"Element Call Home": "Element Call Home",
"Element Call is temporarily not encrypted while we test scalability.": "Element Call is temporarily not encrypted while we test scalability.",
"Element Call is temporarily not end-to-end encrypted while we test scalability.": "Element Call is temporarily not end-to-end encrypted while we test scalability.",
"Exit full screen": "Exit full screen",
"Expose developer settings in the settings window.": "Expose developer settings in the settings window.",
"Feedback": "Feedback",

View File

@@ -26,7 +26,8 @@ export const E2EEBanner = () => {
<div className={styles.e2eeBanner}>
<LockOffIcon width={24} height={24} />
<Trans>
Element Call is temporarily not encrypted while we test scalability.
Element Call is temporarily not end-to-end encrypted while we test
scalability.
</Trans>
</div>
</Banner>

View File

@@ -27,7 +27,9 @@ export const E2EELock = () => {
const { t } = useTranslation();
const tooltip = useCallback(
() =>
t("Element Call is temporarily not encrypted while we test scalability."),
t(
"Element Call is temporarily not end-to-end encrypted while we test scalability."
),
[t]
);