diff --git a/src/i18n/strings/en_EN.json b/src/i18n/strings/en_EN.json index 83fb6156755..47d45fc2f01 100644 --- a/src/i18n/strings/en_EN.json +++ b/src/i18n/strings/en_EN.json @@ -1461,7 +1461,7 @@ "sliding_sync_server_specify_proxy": "Your server lacks native support, you must specify a proxy", "sliding_sync_server_support": "Your server has native support", "threads_activity_centre": "Threads Activity Centre (in development)", - "threads_activity_centre_description": "Warning: Under active development; reloads Element.", + "threads_activity_centre_description": "Warning: Under active development; reloads %(brand)s.", "under_active_development": "Under active development.", "unrealiable_e2e": "Unreliable in encrypted rooms", "video_rooms": "Video rooms", diff --git a/src/settings/Settings.tsx b/src/settings/Settings.tsx index 877469251da..2cdd93e68d7 100644 --- a/src/settings/Settings.tsx +++ b/src/settings/Settings.tsx @@ -1128,7 +1128,7 @@ export const SETTINGS: { [setting: string]: ISetting } = { labsGroup: LabGroup.Threads, controller: new ReloadOnChangeController(), displayName: _td("labs|threads_activity_centre"), - description: _td("labs|threads_activity_centre_description"), + description: () => _t("labs|threads_activity_centre_description", { brand: SdkConfig.get().brand }), default: false, isFeature: true, },