X-Git-Url: http://aleph1.co.uk/gitweb/?a=blobdiff_plain;f=vendor%2Fdrupal%2Fconsole-en%2Ftranslations%2Fuser.delete.yml;h=f186320f9053371385cfecd24389dfd5a05983d8;hb=4e1bfbf98b844da83b18aca92ef00f11a4735806;hp=2c40c6542d59a2362ed63a520a409c5705f79fb4;hpb=a2bd1bf0c2c1f1a17d188f4dc0726a45494cefae;p=yaffs-website diff --git a/vendor/drupal/console-en/translations/user.delete.yml b/vendor/drupal/console-en/translations/user.delete.yml index 2c40c6542..f186320f9 100644 --- a/vendor/drupal/console-en/translations/user.delete.yml +++ b/vendor/drupal/console-en/translations/user.delete.yml @@ -1,17 +1,29 @@ -description: 'Delete users for the application' +description: 'Delete users from the application' help: 'The user:delete command helps you delete users.' welcome: 'Welcome to the Drupal user delete' options: - user-id: 'User id to be deleted' - roles: 'Roles associated to users to be deleted' + user: 'User name/id to be deleted' + roles: 'Users with the listed roles to be deleted' questions: - user-id: 'User id to be deleted (empty to skip)' - roles: 'Select role(s) associated with users to be deleted' + user: 'User name/id to be deleted (empty to skip)' + roles: 'Select role(s) associated with users to be deleted' messages: - user-id: 'User ID' - username: 'Username' - user-deleted: 'User "%s" was deleted successfully' - users-deleted: '"%s" users were deleted successfully' + user-id: 'User ID' + username: 'Username' + user-deleted: 'User "%s" was deleted successfully' + users-deleted: '"%s" users were deleted successfully' errors: - invalid-user-id: 'User id "%s" is invalid' - invalid-user: 'User id "%s" is invalid' + invalid-user: 'User name/id "%s" is invalid' +examples: + - description: 'Delete user with the id number 2' + execution: | + drupal user:delete \ + --user="2" + - description: 'Delete user with the username "jmolivas"' + execution: | + drupal user:delete \ + --user="jmolivas" + - description: 'Delete users with the role "authenticated"' + execution: | + drupal user:delete \ + --role="authenticated"