From ca6d75e384d88779b6ac86369eb60153d3ee51b5 Mon Sep 17 00:00:00 2001 From: Robin Townsend Date: Tue, 8 Nov 2022 07:53:17 -0500 Subject: [PATCH] Improve the analytics opt-in copy --- public/locales/en-GB/app.json | 2 +- src/settings/SettingsModal.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/public/locales/en-GB/app.json b/public/locales/en-GB/app.json index ef330e6..7d4ae7b 100644 --- a/public/locales/en-GB/app.json +++ b/public/locales/en-GB/app.json @@ -117,7 +117,7 @@ "This call already exists, would you like to join?": "This call already exists, would you like to join?", "This site is protected by ReCAPTCHA and the Google <2>Privacy Policy and <6>Terms of Service apply.<9>By clicking \"Register\", you agree to our <12>Terms and conditions": "This site is protected by ReCAPTCHA and the Google <2>Privacy Policy and <6>Terms of Service apply.<9>By clicking \"Register\", you agree to our <12>Terms and conditions", "This will make a speaker's audio seem as if it is coming from where their tile is positioned on screen. (Experimental feature: this may impact the stability of audio.)": "This will make a speaker's audio seem as if it is coming from where their tile is positioned on screen. (Experimental feature: this may impact the stability of audio.)", - "This will send anonymized data (such as the duration of a call and the number of participants) to the element call team to help us optimise the application based on how it is used.": "This will send anonymized data (such as the duration of a call and the number of participants) to the element call team to help us optimise the application based on how it is used.", + "This will send anonymised data (such as the duration of a call and the number of participants) to the Element Call team to help us optimise the application based on how it is used.": "This will send anonymised data (such as the duration of a call and the number of participants) to the Element Call team to help us optimise the application based on how it is used.", "Turn off camera": "Turn off camera", "Turn on camera": "Turn on camera", "Unmute microphone": "Unmute microphone", diff --git a/src/settings/SettingsModal.tsx b/src/settings/SettingsModal.tsx index cb7acb2..f895538 100644 --- a/src/settings/SettingsModal.tsx +++ b/src/settings/SettingsModal.tsx @@ -159,7 +159,7 @@ export const SettingsModal = (props: Props) => { type="checkbox" checked={optInAnalytics} description={t( - "This will send anonymized data (such as the duration of a call and the number of participants) to the element call team to help us optimise the application based on how it is used." + "This will send anonymised data (such as the duration of a call and the number of participants) to the Element Call team to help us optimise the application based on how it is used." )} onChange={(event: React.ChangeEvent) => setOptInAnalytics(event.target.checked)