Updated Settings titles.

--HG--
branch : 1.x
This commit is contained in:
jowall
2011-04-07 11:14:46 -07:00
parent c0d8faebe1
commit 05d66c171b
9 changed files with 9 additions and 9 deletions

View File

@@ -8,7 +8,7 @@
}, "Id", "Text", (int)Model.ResourceDebugMode);
}
<fieldset>
<legend>@T("General Settings")</legend>
<legend>@T("General")</legend>
<div>
<label for="SiteName">@T("Site name")</label>
@Html.EditorFor(m => m.SiteName)

View File

@@ -2,7 +2,7 @@
@using Orchard.Comments.Models;
<fieldset>
<legend>@T("Settings for Comments")</legend>
<legend>@T("Comments")</legend>
<div>
@Html.EditorFor(m => m.ModerateComments)
<label class="forcheckbox" for="CommentSettings_ModerateComments">@T("Comments must be approved before they appear")</label>

View File

@@ -2,7 +2,7 @@
@using System.Net.Mail;
<fieldset>
<legend>@T("SMTP")</legend>
<legend>@T("Email")</legend>
<div>
<label for="@Html.FieldIdFor(m => m.Address)">@T("Sender email address")</label>
@Html.EditorFor(m => m.Address)

View File

@@ -5,7 +5,7 @@
@using (Html.BeginForm("update", "admin", FormMethod.Post, new {area = "Orchard.Indexing"})) {
<fieldset>
<legend>@T("Search Index Statistics")</legend>
<legend>@T("Search Index")</legend>
<ol class="decimal">
@if (Model.IndexEntry == null) {

View File

@@ -1,7 +1,7 @@
@model Orchard.Media.Models.MediaSettingsPartRecord
<fieldset>
<legend>@T("Settings for Media")</legend>
<legend>@T("Media")</legend>
<div>
@Html.LabelFor(m => m.UploadAllowedFileTypeWhitelist, T("Upload allowed file types (list of extensions separated by spaces)"))
@Html.TextBoxFor(m => m.UploadAllowedFileTypeWhitelist, new { @class = "textMedium" })

View File

@@ -2,7 +2,7 @@
@{ Layout.Title = T("Settings").ToString(); }
<h2>@T("Settings for Gallery")</h2>
<h2>@T("Gallery")</h2>
<div class="manage">
@Html.ActionLink(T("Add Feed").Text, "AddSource", new { }, new { @class = "button primaryAction" })
</div>

View File

@@ -2,7 +2,7 @@
@using Orchard.Search.ViewModels;
<fieldset>
<legend>@T("Settings for Search")</legend>
<legend>@T("Search")</legend>
<div>
@{var entryIndex = 0;}

View File

@@ -1,7 +1,7 @@
@model Orchard.Users.Models.RegistrationSettingsPartRecord
<fieldset>
<legend>@T("Settings for Users")</legend>
<legend>@T("Users")</legend>
<div>
@Html.EditorFor(m => m.UsersCanRegister)
<label class="forcheckbox" for="@Html.FieldIdFor( m => m.UsersCanRegister)">@T("Users can create new accounts on the site")</label>

View File

@@ -8,7 +8,7 @@
@Html.ValidationSummary()
<fieldset>
<legend>@T("Settings for Warmup")</legend>
<legend>@T("Warmup")</legend>
<div>
<label for="@Html.FieldIdFor(m => m.Urls)">@T("Urls for which static warmup pages will be generated")</label>
@Html.TextAreaFor(m => m.Urls, new { @class = "textMedium" })