Made StateStoreViewModel state mutable and removed the reducer for all the features using it.

This commit is contained in:
Stefan Ceriu
2022-01-28 12:58:31 +02:00
committed by Stefan Ceriu
parent 99a44987a2
commit de6d2a2fad
42 changed files with 324 additions and 431 deletions
+4
View File
@@ -1905,6 +1905,10 @@ Tap the + to start adding people.";
"location_sharing_share_action" = "Share";
"location_sharing_post_failure_title" = "We couldnt 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.";
+8
View File
@@ -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 couldnt 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")