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 {
|
public override LocalizedString DisplayName {
|
||||||
get { return T("Content and Content Definitions"); }
|
get { return T("Content and Content Definition"); }
|
||||||
}
|
}
|
||||||
|
|
||||||
public override LocalizedString Description {
|
public override LocalizedString Description {
|
||||||
|
|||||||
@@ -9,8 +9,8 @@
|
|||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>@T("Content Type")</th>
|
<th>@T("Content Type")</th>
|
||||||
<th>@T("Schema")</th>
|
<th>@T("Content")</th>
|
||||||
<th>@T("Data")</th>
|
<th>@T("Content Definition")</th>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="sub">
|
<tr class="sub">
|
||||||
<th> </th>
|
<th> </th>
|
||||||
@@ -25,10 +25,10 @@
|
|||||||
<td>@contentType.DisplayName</td>
|
<td>@contentType.DisplayName</td>
|
||||||
<td>
|
<td>
|
||||||
<input type="hidden" name="@Html.NameFor(m => m.ContentTypes[contentTypeIndex].Name)" value="@Model.ContentTypes[contentTypeIndex].Name" />
|
<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>
|
||||||
<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>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
contentTypeIndex++;
|
contentTypeIndex++;
|
||||||
|
|||||||
Reference in New Issue
Block a user