diff options
author | Chocobozzz <me@florianbigard.com> | 2020-01-21 14:05:22 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2020-01-21 14:05:22 +0100 |
commit | f0ad47100748ba5f660b597787422b1b302e64c0 (patch) | |
tree | 5b75aa216bdc199cdd2f93e72f0a67d7524ff617 /client/src/app/+admin | |
parent | 7c1f3e73667c013bcebdfbd75d55ba8ef83c6b54 (diff) | |
download | PeerTube-f0ad47100748ba5f660b597787422b1b302e64c0.tar.gz PeerTube-f0ad47100748ba5f660b597787422b1b302e64c0.tar.zst PeerTube-f0ad47100748ba5f660b597787422b1b302e64c0.zip |
Update a little bit user dropdown message
Diffstat (limited to 'client/src/app/+admin')
-rw-r--r-- | client/src/app/+admin/users/user-list/user-list.component.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/app/+admin/users/user-list/user-list.component.ts b/client/src/app/+admin/users/user-list/user-list.component.ts index a596251f6..7c5e8eaa4 100644 --- a/client/src/app/+admin/users/user-list/user-list.component.ts +++ b/client/src/app/+admin/users/user-list/user-list.component.ts | |||
@@ -63,7 +63,7 @@ export class UserListComponent extends RestTable implements OnInit { | |||
63 | }, | 63 | }, |
64 | { | 64 | { |
65 | label: this.i18n('Ban'), | 65 | label: this.i18n('Ban'), |
66 | description: this.i18n('Videos will be kept as private, comments will be kept as is.'), | 66 | description: this.i18n('User won\'t be able to login anymore, but videos and comments will be kept as is.'), |
67 | handler: users => this.openBanUserModal(users), | 67 | handler: users => this.openBanUserModal(users), |
68 | isDisplayed: users => users.every(u => this.authUser.canManage(u) && u.blocked === false) | 68 | isDisplayed: users => users.every(u => this.authUser.canManage(u) && u.blocked === false) |
69 | }, | 69 | }, |