Updated sentences displayed on SettingsView.

This commit is contained in:
David Britch 2017-04-05 12:38:34 +01:00
parent 5563da46b5
commit 25aeb2f9ab

View File

@ -87,12 +87,12 @@ namespace eShopOnContainers.Core.ViewModels
if (!UseAzureServices) if (!UseAzureServices)
{ {
Title = "Use Mock Services"; 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 else
{ {
Title = "Use Microservices/Containers from eShopOnContainers"; 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.";
} }
} }