Fixing some titles to start with uppercase.

This commit is contained in:
Mathias Behrle
2014-07-10 01:15:48 +02:00
parent 8fca5e2789
commit d4ab7f9de9
2 changed files with 5 additions and 5 deletions

View File

@@ -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,