From 4bd85ceb90d6b8639c14e68691f2c9f447980c2d Mon Sep 17 00:00:00 2001 From: "Endi S. Dewata" Date: Wed, 13 Jul 2011 21:10:47 -0500 Subject: Fixed label capitalization The CSS text-transform sometimes produces incorrect capitalization, so the code has been modified to use translated labels that already contain the correct capitalization. Ticket #1424 --- ipalib/plugins/automount.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ipalib/plugins/automount.py') diff --git a/ipalib/plugins/automount.py b/ipalib/plugins/automount.py index dcfa03559..ce30be7ec 100644 --- a/ipalib/plugins/automount.py +++ b/ipalib/plugins/automount.py @@ -188,7 +188,7 @@ class automountlocation(LDAPObject): object_class = ['nscontainer'] default_attributes = ['cn'] label = _('Automount Locations') - label_singular = _('automount location') + label_singular = _('Automount Location') takes_params = ( Str('cn', @@ -513,7 +513,7 @@ class automountmap(LDAPObject): ) label = _('Automount Maps') - label_singular = _('automount map') + label_singular = _('Automount Map') api.register(automountmap) @@ -605,7 +605,7 @@ class automountkey(LDAPObject): num_parents = 2 label = _('Automount Keys') - label_singular = _('automount key') + label_singular = _('Automount Key') already_exists_msg = _('The key,info pair must be unique. A key named %(key)s with info %(info)s already exists') key_already_exists_msg = _('key named %(key)s already exists') object_not_found_msg = _('The automount key %(key)s with info %(info)s does not exist') -- cgit