diff --git a/src/i18n/strings/en_EN.json b/src/i18n/strings/en_EN.json index 3158f35d04..abb355d7d8 100644 --- a/src/i18n/strings/en_EN.json +++ b/src/i18n/strings/en_EN.json @@ -902,6 +902,7 @@ "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", "Location sharing - pin drop (under active development)": "Location sharing - pin drop (under active development)", + "Location sharing - share your current location with live updates (under active development)": "Location sharing - share your current location with live updates (under active development)", "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 0b6574a3dc..b1fb6a8606 100644 --- a/src/settings/Settings.tsx +++ b/src/settings/Settings.tsx @@ -406,6 +406,13 @@ export const SETTINGS: {[setting: string]: ISetting} = { displayName: _td("Location sharing - pin drop (under active development)"), default: false, }, + "feature_location_share_live": { + isFeature: true, + labsGroup: LabGroup.Messaging, + supportedLevels: LEVELS_FEATURE, + displayName: _td("Location sharing - share your current location with live updates (under active development)"), + default: false, + }, "baseFontSize": { displayName: _td("Font size"), supportedLevels: LEVELS_ACCOUNT_SETTINGS,