diff --git a/ckan/controllers/group.py b/ckan/controllers/group.py index 66bd533fd43..06d34496f2e 100644 --- a/ckan/controllers/group.py +++ b/ckan/controllers/group.py @@ -278,7 +278,8 @@ def pager_url(q=None, page=None): facets = OrderedDict() - default_facet_titles = {'groups': _('Groups'), + default_facet_titles = {'organization': _('Organizations'), + 'groups': _('Groups'), 'tags': _('Tags'), 'res_format': _('Formats'), 'license_id': _('License')} diff --git a/ckan/controllers/home.py b/ckan/controllers/home.py index da3d4b3901b..7aa15be87bd 100644 --- a/ckan/controllers/home.py +++ b/ckan/controllers/home.py @@ -67,6 +67,7 @@ def index(self): c.search_facets = query['search_facets'] c.facet_titles = { + 'organization': _('Organizations'), 'groups': _('Groups'), 'tags': _('Tags'), 'res_format': _('Formats'), diff --git a/ckan/lib/helpers.py b/ckan/lib/helpers.py index edd9746f0a8..9a2b83ddfb1 100644 --- a/ckan/lib/helpers.py +++ b/ckan/lib/helpers.py @@ -597,7 +597,8 @@ def get_facet_title(name): if config_title: return config_title - facet_titles = {'groups': _('Groups'), + facet_titles = {'organization': _('Organizations'), + 'groups': _('Groups'), 'tags': _('Tags'), 'res_format': _('Formats'), 'license': _('License'), }