diff options
author | Endi S. Dewata <edewata@redhat.com> | 2011-07-13 21:10:47 -0500 |
---|---|---|
committer | Adam Young <ayoung@redhat.com> | 2011-07-14 11:44:48 -0400 |
commit | 4bd85ceb90d6b8639c14e68691f2c9f447980c2d (patch) | |
tree | 0d114ff0faea534d6f3e2b81e35d25196ef5f2e7 /ipalib/plugins/automount.py | |
parent | a746c613a4fb3d0eed5c73455ebb2e674ed7793d (diff) | |
download | freeipa-4bd85ceb90d6b8639c14e68691f2c9f447980c2d.tar.gz freeipa-4bd85ceb90d6b8639c14e68691f2c9f447980c2d.tar.xz freeipa-4bd85ceb90d6b8639c14e68691f2c9f447980c2d.zip |
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
Diffstat (limited to 'ipalib/plugins/automount.py')
-rw-r--r-- | ipalib/plugins/automount.py | 6 |
1 files changed, 3 insertions, 3 deletions
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') |