diff --git a/public/locales/en-GB/app.json b/public/locales/en-GB/app.json index 3246e236..5fe1ffa8 100644 --- a/public/locales/en-GB/app.json +++ b/public/locales/en-GB/app.json @@ -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", diff --git a/src/E2EEBanner.tsx b/src/E2EEBanner.tsx index 08d1ffbb..957813e3 100644 --- a/src/E2EEBanner.tsx +++ b/src/E2EEBanner.tsx @@ -26,7 +26,8 @@ export const E2EEBanner = () => {
- Element Call is temporarily not encrypted while we test scalability. + Element Call is temporarily not end-to-end encrypted while we test + scalability.
diff --git a/src/E2EELock.tsx b/src/E2EELock.tsx index 3832e7f0..d032b036 100644 --- a/src/E2EELock.tsx +++ b/src/E2EELock.tsx @@ -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] );