From 7452b6d3cba288b10fe3452f9ee93d052fd45ebc Mon Sep 17 00:00:00 2001 From: "Endi S. Dewata" Date: Fri, 24 Jun 2011 11:39:48 -0500 Subject: Fixed entity labels. The entity labels in the following locations have been fixed: - search facet title: plural - details facet title: singular - association facet title: singular - breadcrumb: plural - adder dialog title: singular - deleter dialog title: plural Some entity labels have been changed into the correct plural form. Unused file install/ui/test/data/i18n_messages.json has been removed. Ticket #1249 Ticket #1387 --- 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 d5cffe46..2bba446d 100644 --- a/ipalib/plugins/dns.py +++ b/ipalib/plugins/dns.py @@ -282,7 +282,7 @@ class dnszone(LDAPObject): 'idnssoaserial', 'idnssoarefresh', 'idnssoaretry', 'idnssoaexpire', 'idnssoaminimum' ] + _record_attributes - label = _('DNS') + label = _('DNS Zones') label_singular = _('DNS zone') takes_params = ( @@ -521,7 +521,7 @@ class dnsrecord(LDAPObject): object_class = ['top', 'idnsrecord'] default_attributes = _record_attributes + ['idnsname'] - label = _('DNS resource record') + label = _('DNS Resource Records') label_singular = _('DNS resource record') takes_params = ( -- cgit