From 67b830c48dd0c3720ba365bea21f7acc6491e9f6 Mon Sep 17 00:00:00 2001 From: "J. Ryan Stinnett" Date: Thu, 15 Aug 2019 11:11:46 +0100 Subject: [PATCH] Improve fallback ICE setting label --- src/i18n/strings/en_EN.json | 2 +- src/settings/Settings.js | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/i18n/strings/en_EN.json b/src/i18n/strings/en_EN.json index ddf7a6baa7..8b6d7e2a32 100644 --- a/src/i18n/strings/en_EN.json +++ b/src/i18n/strings/en_EN.json @@ -359,7 +359,7 @@ "Show recently visited rooms above the room list": "Show recently visited rooms above the room list", "Show hidden events in timeline": "Show hidden events in timeline", "Low bandwidth mode": "Low bandwidth mode", - "Allow fallback call assist server turn.matrix.org": "Allow fallback call assist server turn.matrix.org", + "Allow fallback call assist server turn.matrix.org when your homeserver does not offer one (your IP address would be shared during a call)": "Allow fallback call assist server turn.matrix.org when your homeserver does not offer one (your IP address would be shared during a call)", "Collecting app version information": "Collecting app version information", "Collecting logs": "Collecting logs", "Uploading report": "Uploading report", diff --git a/src/settings/Settings.js b/src/settings/Settings.js index 77e1c2cb25..b33ef3f8d7 100644 --- a/src/settings/Settings.js +++ b/src/settings/Settings.js @@ -374,7 +374,10 @@ export const SETTINGS = { }, "fallbackICEServerAllowed": { supportedLevels: LEVELS_DEVICE_ONLY_SETTINGS, - displayName: _td("Allow fallback call assist server turn.matrix.org"), + displayName: _td( + "Allow fallback call assist server turn.matrix.org when your homeserver " + + "does not offer one (your IP address would be shared during a call)", + ), // This is a tri-state value, where `null` means "prompt the user". default: null, },