mirror of
https://github.com/nextcloud/server.git
synced 2026-06-08 16:26:59 -04:00
Merge pull request #45398 from nextcloud/chore/account-name
chore(settings): Change "user" to "account"
This commit is contained in:
commit
5a6e48e850
14 changed files with 27 additions and 27 deletions
|
|
@ -160,17 +160,17 @@
|
|||
<NcCheckboxRadioSwitch type="switch"
|
||||
aria-controls="settings-sharing-privacy-user-enumeration"
|
||||
:checked.sync="settings.allowShareDialogUserEnumeration">
|
||||
{{ t('settings', 'Allow username autocompletion in share dialog and allow access to the system address book') }}
|
||||
{{ t('settings', 'Allow account name autocompletion in share dialog and allow access to the system address book') }}
|
||||
</NcCheckboxRadioSwitch>
|
||||
<fieldset v-show="settings.allowShareDialogUserEnumeration" id="settings-sharing-privacy-user-enumeration" class="sharing__sub-section">
|
||||
<em>
|
||||
{{ t('settings', 'If autocompletion "same group" and "phone number integration" are enabled a match in either is enough to show the user.') }}
|
||||
</em>
|
||||
<NcCheckboxRadioSwitch :checked.sync="settings.restrictUserEnumerationToGroup">
|
||||
{{ t('settings', 'Allow username autocompletion to users within the same groups and limit system address books to users in the same groups') }}
|
||||
{{ t('settings', 'Allow account name autocompletion to users within the same groups and limit system address books to users in the same groups') }}
|
||||
</NcCheckboxRadioSwitch>
|
||||
<NcCheckboxRadioSwitch :checked.sync="settings.restrictUserEnumerationToPhone">
|
||||
{{ t('settings', 'Allow username autocompletion to users based on phone number integration') }}
|
||||
{{ t('settings', 'Allow account name autocompletion to users based on phone number integration') }}
|
||||
</NcCheckboxRadioSwitch>
|
||||
</fieldset>
|
||||
|
||||
|
|
|
|||
|
|
@ -220,9 +220,9 @@ export default {
|
|||
|
||||
usernameLabel() {
|
||||
if (this.settings.newUserGenerateUserID) {
|
||||
return t('settings', 'Username will be autogenerated')
|
||||
return t('settings', 'Account name will be autogenerated')
|
||||
}
|
||||
return t('settings', 'Username (required)')
|
||||
return t('settings', 'Account name (required)')
|
||||
},
|
||||
|
||||
minPasswordLength() {
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
data-cy-user-list-header-username
|
||||
scope="col">
|
||||
<span>
|
||||
{{ t('settings', 'Username') }}
|
||||
{{ t('settings', 'Account name') }}
|
||||
</span>
|
||||
</th>
|
||||
<th class="header__cell"
|
||||
|
|
@ -81,7 +81,7 @@
|
|||
data-cy-user-list-header-storage-location
|
||||
scope="col">
|
||||
<span v-if="showConfig.showUserBackend">
|
||||
{{ t('settings', 'User backend') }}
|
||||
{{ t('settings', 'Account backend') }}
|
||||
</span>
|
||||
<span v-if="showConfig.showStoragePath"
|
||||
class="header__subtitle">
|
||||
|
|
|
|||
|
|
@ -238,9 +238,9 @@ export default {
|
|||
},
|
||||
loginText() {
|
||||
if (this.emailEnabled) {
|
||||
return t('core', 'Login with username or email')
|
||||
return t('core', 'Login with account name or email')
|
||||
}
|
||||
return t('core', 'Login with username')
|
||||
return t('core', 'Login with account name')
|
||||
},
|
||||
},
|
||||
|
||||
|
|
|
|||
|
|
@ -108,7 +108,7 @@ describe('Header: Ensure regular users do not have admin settings in the Setting
|
|||
// I see that the "Apps" item in the Settings menu is shown
|
||||
cy.contains('li', 'Apps').should('be.visible')
|
||||
// I see that the "Users" item in the Settings menu is shown
|
||||
cy.contains('li', 'Users').should('be.visible')
|
||||
cy.contains('li', 'Accounts').should('be.visible')
|
||||
// I see that the "Help" item in the Settings menu is shown
|
||||
cy.contains('li', 'Help').should('be.visible')
|
||||
// I see that the "Log out" item in the Settings menu is shown
|
||||
|
|
|
|||
6
dist/core-login.js
vendored
6
dist/core-login.js
vendored
File diff suppressed because one or more lines are too long
2
dist/core-login.js.map
vendored
2
dist/core-login.js.map
vendored
File diff suppressed because one or more lines are too long
6
dist/settings-users-3239.js
vendored
6
dist/settings-users-3239.js
vendored
File diff suppressed because one or more lines are too long
2
dist/settings-users-3239.js.map
vendored
2
dist/settings-users-3239.js.map
vendored
File diff suppressed because one or more lines are too long
6
dist/settings-vue-settings-admin-sharing.js
vendored
6
dist/settings-vue-settings-admin-sharing.js
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -326,7 +326,7 @@ class NavigationManager implements INavigationManager {
|
|||
'id' => 'core_users',
|
||||
'order' => 6,
|
||||
'href' => $this->urlGenerator->linkToRoute('settings.Users.usersList'),
|
||||
'name' => $l->t('Users'),
|
||||
'name' => $l->t('Accounts'),
|
||||
'icon' => $this->urlGenerator->imagePath('settings', 'users.svg'),
|
||||
]);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue