mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-14 10:54:50 +08:00
Typo corrections, courtesy of Antoine Griffard
--HG-- branch : 1.x
This commit is contained in:
@@ -10,6 +10,6 @@ Category: Content
|
||||
Features:
|
||||
Orchard.Alias.UI:
|
||||
Name: Alias UI
|
||||
Description: Admin user interace for Orchard.Alias.
|
||||
Description: Admin user interface for Orchard.Alias.
|
||||
Dependencies: Orchard.Alias
|
||||
Category: Content
|
||||
|
@@ -41,7 +41,7 @@ namespace Orchard.Projections.PropertyEditors.Forms {
|
||||
f._Format.Add(new SelectListItem { Value = "O", Text = T("Round-trip date/time pattern: 2009-06-15T13:45:30.0900000").Text });
|
||||
f._Format.Add(new SelectListItem { Value = "R", Text = T("RFC1123 pattern: Mon, 15 Jun 2009 20:45:30 GMT").Text });
|
||||
f._Format.Add(new SelectListItem { Value = "s", Text = T("Sortable date/time pattern: 2009-06-15T13:45:30").Text });
|
||||
f._Format.Add(new SelectListItem { Value = "t", Text = T("Long time pattern: 1:45 PM").Text });
|
||||
f._Format.Add(new SelectListItem { Value = "t", Text = T("Short time pattern: 1:45 PM").Text });
|
||||
f._Format.Add(new SelectListItem { Value = "T", Text = T("Long time pattern: 1:45:30 PM").Text });
|
||||
f._Format.Add(new SelectListItem { Value = "u", Text = T("Universal sortable date/time pattern: 2009-06-15 20:45:30Z").Text });
|
||||
f._Format.Add(new SelectListItem { Value = "U", Text = T("Universal full date/time pattern: Monday, June 15, 2009 8:45:30 PM").Text });
|
||||
@@ -50,7 +50,7 @@ namespace Orchard.Projections.PropertyEditors.Forms {
|
||||
f._Format.Add(new SelectListItem { Value = "month", Text = T("Month: 6").Text });
|
||||
f._Format.Add(new SelectListItem { Value = "year", Text = T("Year: 2009").Text });
|
||||
f._Format.Add(new SelectListItem { Value = "dayOfYear", Text = T("Day of year: 166").Text });
|
||||
f._Format.Add(new SelectListItem { Value = "ago", Text = T("Time ago").Text });
|
||||
f._Format.Add(new SelectListItem { Value = "ago", Text = T("Relative time: 1 minute ago").Text });
|
||||
|
||||
return f;
|
||||
};
|
||||
|
@@ -37,7 +37,7 @@
|
||||
<span data-controllerid="display-content-radio">
|
||||
<label for="DatabaseConnectionString">@T("Display Type")</label>
|
||||
@Html.TextBoxFor(m => m.DisplayType, new { @class = "textMedium" })
|
||||
<span class="hint">@T("The display type represents or the content item should be formatted. e.g., Summary, SummaryAdmin, Detail, ...")</span>
|
||||
<span class="hint">@T("The display type determines how the content item should be formatted. e.g., Summary, SummaryAdmin, Detail, ...")</span>
|
||||
</span>
|
||||
</div>
|
||||
|
||||
|
@@ -37,7 +37,7 @@
|
||||
<span data-controllerid="display-content-radio">
|
||||
<label for="DatabaseConnectionString">@T("Display Type")</label>
|
||||
@Html.TextBoxFor(m => m.DisplayType, new { @class = "textMedium" })
|
||||
<span class="hint">@T("The display type represents or the content item should be formatted. e.g., Summary, SummaryAdmin, Detail, ...")</span>
|
||||
<span class="hint">@T("The display type determines how the content item should be formatted. e.g., Summary, SummaryAdmin, Detail, ...")</span>
|
||||
</span>
|
||||
</div>
|
||||
|
||||
|
@@ -29,7 +29,7 @@
|
||||
<label>@T("Localization")</label>
|
||||
@Html.EditorFor(m => m.FilterCulture)
|
||||
<label class="forcheckbox" for="@Html.FieldIdFor(m => m.FilterCulture)">@T("Narrow search to current culture only")</label>
|
||||
<span class="hint">@T("Is checked, search results will only include content items localized in the current culture of the request.")</span>
|
||||
<span class="hint">@T("If checked, search results will only include content items localized in the current culture of the request.")</span>
|
||||
</div>
|
||||
|
||||
</fieldset>
|
||||
|
@@ -7,7 +7,7 @@
|
||||
<fieldset>
|
||||
@Html.LabelFor(widget => widget.LayerId, T("Layer"))
|
||||
@Html.DropDownListFor(widget => widget.LayerId, new SelectList(Model.AvailableLayers, "Id", "Name"))
|
||||
<span class="hint">@T("The Layer where the Widget when be rendered.")</span>
|
||||
<span class="hint">@T("The Layer where the Widget will be rendered.")</span>
|
||||
</fieldset>
|
||||
<fieldset>
|
||||
@Html.LabelFor(widget => widget.Position, T("Position"))
|
||||
|
Reference in New Issue
Block a user