diff --git a/src/Umbraco.Core/Persistence/Factories/ContentTypeFactory.cs b/src/Umbraco.Core/Persistence/Factories/ContentTypeFactory.cs
index 6fa13654ad..3672f80873 100644
--- a/src/Umbraco.Core/Persistence/Factories/ContentTypeFactory.cs
+++ b/src/Umbraco.Core/Persistence/Factories/ContentTypeFactory.cs
@@ -122,7 +122,7 @@ namespace Umbraco.Core.Persistence.Factories
else if (entity is IMemberType)
nodeObjectType = Constants.ObjectTypes.MemberTypeGuid;
else
- throw new Exception("oops: invalid entity.");
+ throw new Exception("Invalid entity.");
var contentTypeDto = new ContentTypeDto
{
diff --git a/src/Umbraco.Core/Persistence/Factories/MemberTypeReadOnlyFactory.cs b/src/Umbraco.Core/Persistence/Factories/MemberTypeReadOnlyFactory.cs
index 5e34fb8936..b4d5d2e566 100644
--- a/src/Umbraco.Core/Persistence/Factories/MemberTypeReadOnlyFactory.cs
+++ b/src/Umbraco.Core/Persistence/Factories/MemberTypeReadOnlyFactory.cs
@@ -79,7 +79,7 @@ namespace Umbraco.Core.Persistence.Factories
{
// note: no idea why Id is nullable here, but better check
if (groupDto.Id.HasValue == false)
- throw new Exception("oops: groupDto.Id has no value.");
+ throw new Exception("GroupDto.Id has no value.");
group.Id = groupDto.Id.Value;
}
diff --git a/src/Umbraco.Web.UI.Client/src/common/mocks/services/localization.mocks.js b/src/Umbraco.Web.UI.Client/src/common/mocks/services/localization.mocks.js
index 6365606a5a..d4393dd20b 100644
--- a/src/Umbraco.Web.UI.Client/src/common/mocks/services/localization.mocks.js
+++ b/src/Umbraco.Web.UI.Client/src/common/mocks/services/localization.mocks.js
@@ -134,7 +134,7 @@ angular.module('umbraco.mocks').
"content_nodeName": "Page Title",
"content_otherElements": "Properties",
"content_parentNotPublished": "This document is published but is not visible because the parent '%0%' is unpublished",
- "content_parentNotPublishedAnomaly": "Oops: this document is published but is not in the cache (internal error)",
+ "content_parentNotPublishedAnomaly": "This document is published but is not in the cache",
"content_publish": "Publish",
"content_publishStatus": "Publication Status",
"content_releaseDate": "Publish at",
diff --git a/src/Umbraco.Web.UI/umbraco/config/lang/en.xml b/src/Umbraco.Web.UI/umbraco/config/lang/en.xml
index 331fc3fe1f..92160e85f0 100644
--- a/src/Umbraco.Web.UI/umbraco/config/lang/en.xml
+++ b/src/Umbraco.Web.UI/umbraco/config/lang/en.xml
@@ -147,9 +147,9 @@
Page Title
Properties
This document is published but is not visible because the parent '%0%' is unpublished
- Oops: this document is published but is not in the cache (internal error - see log)
- Oops: could not get the url (internal error - see log)
- Oops: this document is published but its url would collide with content %0%
+ This document is published but is not in the cache
+ Could not get the url
+ This document is published but its url would collide with content %0%
Publish
Publication Status
Publish at
diff --git a/src/Umbraco.Web.UI/umbraco/config/lang/en_us.xml b/src/Umbraco.Web.UI/umbraco/config/lang/en_us.xml
index f0f770c99d..aa896185d3 100644
--- a/src/Umbraco.Web.UI/umbraco/config/lang/en_us.xml
+++ b/src/Umbraco.Web.UI/umbraco/config/lang/en_us.xml
@@ -148,9 +148,9 @@
Page Title
Properties
This document is published but is not visible because the parent '%0%' is unpublished
- Oops: this document is published but is not in the cache (internal error - see log)
- Oops: could not get the url (internal error - see log)
- Oops: this document is published but its url would collide with content %0%
+ This document is published but is not in the cache
+ Could not get the url
+ This document is published but its url would collide with content %0%
Publish
Publication Status
Publish at
diff --git a/src/Umbraco.Web.UI/umbraco_client/FolderBrowser/Js/folderbrowser.js b/src/Umbraco.Web.UI/umbraco_client/FolderBrowser/Js/folderbrowser.js
index 8c3d97c52b..d15c173632 100644
--- a/src/Umbraco.Web.UI/umbraco_client/FolderBrowser/Js/folderbrowser.js
+++ b/src/Umbraco.Web.UI/umbraco_client/FolderBrowser/Js/folderbrowser.js
@@ -389,12 +389,12 @@ Umbraco.Sys.registerNamespace("Umbraco.Controls");
processData: false,
success: function (data, textStatus) {
if (textStatus == "error") {
- alert("Oops. Could not update sort order");
+ alert("Could not update sort order");
self._getChildNodes();
}
},
error: function(data) {
- alert("Oops. Could not update sort order. Err: " + data.statusText);
+ alert("Could not update sort order. Err: " + data.statusText);
self._getChildNodes();
}
});