diff --git a/src/i18n/strings/en_EN.json b/src/i18n/strings/en_EN.json index bf101a8fd3..7223ad3792 100644 --- a/src/i18n/strings/en_EN.json +++ b/src/i18n/strings/en_EN.json @@ -907,8 +907,8 @@ "Jump to date (adds /jumptodate and jump to date headers)": "Jump to date (adds /jumptodate and jump to date headers)", "Don't send read receipts": "Don't send read receipts", "Right-click message context menu": "Right-click message context menu", - "Location sharing - pin drop (under active development)": "Location sharing - pin drop (under active development)", - "Live location sharing - share current location (active development, and temporarily, locations persist in room history)": "Live location sharing - share current location (active development, and temporarily, locations persist in room history)", + "Location sharing - pin drop": "Location sharing - pin drop", + "Live Location Sharing (temporary implementation: locations persist in room history)": "Live Location Sharing (temporary implementation: locations persist in room history)", "Font size": "Font size", "Use custom size": "Use custom size", "Enable Emoji suggestions while typing": "Enable Emoji suggestions while typing", diff --git a/src/settings/Settings.tsx b/src/settings/Settings.tsx index d9bd0817a4..e4247908dd 100644 --- a/src/settings/Settings.tsx +++ b/src/settings/Settings.tsx @@ -433,7 +433,7 @@ export const SETTINGS: {[setting: string]: ISetting} = { isFeature: true, labsGroup: LabGroup.Messaging, supportedLevels: LEVELS_FEATURE, - displayName: _td("Location sharing - pin drop (under active development)"), + displayName: _td("Location sharing - pin drop"), default: false, }, "feature_location_share_live": { @@ -441,8 +441,7 @@ export const SETTINGS: {[setting: string]: ISetting} = { labsGroup: LabGroup.Messaging, supportedLevels: LEVELS_FEATURE, displayName: _td( - `Live location sharing - share current location ` + - `(active development, and temporarily, locations persist in room history)`, + "Live Location Sharing (temporary implementation: locations persist in room history)", ), default: false, },