diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-11-24 03:21:36 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-11-24 03:21:36 +0000 |
commit | bb9e871f7c4e941cebed10844a01bbc221e44364 (patch) | |
tree | 0a0b3f0937801362fe0fcd341f116040ddaa0fa8 /modules | |
parent | b44b2c6a97af4c8d865e724b139c6a26cbcadc33 (diff) | |
download | brdo-bb9e871f7c4e941cebed10844a01bbc221e44364.tar.gz brdo-bb9e871f7c4e941cebed10844a01bbc221e44364.tar.bz2 |
#853954 by Gábor Hojtsy, joachim: Fix misleading 'all content' on user cancellation operations.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/user/user.pages.inc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/user/user.pages.inc b/modules/user/user.pages.inc index 1a5cbaf82..6cfd15fda 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'), ), |