Update strings.

This commit is contained in:
SBiOSoftWhare
2022-04-05 18:36:53 +02:00
parent b15cf58e69
commit d406fc3164
2 changed files with 31 additions and 0 deletions
+7
View File
@@ -2113,6 +2113,13 @@ Tap the + to start adding people.";
"location_sharing_live_map_callout_title" = "Share location";
"location_sharing_live_list_item_time_left" = "%@ left";
"location_sharing_live_list_item_sharing_expired" = "Sharing expired";
"location_sharing_live_list_item_last_update" = "Updated %@ ago";
"location_sharing_live_list_item_last_update_invalid" = "Unknown last update";
"location_sharing_live_list_item_current_user_display_name" = "You";
"location_sharing_live_list_item_stop_sharing_action" = "Stop sharing";
// MARK: - MatrixKit
+24
View File
@@ -2759,6 +2759,30 @@ public class VectorL10n: NSObject {
public static var locationSharingInvalidAuthorizationSettings: String {
return VectorL10n.tr("Vector", "location_sharing_invalid_authorization_settings")
}
/// You
public static var locationSharingLiveListItemCurrentUserDisplayName: String {
return VectorL10n.tr("Vector", "location_sharing_live_list_item_current_user_display_name")
}
/// Updated %@ ago
public static func locationSharingLiveListItemLastUpdate(_ p1: String) -> String {
return VectorL10n.tr("Vector", "location_sharing_live_list_item_last_update", p1)
}
/// Unknown last update
public static var locationSharingLiveListItemLastUpdateInvalid: String {
return VectorL10n.tr("Vector", "location_sharing_live_list_item_last_update_invalid")
}
/// Sharing expired
public static var locationSharingLiveListItemSharingExpired: String {
return VectorL10n.tr("Vector", "location_sharing_live_list_item_sharing_expired")
}
/// Stop sharing
public static var locationSharingLiveListItemStopSharingAction: String {
return VectorL10n.tr("Vector", "location_sharing_live_list_item_stop_sharing_action")
}
/// %@ left
public static func locationSharingLiveListItemTimeLeft(_ p1: String) -> String {
return VectorL10n.tr("Vector", "location_sharing_live_list_item_time_left", p1)
}
/// Share location
public static var locationSharingLiveMapCalloutTitle: String {
return VectorL10n.tr("Vector", "location_sharing_live_map_callout_title")