From d253c8137dc632fe58b174c16b750a568894820d Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 8 Oct 2014 10:16:06 -0400 Subject: [PATCH] Issue #39, Fix capitalization of common app links --- mayan/apps/common/links.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/mayan/apps/common/links.py b/mayan/apps/common/links.py index dda8088758..70669d0a36 100644 --- a/mayan/apps/common/links.py +++ b/mayan/apps/common/links.py @@ -7,9 +7,9 @@ def has_usable_password(context): return context['request'].user.has_usable_password -link_password_change = {'text': _(u'change password'), 'view': 'common:password_change_view', 'famfam': 'computer_key', 'condition': has_usable_password} -link_current_user_details = {'text': _(u'user details'), 'view': 'common:current_user_details', 'famfam': 'vcard'} -link_current_user_edit = {'text': _(u'edit details'), 'view': 'common:current_user_edit', 'famfam': 'vcard_edit'} +link_password_change = {'text': _(u'Change password'), 'view': 'common:password_change_view', 'famfam': 'computer_key', 'condition': has_usable_password} +link_current_user_details = {'text': _(u'User details'), 'view': 'common:current_user_details', 'famfam': 'vcard'} +link_current_user_edit = {'text': _(u'Edit details'), 'view': 'common:current_user_edit', 'famfam': 'vcard_edit'} -link_about = {'text': _(u'about'), 'view': 'common:about_view', 'famfam': 'information'} -link_license = {'text': _(u'license'), 'view': 'common:license_view', 'famfam': 'script'} +link_about = {'text': _(u'About'), 'view': 'common:about_view', 'famfam': 'information'} +link_license = {'text': _(u'License'), 'view': 'common:license_view', 'famfam': 'script'}