From bb9e871f7c4e941cebed10844a01bbc221e44364 Mon Sep 17 00:00:00 2001 From: Angie Byron Date: Wed, 24 Nov 2010 03:21:36 +0000 Subject: [PATCH] =?UTF-8?q?#853954=20by=20G=C3=A1bor=20Hojtsy,=20joachim:?= =?UTF-8?q?=20Fix=20misleading=20'all=20content'=20on=20user=20cancellatio?= =?UTF-8?q?n=20operations.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- modules/user/user.pages.inc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/user/user.pages.inc b/modules/user/user.pages.inc index 1a5cbaf822b..6cfd15fda21 100644 --- a/modules/user/user.pages.inc +++ b/modules/user/user.pages.inc @@ -466,19 +466,19 @@ function user_cancel_confirm_form_submit($form, &$form_state) { function user_cancel_methods() { $methods = array( 'user_cancel_block' => array( - 'title' => t('Disable the account and keep all content.'), + 'title' => t('Disable the account and keep its content.'), 'description' => t('Your account will be blocked and you will no longer be able to log in. All of your content will remain attributed to your user name.'), ), 'user_cancel_block_unpublish' => array( - 'title' => t('Disable the account and unpublish all content.'), + 'title' => t('Disable the account and unpublish its content.'), 'description' => t('Your account will be blocked and you will no longer be able to log in. All of your content will be hidden from everyone but administrators.'), ), 'user_cancel_reassign' => array( - 'title' => t('Delete the account and make all content belong to the %anonymous-name user.', array('%anonymous-name' => variable_get('anonymous', t('Anonymous')))), + 'title' => t('Delete the account and make its content belong to the %anonymous-name user.', array('%anonymous-name' => variable_get('anonymous', t('Anonymous')))), 'description' => t('Your account will be removed and all account information deleted. All of your content will be assigned to the %anonymous-name user.', array('%anonymous-name' => variable_get('anonymous', t('Anonymous')))), ), 'user_cancel_delete' => array( - 'title' => t('Delete the account and all content.'), + 'title' => t('Delete the account and its content.'), 'description' => t('Your account will be removed and all account information deleted. All of your content will also be deleted.'), 'access' => user_access('administer users'), ),