From ea45c4f82537d214a0400b4cbc76537329261440 Mon Sep 17 00:00:00 2001 From: Lombiq Date: Tue, 15 Mar 2016 19:02:51 +0100 Subject: [PATCH] Autoroute: fixing T-string syntax in AutoroutePartHandler and updating its text --- .../Modules/Orchard.Autoroute/Handlers/AutoroutePartHandler.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Orchard.Web/Modules/Orchard.Autoroute/Handlers/AutoroutePartHandler.cs b/src/Orchard.Web/Modules/Orchard.Autoroute/Handlers/AutoroutePartHandler.cs index b7b353884..1038e93ab 100644 --- a/src/Orchard.Web/Modules/Orchard.Autoroute/Handlers/AutoroutePartHandler.cs +++ b/src/Orchard.Web/Modules/Orchard.Autoroute/Handlers/AutoroutePartHandler.cs @@ -104,7 +104,7 @@ namespace Orchard.Autoroute.Handlers { // Is this the current home page? if (part.ContentItem.Id == homePageId) { - _orchardServices.Notifier.Warning(T("You removed the content item that served as the site\'s home page. \nMost possibly this means that instead of the home page a \"404 Not Found\" error page will be displayed without a link to log in or access the dashboard. \n\nTo prevent this you can e.g. publish a content item that has the \"Set as home page\" checkbox ticked.")); + _orchardServices.Notifier.Warning(T("You removed the content item that served as the site's home page. \nMost possibly this means that instead of the home page a \"404 Not Found\" page will be displayed. \n\nTo prevent this you can e.g. publish a content item that has the \"Set as home page\" checkbox ticked.")); } _autorouteService.Value.RemoveAliases(part); }