From b5cbff76070aa27a88008fa7b613751640a8170a Mon Sep 17 00:00:00 2001 From: Sebastien Ros Date: Tue, 7 Sep 2010 12:41:52 -0700 Subject: [PATCH] Missing localization string --HG-- branch : dev --- src/Orchard.Web/Themes/Contoso/Views/LogOn.ascx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Orchard.Web/Themes/Contoso/Views/LogOn.ascx b/src/Orchard.Web/Themes/Contoso/Views/LogOn.ascx index 7a62692f8..341c7ee3f 100644 --- a/src/Orchard.Web/Themes/Contoso/Views/LogOn.ascx +++ b/src/Orchard.Web/Themes/Contoso/Views/LogOn.ascx @@ -2,7 +2,7 @@ <%@ Import Namespace="Orchard.Users.ViewModels"%>

<%: Html.TitleForPage(Model.Title)%>

-

<%: T("Please enter your username and password.")%> <%: Html.ActionLink("Register", "Register")%><%: T(" if you don't have an account.")%>

+

<%: T("Please enter your username and password.")%> <%: Html.ActionLink(T("Register").ToString(), "Register")%><%: T(" if you don't have an account.")%>

<%: Html.ValidationSummary(T("Login was unsuccessful. Please correct the errors and try again.").ToString())%> <% using (Html.BeginFormAntiForgeryPost(Url.Action("LogOn", new {ReturnUrl = Request.QueryString["ReturnUrl"]}))) { %>