mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2026-02-09 09:16:41 +08:00
Changed labels of content recipe builder step.
This should make for a more consistent terminology.
This commit is contained in:
@@ -35,7 +35,7 @@ namespace Orchard.Recipes.Providers.Builders {
|
||||
}
|
||||
|
||||
public override LocalizedString DisplayName {
|
||||
get { return T("Content and Content Definitions"); }
|
||||
get { return T("Content and Content Definition"); }
|
||||
}
|
||||
|
||||
public override LocalizedString Description {
|
||||
|
||||
@@ -9,8 +9,8 @@
|
||||
<thead>
|
||||
<tr>
|
||||
<th>@T("Content Type")</th>
|
||||
<th>@T("Schema")</th>
|
||||
<th>@T("Data")</th>
|
||||
<th>@T("Content")</th>
|
||||
<th>@T("Content Definition")</th>
|
||||
</tr>
|
||||
<tr class="sub">
|
||||
<th> </th>
|
||||
@@ -25,10 +25,10 @@
|
||||
<td>@contentType.DisplayName</td>
|
||||
<td>
|
||||
<input type="hidden" name="@Html.NameFor(m => m.ContentTypes[contentTypeIndex].Name)" value="@Model.ContentTypes[contentTypeIndex].Name" />
|
||||
<input type="checkbox" class="check-schema" name="@Html.NameFor(m => m.ContentTypes[contentTypeIndex].ExportSchema)" value="true" />
|
||||
<input type="checkbox" class="check-data" name="@Html.NameFor(m => m.ContentTypes[contentTypeIndex].ExportData)" value="true" />
|
||||
</td>
|
||||
<td>
|
||||
<input type="checkbox" class="check-data" name="@Html.NameFor(m => m.ContentTypes[contentTypeIndex].ExportData)" value="true" />
|
||||
<input type="checkbox" class="check-schema" name="@Html.NameFor(m => m.ContentTypes[contentTypeIndex].ExportSchema)" value="true" />
|
||||
</td>
|
||||
</tr>
|
||||
contentTypeIndex++;
|
||||
|
||||
Reference in New Issue
Block a user