From 475f6e293e3341f72f56bd9b75e6dc6231a10a59 Mon Sep 17 00:00:00 2001 From: Petr Vobornik Date: Thu, 24 Jul 2014 13:10:53 +0200 Subject: webui: better otp token type label https://fedorahosted.org/freeipa/ticket/4402 Reviewed-By: Endi Sukma Dewata --- install/ui/src/freeipa/otptoken.js | 4 ++-- install/ui/test/data/ipa_init.json | 4 +++- ipalib/plugins/internal.py | 8 +++++--- 3 files changed, 10 insertions(+), 6 deletions(-) diff --git a/install/ui/src/freeipa/otptoken.js b/install/ui/src/freeipa/otptoken.js index c9570a697..c32df3c00 100644 --- a/install/ui/src/freeipa/otptoken.js +++ b/install/ui/src/freeipa/otptoken.js @@ -227,8 +227,8 @@ return { name: 'type', default_value: 'totp', options: [ - { label: 'TOTP', value: 'totp' }, - { label: 'HOTP', value: 'hotp' } + { label: '@i18n:objects.otptoken.type_totp', value: 'totp' }, + { label: '@i18n:objects.otptoken.type_hotp', value: 'hotp' } ] }, { diff --git a/install/ui/test/data/ipa_init.json b/install/ui/test/data/ipa_init.json index 7f268de8d..6d1cfc54c 100644 --- a/install/ui/test/data/ipa_init.json +++ b/install/ui/test/data/ipa_init.json @@ -378,7 +378,9 @@ "otptoken": { "details": "OTP Token Settings", "disable": "Disable token", - "enable": "Enable token" + "enable": "Enable token", + "type_hotp": "Counter-based (HOTP)", + "type_totp": "Time-based (TOTP)" }, "permission": { "add_custom_attr": "Add custom attribute", diff --git a/ipalib/plugins/internal.py b/ipalib/plugins/internal.py index 9311a7263..6f110f10c 100644 --- a/ipalib/plugins/internal.py +++ b/ipalib/plugins/internal.py @@ -520,9 +520,11 @@ class i18n_messages(Command): "users": _("Users"), }, "otptoken": { - "details": "OTP Token Settings", - "disable": "Disable token", - "enable": "Enable token", + "details": _("OTP Token Settings"), + "disable": _("Disable token"), + "enable": _("Enable token"), + "type_hotp": _("Counter-based (HOTP)"), + "type_totp": _("Time-based (TOTP)"), }, "permission": { "add_custom_attr": _("Add custom attribute"), -- cgit