mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-05-18 21:52:18 +02:00
Made StateStoreViewModel state mutable and removed the reducer for all the features using it.
This commit is contained in:
committed by
Stefan Ceriu
parent
99a44987a2
commit
de6d2a2fad
@@ -1905,6 +1905,10 @@ Tap the + to start adding people.";
|
||||
|
||||
"location_sharing_share_action" = "Share";
|
||||
|
||||
"location_sharing_post_failure_title" = "We couldn’t send your location";
|
||||
|
||||
"location_sharing_post_failure_subtitle" = "%@ could not send your location. Please try again later.";
|
||||
|
||||
"location_sharing_loading_map_error_title" = "%@ could not load the map. Please try again later.";
|
||||
|
||||
"location_sharing_locating_user_error_title" = "%@ could not access your location. Please try again later.";
|
||||
|
||||
@@ -2227,6 +2227,14 @@ public class VectorL10n: NSObject {
|
||||
public static var locationSharingOpenGoogleMaps: String {
|
||||
return VectorL10n.tr("Vector", "location_sharing_open_google_maps")
|
||||
}
|
||||
/// %@ could not send your location. Please try again later.
|
||||
public static func locationSharingPostFailureSubtitle(_ p1: String) -> String {
|
||||
return VectorL10n.tr("Vector", "location_sharing_post_failure_subtitle", p1)
|
||||
}
|
||||
/// We couldn’t send your location
|
||||
public static var locationSharingPostFailureTitle: String {
|
||||
return VectorL10n.tr("Vector", "location_sharing_post_failure_title")
|
||||
}
|
||||
/// Location sharing
|
||||
public static var locationSharingSettingsHeader: String {
|
||||
return VectorL10n.tr("Vector", "location_sharing_settings_header")
|
||||
|
||||
Reference in New Issue
Block a user