Skip to content

Commit 94e0ef3

Browse files
authored
chore(i18n): Remove strings from i18n and adapted casing
Reported at Transifex Signed-off-by: rakekniven <[email protected]>
1 parent 590d839 commit 94e0ef3

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

apps/user_ldap/src/components/SettingsTabs/ServerTab.vue

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
type="switch"
1111
:aria-label="t('user_ldap', 'When unchecked, this configuration will be skipped.')"
1212
@update:model-value="ldapConfigProxy.ldapConfigurationActive = $event ? '1' : '0'">
13-
{{ t('user_ldap', 'Configuration Active') }}
13+
{{ t('user_ldap', 'Configuration active') }}
1414
</NcCheckboxRadioSwitch>
1515

1616
<NcButton
@@ -36,19 +36,19 @@
3636
:model-value="ldapConfigProxy.ldapHost"
3737
:helper-text="t('user_ldap', 'You can omit the protocol, unless you require SSL. If so, start with ldaps://')"
3838
:label="t('user_ldap', 'Host')"
39-
:placeholder="t('user_ldap', 'ldaps://localhost')"
39+
:placeholder="'ldaps://localhost'"
4040
autocomplete="off"
4141
@change="(event) => ldapConfigProxy.ldapHost = event.target.value" />
4242
<div class="ldap-wizard__server__host__port">
4343
<NcTextField
4444
:model-value="ldapConfigProxy.ldapPort"
4545
:label="t('user_ldap', 'Port')"
46-
:placeholder="t('user_ldap', '389')"
46+
:placeholder="389"
4747
type="number"
4848
autocomplete="off"
4949
@change="(event) => ldapConfigProxy.ldapPort = event.target.value" />
5050
<NcButton :disabled="loadingGuessPortAndTLS" @click="guessPortAndTLS">
51-
{{ t('user_ldap', 'Detect Port') }}
51+
{{ t('user_ldap', 'Detect port') }}
5252
</NcButton>
5353
</div>
5454
</div>
@@ -58,7 +58,7 @@
5858
v-model="localLdapAgentName"
5959
: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.')"
6060
: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"
6262
autocomplete="off" />
6363
</div>
6464

@@ -71,7 +71,7 @@
7171
autocomplete="off" />
7272

7373
<NcButton :disabled="!needsToSaveCredentials" @click="updateCredentials">
74-
{{ t('user_ldap', 'Save Credentials') }}
74+
{{ t('user_ldap', 'Save credentials') }}
7575
</NcButton>
7676
</div>
7777

0 commit comments

Comments
 (0)