mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-11-24 08:46:48 +08:00
Fixed various typos: (#8512)
This commit is contained in:
committed by
GitHub
parent
a8de3afc0f
commit
987291c3cf
@@ -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"))
|
||||
|
||||
@@ -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));
|
||||
|
||||
@@ -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));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -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 });
|
||||
|
||||
@@ -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."); }
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user