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

Commit

Permalink
Remove hardcoded Element in tac labs description (#12266)
Browse files Browse the repository at this point in the history
  • Loading branch information
florianduros authored Feb 20, 2024
1 parent ac435c8 commit dd5b741
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/i18n/strings/en_EN.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/settings/Settings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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,
},
Expand Down

0 comments on commit dd5b741

Please sign in to comment.