From b8fe08f831ce14d571a36e70293e9c1e9d894966 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Tue, 28 Oct 2014 17:21:52 -0400 Subject: [PATCH] Fix casing of message --- mayan/apps/common/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mayan/apps/common/views.py b/mayan/apps/common/views.py index 18a82b045e..2b2e87d6a4 100644 --- a/mayan/apps/common/views.py +++ b/mayan/apps/common/views.py @@ -171,7 +171,7 @@ def current_user_details(request): return render_to_response( 'main/generic_form.html', { 'form': form, - 'title': _(u'current user details'), + 'title': _(u'Current user details'), 'read_only': True, }, context_instance=RequestContext(request))