- Fixing some error messages ...

--HG--
extra : convert_revision : svn%3A5ff7c347-ad56-4c35-b696-ccb81de16e03/trunk%4042094
This commit is contained in:
suhacan
2009-11-24 20:59:53 +00:00
parent 40d51e7b22
commit 0a0775f865

View File

@@ -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);
}
}