Converting usages of Html.LabelFor to the localizable overload.

Also inserted spaces where necessary (e.g. 'TagName' -> 'Tag Name').

--HG--
branch : dev
This commit is contained in:
Dave Reed
2010-10-19 12:12:03 -07:00
parent 15f2238c99
commit e9c5c16f6f
14 changed files with 22 additions and 22 deletions

View File

@@ -1,7 +1,7 @@
@model Orchard.Blogs.Models.BlogArchivesPart
<fieldset>
<div>
@Html.LabelFor(m => m.ForBlog)
@Html.LabelFor(m => m.ForBlog, T("For Blog"))
@Html.TextBoxFor(m => m.ForBlog)
<span class="hint">@T("Show the archives for which blog? Note: specify the blog's slug.")</span>
</div>