summaryrefslogtreecommitdiffstats
path: root/settings/src/components/userList.vue
diff options
context:
space:
mode:
Diffstat (limited to 'settings/src/components/userList.vue')
-rw-r--r--settings/src/components/userList.vue12
1 files changed, 5 insertions, 7 deletions
diff --git a/settings/src/components/userList.vue b/settings/src/components/userList.vue
index 8dde013885a..37c79671540 100644
--- a/settings/src/components/userList.vue
+++ b/settings/src/components/userList.vue
@@ -25,7 +25,7 @@
<div class="row" id="grid-header" :class="{'sticky': scrolled && !showConfig.showNewUserForm}">
<div id="headerAvatar" class="avatar"></div>
<div id="headerName" class="name">{{ t('settings', 'Username') }}</div>
- <div id="headerDisplayName" class="displayName">{{ t('settings', 'Full name') }}</div>
+ <div id="headerDisplayName" class="displayName">{{ t('settings', 'Display name') }}</div>
<div id="headerPassword" class="password">{{ t('settings', 'Password') }}</div>
<div id="headerAddress" class="mailAddress">{{ t('settings', 'Email') }}</div>
<div id="headerGroups" class="groups">{{ t('settings', 'Groups') }}</div>
@@ -33,7 +33,7 @@
v-if="subAdminsGroups.length>0 && settings.isAdmin">{{ t('settings', 'Group admin for') }}</div>
<div id="headerQuota" class="quota">{{ t('settings', 'Quota') }}</div>
<div id="headerLanguages" class="languages"
- v-if="showConfig.showLanguages">{{ t('settings', 'Languages') }}</div>
+ v-if="showConfig.showLanguages">{{ t('settings', 'Language') }}</div>
<div class="headerStorageLocation storageLocation"
v-if="showConfig.showStoragePath">{{ t('settings', 'Storage location') }}</div>
<div class="headerUserBackend userBackend"
@@ -49,7 +49,7 @@
<div :class="loading?'icon-loading-small':'icon-add'"></div>
<div class="name">
<input id="newusername" type="text" required v-model="newUser.id"
- :placeholder="t('settings', 'User name')" name="username"
+ :placeholder="t('settings', 'Username')" name="username"
autocomplete="off" autocapitalize="none" autocorrect="off"
pattern="[a-zA-Z0-9 _\.@\-']+">
</div>
@@ -68,7 +68,7 @@
<div class="mailAddress">
<input id="newemail" type="email" v-model="newUser.mailAddress"
:required="newUser.password===''"
- :placeholder="t('settings', 'Mail address')" name="email"
+ :placeholder="t('settings', 'Email')" name="email"
autocomplete="off" autocapitalize="none" autocorrect="off">
</div>
<div class="groups">
@@ -115,8 +115,6 @@
<div class="userActions">
<input type="submit" id="newsubmit" class="button primary icon-checkmark-white has-tooltip"
value="" :title="t('settings', 'Add a new user')">
- <input type="reset" id="newreset" class="button icon-close has-tooltip" @click="resetForm"
- value="" :title="t('settings', 'Cancel and reset the form')">
</div>
</form>
@@ -124,7 +122,7 @@
:groups="groups" :subAdminsGroups="subAdminsGroups" :quotaOptions="quotaOptions" :languages="languages" />
<infinite-loading @infinite="infiniteHandler" ref="infiniteLoading">
<div slot="spinner"><div class="users-icon-loading icon-loading"></div></div>
- <div slot="no-more"><div class="users-list-end">— {{t('settings', 'no more results')}} —</div></div>
+ <div slot="no-more"><div class="users-list-end"></div></div>
<div slot="no-results">
<div id="emptycontent">
<div class="icon-contacts-dark"></div>