mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-09-22 20:13:50 +08:00
Updated Settings titles.
--HG-- branch : 1.x
This commit is contained in:
@@ -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)
|
||||
|
@@ -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>
|
||||
|
@@ -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)
|
||||
|
@@ -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) {
|
||||
|
||||
|
@@ -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" })
|
||||
|
@@ -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>
|
||||
|
@@ -2,7 +2,7 @@
|
||||
@using Orchard.Search.ViewModels;
|
||||
|
||||
<fieldset>
|
||||
<legend>@T("Settings for Search")</legend>
|
||||
<legend>@T("Search")</legend>
|
||||
<div>
|
||||
@{var entryIndex = 0;}
|
||||
|
||||
|
@@ -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>
|
||||
|
@@ -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" })
|
||||
|
Reference in New Issue
Block a user