diff --git a/src/Umbraco.Web.UI/umbraco/config/lang/en.xml b/src/Umbraco.Web.UI/umbraco/config/lang/en.xml
index e373cdd713..a93152c95c 100644
--- a/src/Umbraco.Web.UI/umbraco/config/lang/en.xml
+++ b/src/Umbraco.Web.UI/umbraco/config/lang/en.xml
@@ -103,6 +103,7 @@
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)
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 20c66a95f1..a792be7131 100644
--- a/src/Umbraco.Web.UI/umbraco/config/lang/en_us.xml
+++ b/src/Umbraco.Web.UI/umbraco/config/lang/en_us.xml
@@ -102,6 +102,7 @@
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)
Publish
Publication Status
Publish at
diff --git a/src/Umbraco.Web/umbraco.presentation/umbraco/editContent.aspx.cs b/src/Umbraco.Web/umbraco.presentation/umbraco/editContent.aspx.cs
index e1bdb5f673..b342ce9080 100644
--- a/src/Umbraco.Web/umbraco.presentation/umbraco/editContent.aspx.cs
+++ b/src/Umbraco.Web/umbraco.presentation/umbraco/editContent.aspx.cs
@@ -401,7 +401,7 @@ namespace umbraco.cms.presentation
while (parent != null && parent.Published);
if (parent == null) // oops - internal error
- niceUrlText = "" + ui.Text("content", "parentNotPublished", "???", base.getUser()) + "";
+ niceUrlText = "" + ui.Text("content", "parentNotPublishedAnomaly", base.getUser()) + "";
else
niceUrlText = "" + ui.Text("content", "parentNotPublished", parent.Text, base.getUser()) + "";
}