summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/locales/en-US.json2
-rw-r--r--src/views/SecurityAndAccess/Ldap/Ldap.vue4
2 files changed, 4 insertions, 2 deletions
diff --git a/src/locales/en-US.json b/src/locales/en-US.json
index ff988225..7c86d498 100644
--- a/src/locales/en-US.json
+++ b/src/locales/en-US.json
@@ -499,6 +499,7 @@
"ldapSettings": "LDAP settings"
},
"form": {
+ "activeDirectory": "Active Directory",
"baseDn": "Base DN",
"bindDn": "Bind DN",
"bindPassword": "Bind password",
@@ -507,6 +508,7 @@
"ldapAuthentication": "LDAP authentication",
"ldapCertificateValidUntil": "LDAP Certificate valid until",
"manageSslCertificates": "Manage SSL certificates",
+ "openLDAP": "OpenLDAP",
"secureLdapHelper": "A CA certificate and an LDAP certificate are required to enable secure LDAP",
"secureLdapUsingSsl": "Secure LDAP using SSL",
"serverUri": "Server URI",
diff --git a/src/views/SecurityAndAccess/Ldap/Ldap.vue b/src/views/SecurityAndAccess/Ldap/Ldap.vue
index 1f2108de..9d62da34 100644
--- a/src/views/SecurityAndAccess/Ldap/Ldap.vue
+++ b/src/views/SecurityAndAccess/Ldap/Ldap.vue
@@ -78,7 +78,7 @@
:value="false"
@change="onChangeServiceType"
>
- OpenLDAP
+ {{ $t('pageLdap.form.openLDAP') }}
</b-form-radio>
<b-form-radio
v-model="form.activeDirectoryEnabled"
@@ -86,7 +86,7 @@
:value="true"
@change="onChangeServiceType"
>
- Active Directory
+ {{ $t('pageLdap.form.activeDirectory') }}
</b-form-radio>
</b-form-group>
</b-col>