Changed labels of content recipe builder step.

This should make for a more consistent terminology.
This commit is contained in:
Sipke Schoorstra
2015-07-30 23:13:19 +01:00
parent 2a2aba9548
commit 64077ae09a
2 changed files with 5 additions and 5 deletions

View File

@@ -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 {

View File

@@ -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>&nbsp;</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++;