diff --git a/mayan/apps/installation/views.py b/mayan/apps/installation/views.py index 503c206737..ca44712d4d 100644 --- a/mayan/apps/installation/views.py +++ b/mayan/apps/installation/views.py @@ -18,7 +18,7 @@ def namespace_list(request): return render_to_response('generic_list.html', { 'object_list': PropertyNamespace.get_all(), - 'title': _(u'installation property namespaces'), + 'title': _(u'Installation property namespaces'), 'hide_object': True, }, context_instance=RequestContext(request)) @@ -30,7 +30,7 @@ def namespace_details(request, namespace_id): namespace = PropertyNamespace.get(namespace_id) object_list = namespace.get_properties() - title = _(u'installation namespace details for: %s') % namespace.label + title = _(u'Installation namespace details for: %s') % namespace.label return render_to_response('generic_list.html', { 'object_list': object_list, diff --git a/mayan/apps/statistics/views.py b/mayan/apps/statistics/views.py index a3caf21b9b..49eb1ab577 100644 --- a/mayan/apps/statistics/views.py +++ b/mayan/apps/statistics/views.py @@ -15,7 +15,7 @@ def namespace_list(request): return render_to_response('generic_list.html', { 'object_list': StatisticNamespace.get_all(), 'hide_link': True, - 'title': _(u'statistics namespaces'), + 'title': _(u'Statistics namespaces'), 'list_object_variable_name': 'namespace', }, context_instance=RequestContext(request)) @@ -31,7 +31,7 @@ def namespace_details(request, namespace_id): 'namespace': namespace, 'object_list': namespace.statistics, 'hide_link': True, - 'title': _(u'namespace details for: %s') % namespace, + 'title': _(u'Namespace details for: %s') % namespace, 'object_name': _(u'namespace'), }, context_instance=RequestContext(request)) @@ -51,5 +51,5 @@ def execute(request, statistic_id): ], 'object_list': statictic.get_results(), 'hide_link': True, - 'title': _(u'results for: %s') % statictic, + 'title': _(u'Results for: %s') % statictic, }, context_instance=RequestContext(request))