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/group.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ipalib/plugins/group.py') diff --git a/ipalib/plugins/group.py b/ipalib/plugins/group.py index 819d8c832..3298b2bd3 100644 --- a/ipalib/plugins/group.py +++ b/ipalib/plugins/group.py @@ -98,7 +98,7 @@ class group(LDAPObject): rdnattr = 'cn' label = _('User Groups') - label_singular = _('user group') + label_singular = _('User Group') takes_params = ( Str('cn', -- cgit