mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-05-12 18:59:59 +02:00
Update strings.
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
|
||||
@@ -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")
|
||||
|
||||
Reference in New Issue
Block a user