diff --git a/src/Orchard.Web/Modules/Orchard.Taxonomies/Views/DefinitionTemplates/TaxonomyFieldSettings.cshtml b/src/Orchard.Web/Modules/Orchard.Taxonomies/Views/DefinitionTemplates/TaxonomyFieldSettings.cshtml index 60a5016f2..71d072e4c 100644 --- a/src/Orchard.Web/Modules/Orchard.Taxonomies/Views/DefinitionTemplates/TaxonomyFieldSettings.cshtml +++ b/src/Orchard.Web/Modules/Orchard.Taxonomies/Views/DefinitionTemplates/TaxonomyFieldSettings.cshtml @@ -19,7 +19,7 @@
@Html.CheckBoxFor(m => m.LeavesOnly)
- + @Html.CheckBoxFor(m => m.SingleChoice) diff --git a/src/Orchard.Web/Modules/Orchard.Taxonomies/Views/EditorTemplates/Parts/Taxonomies.Term.Fields.cshtml b/src/Orchard.Web/Modules/Orchard.Taxonomies/Views/EditorTemplates/Parts/Taxonomies.Term.Fields.cshtml index 45f26611e..60dc78494 100644 --- a/src/Orchard.Web/Modules/Orchard.Taxonomies/Views/EditorTemplates/Parts/Taxonomies.Term.Fields.cshtml +++ b/src/Orchard.Web/Modules/Orchard.Taxonomies/Views/EditorTemplates/Parts/Taxonomies.Term.Fields.cshtml @@ -8,5 +8,5 @@
@Html.LabelFor(m => m.Weight) @Html.TextBoxFor(m => m.Weight, new { @class = "text-small" }) - @T("If specified, will be used to sort terms at the same level") + @T("If specified, it will be used to sort terms at the same level")
diff --git a/src/Orchard.Web/Modules/Orchard.Taxonomies/Views/TermAdmin/Merge.cshtml b/src/Orchard.Web/Modules/Orchard.Taxonomies/Views/TermAdmin/Merge.cshtml index e04b3256a..780428a27 100644 --- a/src/Orchard.Web/Modules/Orchard.Taxonomies/Views/TermAdmin/Merge.cshtml +++ b/src/Orchard.Web/Modules/Orchard.Taxonomies/Views/TermAdmin/Merge.cshtml @@ -5,7 +5,7 @@ @using (Html.BeginFormAntiForgeryPost()) { @Html.ValidationSummary()
-

@T("You are going to merge the terms '{0}' into the term you select below, please be aware that this term will then be delete", string.Join(", ", Model.TermsToMerge.Select(o => o.Name)))

+

@T("You are going to merge the terms '{0}' into the term you select below. Please be aware that this term will then be deleted.", string.Join(", ", Model.TermsToMerge.Select(o => o.Name)))