|
10 | 10 | type="switch" |
11 | 11 | :aria-label="t('user_ldap', 'When unchecked, this configuration will be skipped.')" |
12 | 12 | @update:model-value="ldapConfigProxy.ldapConfigurationActive = $event ? '1' : '0'"> |
13 | | - {{ t('user_ldap', 'Configuration Active') }} |
| 13 | + {{ t('user_ldap', 'Configuration active') }} |
14 | 14 | </NcCheckboxRadioSwitch> |
15 | 15 |
|
16 | 16 | <NcButton |
|
36 | 36 | :model-value="ldapConfigProxy.ldapHost" |
37 | 37 | :helper-text="t('user_ldap', 'You can omit the protocol, unless you require SSL. If so, start with ldaps://')" |
38 | 38 | :label="t('user_ldap', 'Host')" |
39 | | - :placeholder="t('user_ldap', 'ldaps://localhost')" |
| 39 | + :placeholder="'ldaps://localhost'" |
40 | 40 | autocomplete="off" |
41 | 41 | @change="(event) => ldapConfigProxy.ldapHost = event.target.value" /> |
42 | 42 | <div class="ldap-wizard__server__host__port"> |
43 | 43 | <NcTextField |
44 | 44 | :model-value="ldapConfigProxy.ldapPort" |
45 | 45 | :label="t('user_ldap', 'Port')" |
46 | | - :placeholder="t('user_ldap', '389')" |
| 46 | + :placeholder="389" |
47 | 47 | type="number" |
48 | 48 | autocomplete="off" |
49 | 49 | @change="(event) => ldapConfigProxy.ldapPort = event.target.value" /> |
50 | 50 | <NcButton :disabled="loadingGuessPortAndTLS" @click="guessPortAndTLS"> |
51 | | - {{ t('user_ldap', 'Detect Port') }} |
| 51 | + {{ t('user_ldap', 'Detect port') }} |
52 | 52 | </NcButton> |
53 | 53 | </div> |
54 | 54 | </div> |
|
58 | 58 | v-model="localLdapAgentName" |
59 | 59 | :helper-text="t('user_ldap', 'The DN of the client user with which the bind shall be done. For anonymous access, leave DN and Password empty.')" |
60 | 60 | :label="t('user_ldap', 'User DN')" |
61 | | - :placeholder="t('user_ldap', 'uid=agent,dc=example,dc=com')" |
| 61 | + :placeholder="t('uid=agent,dc=example,dc=com" |
62 | 62 | autocomplete="off" /> |
63 | 63 | </div> |
64 | 64 |
|
|
71 | 71 | autocomplete="off" /> |
72 | 72 |
|
73 | 73 | <NcButton :disabled="!needsToSaveCredentials" @click="updateCredentials"> |
74 | | - {{ t('user_ldap', 'Save Credentials') }} |
| 74 | + {{ t('user_ldap', 'Save credentials') }} |
75 | 75 | </NcButton> |
76 | 76 | </div> |
77 | 77 |
|
|
0 commit comments