mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-09-19 18:27:55 +08:00
- Fixing some error messages ...
--HG-- extra : convert_revision : svn%3A5ff7c347-ad56-4c35-b696-ccb81de16e03/trunk%4042094
This commit is contained in:
@@ -94,7 +94,7 @@ namespace Orchard.Tags.Controllers {
|
||||
return RedirectToAction("Index");
|
||||
}
|
||||
catch (Exception exception) {
|
||||
_notifier.Error(T("Creating Tag failed: " + exception.Message));
|
||||
_notifier.Error(T("Creating tag failed: " + exception.Message));
|
||||
return View(viewModel);
|
||||
}
|
||||
}
|
||||
@@ -110,7 +110,7 @@ namespace Orchard.Tags.Controllers {
|
||||
|
||||
}
|
||||
catch (Exception exception) {
|
||||
_notifier.Error(T("Editing tag failed: " + exception.Message));
|
||||
_notifier.Error(T("Retrieving tag information failed: " + exception.Message));
|
||||
return Index();
|
||||
}
|
||||
}
|
||||
@@ -127,7 +127,7 @@ namespace Orchard.Tags.Controllers {
|
||||
return RedirectToAction("Index");
|
||||
}
|
||||
catch (Exception exception) {
|
||||
_notifier.Error(T("Editing Comment failed: " + exception.Message));
|
||||
_notifier.Error(T("Editing tag failed: " + exception.Message));
|
||||
return View(viewModel);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user