From 8237497bc400140ff8f575eb9169accd0a71c758 Mon Sep 17 00:00:00 2001 From: Travis Ralston Date: Mon, 23 Aug 2021 20:27:29 -0600 Subject: [PATCH] Flag a couple features as having dependencies --- src/i18n/strings/en_EN.json | 4 ++-- src/settings/Settings.tsx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/i18n/strings/en_EN.json b/src/i18n/strings/en_EN.json index b9a6b5e04c..008e28e4b7 100644 --- a/src/i18n/strings/en_EN.json +++ b/src/i18n/strings/en_EN.json @@ -812,7 +812,7 @@ "Custom user status messages": "Custom user status messages", "Group & filter rooms by custom tags (refresh to apply changes)": "Group & filter rooms by custom tags (refresh to apply changes)", "Render simple counters in room header": "Render simple counters in room header", - "Multiple integration managers": "Multiple integration managers", + "Multiple integration managers (requires manual setup)": "Multiple integration managers (requires manual setup)", "Try out new ways to ignore people (experimental)": "Try out new ways to ignore people (experimental)", "Support adding custom themes": "Support adding custom themes", "Show message previews for reactions in DMs": "Show message previews for reactions in DMs", @@ -869,7 +869,7 @@ "Show rooms with unread notifications first": "Show rooms with unread notifications first", "Show shortcuts to recently viewed rooms above the room list": "Show shortcuts to recently viewed rooms above the room list", "Show hidden events in timeline": "Show hidden events in timeline", - "Low bandwidth mode": "Low bandwidth mode", + "Low bandwidth mode (requires compatible homeserver)": "Low bandwidth mode (requires compatible homeserver)", "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)", "Show previews/thumbnails for images": "Show previews/thumbnails for images", "Enable message search in encrypted rooms": "Enable message search in encrypted rooms", diff --git a/src/settings/Settings.tsx b/src/settings/Settings.tsx index d170f8d357..b92acfb93c 100644 --- a/src/settings/Settings.tsx +++ b/src/settings/Settings.tsx @@ -233,7 +233,7 @@ export const SETTINGS: {[setting: string]: ISetting} = { }, "feature_many_integration_managers": { isFeature: true, - displayName: _td("Multiple integration managers"), + displayName: _td("Multiple integration managers (requires manual setup)"), supportedLevels: LEVELS_FEATURE, default: false, }, @@ -668,7 +668,7 @@ export const SETTINGS: {[setting: string]: ISetting} = { }, "lowBandwidth": { supportedLevels: LEVELS_DEVICE_ONLY_SETTINGS_WITH_CONFIG, - displayName: _td('Low bandwidth mode'), + displayName: _td('Low bandwidth mode (requires compatible homeserver)'), default: false, controller: new ReloadOnChangeController(), },