Fixed various typos: (#8512)

This commit is contained in:
Andrea Piovanelli
2021-10-29 08:39:38 +02:00
committed by GitHub
parent a8de3afc0f
commit 987291c3cf
5 changed files with 5 additions and 5 deletions

View File

@@ -22,7 +22,7 @@
<fieldset>
@Html.LabelFor(m => m.EnablePositioning, @T("Enable drag and drop"))
@Html.EditorFor(m => m.EnablePositioning)
<span class="hint">@T("Check this option to enable manual repositioning of items using. If not set, this option will be configurable on the list content item itself.")</span>
<span class="hint">@T("Check this option to enable manual repositioning of items using drag and drop. If not set, this option will be configurable on the content item itself.")</span>
</fieldset>
<fieldset>
@Html.LabelFor(m => m.AdminListViewName, @T("List View"))

View File

@@ -147,7 +147,7 @@ namespace Orchard.Azure.MediaServices.Controllers {
_transactionManager.Cancel();
Logger.Error(ex, "Error while deleting asset with ID {0}.", id);
_notifier.Error(T("Ar error occurred while deleting the asset '{0}':\n{1}", asset.Name, ex.Message));
_notifier.Error(T("An error occurred while deleting the asset '{0}':\n{1}", asset.Name, ex.Message));
}
return Redirect(Url.ItemEditUrl(cloudVideoPart));

View File

@@ -164,7 +164,7 @@ namespace Orchard.Azure.MediaServices.Controllers {
_transactionManager.Cancel();
Logger.Error(ex, "Error while creating job with task of type {0} on cloud video item with ID {1}.", task, id);
_notifier.Error(T("Ar error occurred while creating the job:\n{0}", ex.Message));
_notifier.Error(T("An error occurred while creating the job:\n{0}", ex.Message));
}
}

View File

@@ -154,7 +154,7 @@ namespace Orchard.Azure.MediaServices.Controllers {
_transactionManager.Cancel();
Logger.Error(ex, "Error while saving cloud video item with ID {0}.", part.Id);
_notifier.Error(T("Ar error occurred while saving the cloud video item:\n{1}", ex.Message));
_notifier.Error(T("An error occurred while saving the cloud video item:\n{0}", ex.Message));
}
return RedirectToAction("Edit", new { id = part.Id });

View File

@@ -128,7 +128,7 @@ namespace Orchard.Users.Activities {
}
public override LocalizedString Description {
get { return T("User send challenge email."); }
get { return T("User sent challenge email."); }
}
}