Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

Commit dd5b741

Browse files
authored
Remove hardcoded Element in tac labs description (#12266)
1 parent ac435c8 commit dd5b741

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/i18n/strings/en_EN.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1461,7 +1461,7 @@
14611461
"sliding_sync_server_specify_proxy": "Your server lacks native support, you must specify a proxy",
14621462
"sliding_sync_server_support": "Your server has native support",
14631463
"threads_activity_centre": "Threads Activity Centre (in development)",
1464-
"threads_activity_centre_description": "Warning: Under active development; reloads Element.",
1464+
"threads_activity_centre_description": "Warning: Under active development; reloads %(brand)s.",
14651465
"under_active_development": "Under active development.",
14661466
"unrealiable_e2e": "Unreliable in encrypted rooms",
14671467
"video_rooms": "Video rooms",

src/settings/Settings.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1128,7 +1128,7 @@ export const SETTINGS: { [setting: string]: ISetting } = {
11281128
labsGroup: LabGroup.Threads,
11291129
controller: new ReloadOnChangeController(),
11301130
displayName: _td("labs|threads_activity_centre"),
1131-
description: _td("labs|threads_activity_centre_description"),
1131+
description: () => _t("labs|threads_activity_centre_description", { brand: SdkConfig.get().brand }),
11321132
default: false,
11331133
isFeature: true,
11341134
},

0 commit comments

Comments
 (0)