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/host.py | |
parent | a746c613a4fb3d0eed5c73455ebb2e674ed7793d (diff) | |
download | freeipa.git-4bd85ceb90d6b8639c14e68691f2c9f447980c2d.tar.gz freeipa.git-4bd85ceb90d6b8639c14e68691f2c9f447980c2d.tar.xz freeipa.git-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/host.py')
-rw-r--r-- | ipalib/plugins/host.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ipalib/plugins/host.py b/ipalib/plugins/host.py index 37d906d4..5cd1056e 100644 --- a/ipalib/plugins/host.py +++ b/ipalib/plugins/host.py @@ -244,7 +244,7 @@ class host(LDAPObject): } label = _('Hosts') - label_singular = _('host') + label_singular = _('Host') takes_params = ( Str('fqdn', validate_host, |