Strings: Add lab flag promotion strings.

This commit is contained in:
SBiOSoftWhare 2022-07-04 16:55:30 +02:00
parent 67249ac7d5
commit e3b04f6368
2 changed files with 16 additions and 0 deletions

View file

@ -2192,6 +2192,10 @@ To enable access, tap Settings> Location and select Always";
"location_sharing_live_stop_sharing_error" = "Fail to stop sharing location";
"location_sharing_live_stop_sharing_progress" = "Stop location sharing";
"location_sharing_live_lab_promotion_title" = "Live location sharing";
"location_sharing_live_lab_promotion_text" = "Please note: this is a labs feature using a temporary implementation that allows the history of your shared location to be permanently visible to other people in the room.";
"location_sharing_live_lab_promotion_activation" = "Enable live location sharing";
// MARK: - MatrixKit

View file

@ -2815,6 +2815,18 @@ public class VectorL10n: NSObject {
public static var locationSharingLiveError: String {
return VectorL10n.tr("Vector", "location_sharing_live_error")
}
/// Enable live location sharing
public static var locationSharingLiveLabPromotionActivation: String {
return VectorL10n.tr("Vector", "location_sharing_live_lab_promotion_activation")
}
/// Please note: this is a labs feature using a temporary implementation that allows the history of your shared location to be permanently visible to other people in the room.
public static var locationSharingLiveLabPromotionText: String {
return VectorL10n.tr("Vector", "location_sharing_live_lab_promotion_text")
}
/// Live location sharing
public static var locationSharingLiveLabPromotionTitle: String {
return VectorL10n.tr("Vector", "location_sharing_live_lab_promotion_title")
}
/// You
public static var locationSharingLiveListItemCurrentUserDisplayName: String {
return VectorL10n.tr("Vector", "location_sharing_live_list_item_current_user_display_name")