diff --git a/src/Umbraco.Web/UmbracoHelper.cs b/src/Umbraco.Web/UmbracoHelper.cs
index 2508d47b58..495e0a19d3 100644
--- a/src/Umbraco.Web/UmbracoHelper.cs
+++ b/src/Umbraco.Web/UmbracoHelper.cs
@@ -376,7 +376,21 @@ namespace Umbraco.Web
{
return CultureDictionary[key];
}
-
+ ///
+ /// Returns the dictionary value for the key specified, and if empty returns the specified default fall back value
+ ///
+ /// key of dictionary item
+ /// fall back text if dictionary item is empty - Name altText to match Umbraco.Field
+ ///
+ public string GetDictionaryValue(string key, string altText)
+ {
+ var dictionaryValue = GetDictionaryValue(key);
+ if (String.IsNullOrWhiteSpace(dictionaryValue))
+ {
+ dictionaryValue = altText;
+ }
+ return dictionaryValue;
+ }
///
/// Returns the ICultureDictionary for access to dictionary items
///