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/dns.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ipalib/plugins/dns.py') diff --git a/ipalib/plugins/dns.py b/ipalib/plugins/dns.py index e7a0a05a..2928a900 100644 --- a/ipalib/plugins/dns.py +++ b/ipalib/plugins/dns.py @@ -286,7 +286,7 @@ class dnszone(LDAPObject): 'idnssoaminimum' ] + _record_attributes label = _('DNS Zones') - label_singular = _('DNS zone') + label_singular = _('DNS Zone') takes_params = ( Str('idnsname', @@ -544,7 +544,7 @@ class dnsrecord(LDAPObject): default_attributes = _record_attributes + ['idnsname'] label = _('DNS Resource Records') - label_singular = _('DNS resource record') + label_singular = _('DNS Resource Record') takes_params = ( Str('idnsname', -- cgit