From 2a6937bfc2c2e3d4b2844a13277daf97aebd2761 Mon Sep 17 00:00:00 2001 From: Bertrand Le Roy Date: Tue, 5 Feb 2013 10:42:01 -0800 Subject: [PATCH] Typo corrections, courtesy of Antoine Griffard --HG-- branch : 1.x --- src/Orchard.Web/Modules/Orchard.Alias/Module.txt | 2 +- .../PropertyEditors/Forms/DateTimePropertyForm.cs | 4 ++-- .../Modules/Orchard.Projections/Views/Layout/Create.cshtml | 2 +- .../Modules/Orchard.Projections/Views/Layout/Edit.cshtml | 2 +- .../Views/EditorTemplates/Parts/Search.SiteSettings.cshtml | 2 +- .../Views/EditorTemplates/Parts.Widgets.WidgetPart.cshtml | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/Orchard.Web/Modules/Orchard.Alias/Module.txt b/src/Orchard.Web/Modules/Orchard.Alias/Module.txt index 92a82533f..2d1891c5a 100644 --- a/src/Orchard.Web/Modules/Orchard.Alias/Module.txt +++ b/src/Orchard.Web/Modules/Orchard.Alias/Module.txt @@ -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 diff --git a/src/Orchard.Web/Modules/Orchard.Projections/PropertyEditors/Forms/DateTimePropertyForm.cs b/src/Orchard.Web/Modules/Orchard.Projections/PropertyEditors/Forms/DateTimePropertyForm.cs index 04d1876c2..c9566f86c 100644 --- a/src/Orchard.Web/Modules/Orchard.Projections/PropertyEditors/Forms/DateTimePropertyForm.cs +++ b/src/Orchard.Web/Modules/Orchard.Projections/PropertyEditors/Forms/DateTimePropertyForm.cs @@ -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; }; diff --git a/src/Orchard.Web/Modules/Orchard.Projections/Views/Layout/Create.cshtml b/src/Orchard.Web/Modules/Orchard.Projections/Views/Layout/Create.cshtml index 25c114da9..ddfaa4a9d 100644 --- a/src/Orchard.Web/Modules/Orchard.Projections/Views/Layout/Create.cshtml +++ b/src/Orchard.Web/Modules/Orchard.Projections/Views/Layout/Create.cshtml @@ -37,7 +37,7 @@ @Html.TextBoxFor(m => m.DisplayType, new { @class = "textMedium" }) - @T("The display type represents or the content item should be formatted. e.g., Summary, SummaryAdmin, Detail, ...") + @T("The display type determines how the content item should be formatted. e.g., Summary, SummaryAdmin, Detail, ...") diff --git a/src/Orchard.Web/Modules/Orchard.Projections/Views/Layout/Edit.cshtml b/src/Orchard.Web/Modules/Orchard.Projections/Views/Layout/Edit.cshtml index b8a288df6..5ae13ed8d 100644 --- a/src/Orchard.Web/Modules/Orchard.Projections/Views/Layout/Edit.cshtml +++ b/src/Orchard.Web/Modules/Orchard.Projections/Views/Layout/Edit.cshtml @@ -37,7 +37,7 @@ @Html.TextBoxFor(m => m.DisplayType, new { @class = "textMedium" }) - @T("The display type represents or the content item should be formatted. e.g., Summary, SummaryAdmin, Detail, ...") + @T("The display type determines how the content item should be formatted. e.g., Summary, SummaryAdmin, Detail, ...") diff --git a/src/Orchard.Web/Modules/Orchard.Search/Views/EditorTemplates/Parts/Search.SiteSettings.cshtml b/src/Orchard.Web/Modules/Orchard.Search/Views/EditorTemplates/Parts/Search.SiteSettings.cshtml index 50bcc9cc6..ebda47b6d 100644 --- a/src/Orchard.Web/Modules/Orchard.Search/Views/EditorTemplates/Parts/Search.SiteSettings.cshtml +++ b/src/Orchard.Web/Modules/Orchard.Search/Views/EditorTemplates/Parts/Search.SiteSettings.cshtml @@ -29,7 +29,7 @@ @Html.EditorFor(m => m.FilterCulture) - @T("Is checked, search results will only include content items localized in the current culture of the request.") + @T("If checked, search results will only include content items localized in the current culture of the request.") diff --git a/src/Orchard.Web/Modules/Orchard.Widgets/Views/EditorTemplates/Parts.Widgets.WidgetPart.cshtml b/src/Orchard.Web/Modules/Orchard.Widgets/Views/EditorTemplates/Parts.Widgets.WidgetPart.cshtml index 3abb6654d..c3df93801 100644 --- a/src/Orchard.Web/Modules/Orchard.Widgets/Views/EditorTemplates/Parts.Widgets.WidgetPart.cshtml +++ b/src/Orchard.Web/Modules/Orchard.Widgets/Views/EditorTemplates/Parts.Widgets.WidgetPart.cshtml @@ -7,7 +7,7 @@
@Html.LabelFor(widget => widget.LayerId, T("Layer")) @Html.DropDownListFor(widget => widget.LayerId, new SelectList(Model.AvailableLayers, "Id", "Name")) - @T("The Layer where the Widget when be rendered.") + @T("The Layer where the Widget will be rendered.")
@Html.LabelFor(widget => widget.Position, T("Position"))