diff --git a/src/Umbraco.Core/EmbeddedResources/Lang/en.xml b/src/Umbraco.Core/EmbeddedResources/Lang/en.xml index 86890d7fe8..5763fcbd50 100644 --- a/src/Umbraco.Core/EmbeddedResources/Lang/en.xml +++ b/src/Umbraco.Core/EmbeddedResources/Lang/en.xml @@ -578,6 +578,7 @@ Parent item does not exist. There are no dictionary items. There are no dictionary items in this file. + There were no dictionary items found. Create dictionary item diff --git a/src/Umbraco.Core/EmbeddedResources/Lang/en_us.xml b/src/Umbraco.Core/EmbeddedResources/Lang/en_us.xml index 9641fda47f..6d9911512e 100644 --- a/src/Umbraco.Core/EmbeddedResources/Lang/en_us.xml +++ b/src/Umbraco.Core/EmbeddedResources/Lang/en_us.xml @@ -588,6 +588,7 @@ Parent item does not exist. There are no dictionary items. There are no dictionary items in this file. + There were no dictionary items found. Create dictionary item diff --git a/src/Umbraco.Web.UI.Client/src/views/dictionary/dictionary.list.controller.js b/src/Umbraco.Web.UI.Client/src/views/dictionary/dictionary.list.controller.js index 669a0d5183..a6121e3afb 100644 --- a/src/Umbraco.Web.UI.Client/src/views/dictionary/dictionary.list.controller.js +++ b/src/Umbraco.Web.UI.Client/src/views/dictionary/dictionary.list.controller.js @@ -10,7 +10,10 @@ function DictionaryListController($scope, $location, dictionaryResource, localiz var vm = this; vm.title = "Dictionary overview"; vm.loading = false; - vm.items = []; + vm.items = []; + vm.filter = { + searchTerm: "" + }; function loadList() { diff --git a/src/Umbraco.Web.UI.Client/src/views/dictionary/list.html b/src/Umbraco.Web.UI.Client/src/views/dictionary/list.html index 14628a49e3..43fe6c45ec 100644 --- a/src/Umbraco.Web.UI.Client/src/views/dictionary/list.html +++ b/src/Umbraco.Web.UI.Client/src/views/dictionary/list.html @@ -23,6 +23,13 @@ + + + + + @@ -44,7 +51,7 @@ - + @@ -62,6 +69,11 @@ + + + There were no dictionary items found. +