From 25aeb2f9aba280aded3b5648404eadedea875aba Mon Sep 17 00:00:00 2001 From: David Britch Date: Wed, 5 Apr 2017 12:38:34 +0100 Subject: [PATCH] Updated sentences displayed on SettingsView. --- .../eShopOnContainers.Core/ViewModels/SettingsViewModel.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Mobile/eShopOnContainers/eShopOnContainers.Core/ViewModels/SettingsViewModel.cs b/src/Mobile/eShopOnContainers/eShopOnContainers.Core/ViewModels/SettingsViewModel.cs index 7d47e882a..b42e6445a 100644 --- a/src/Mobile/eShopOnContainers/eShopOnContainers.Core/ViewModels/SettingsViewModel.cs +++ b/src/Mobile/eShopOnContainers/eShopOnContainers.Core/ViewModels/SettingsViewModel.cs @@ -87,12 +87,12 @@ namespace eShopOnContainers.Core.ViewModels if (!UseAzureServices) { Title = "Use Mock Services"; - Description = "Mock Services are simulated objects that mimic the behavior of real services in controlled ways"; + Description = "Mock Services are simulated objects that mimic the behavior of real services using a controlled approach."; } else { Title = "Use Microservices/Containers from eShopOnContainers"; - Description = "When enabling the use of microservices/containers the Xamarin.Forms app will try to use real services deployed as Docker containers in the specified base IP that will need to be reachable through the network"; + Description = "When enabling the use of microservices/containers, the app will attempt to use real services deployed as Docker containers at the specified base endpoint, which will must be reachable through the network."; } }