diff --git a/src/Umbraco.Web.UI/umbraco/config/lang/en.xml b/src/Umbraco.Web.UI/umbraco/config/lang/en.xml index d808c6fbfb..6edddefe70 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..a0dec8b6a4 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 @@ -961,4 +962,4 @@ To manage your website, simply open the umbraco back office and start adding con User types Writer - + diff --git a/src/Umbraco.Web/umbraco.presentation/umbraco/editContent.aspx.cs b/src/Umbraco.Web/umbraco.presentation/umbraco/editContent.aspx.cs index 51fcca8299..0fc4268239 100644 --- a/src/Umbraco.Web/umbraco.presentation/umbraco/editContent.aspx.cs +++ b/src/Umbraco.Web/umbraco.presentation/umbraco/editContent.aspx.cs @@ -405,7 +405,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()) + ""; }