summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--install/ui/src/freeipa/otptoken.js4
-rw-r--r--install/ui/test/data/ipa_init.json4
-rw-r--r--ipalib/plugins/internal.py8
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"),