From 9cf311db1d056e7a4a53490932dd4d1f8e4bd26c Mon Sep 17 00:00:00 2001 From: Nathaniel McCallum Date: Mon, 10 Feb 2014 11:39:53 -0500 Subject: Fix OTP token names/labels https://fedorahosted.org/freeipa/ticket/4171 Reviewed-By: Alexander Bokovoy --- ipalib/plugins/otptoken.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ipalib/plugins') diff --git a/ipalib/plugins/otptoken.py b/ipalib/plugins/otptoken.py index 67f24859..7462ca9f 100644 --- a/ipalib/plugins/otptoken.py +++ b/ipalib/plugins/otptoken.py @@ -99,7 +99,7 @@ class otptoken(LDAPObject): OTP Token object. """ container_dn = api.env.container_otp - object_name = _('OTP tokens') + object_name = _('OTP token') object_name_plural = _('OTP tokens') object_class = ['ipatoken'] possible_objectclasses = ['ipatokentotp'] @@ -110,8 +110,8 @@ class otptoken(LDAPObject): ] rdn_is_primary_key = True - label = _('OTP tokens') - label_singular = _('OTP token') + label = _('OTP Tokens') + label_singular = _('OTP Token') takes_params = ( Str('ipatokenuniqueid', -- cgit