summaryrefslogtreecommitdiff
path: root/modules/node/node.admin.inc
diff options
context:
space:
mode:
Diffstat (limited to 'modules/node/node.admin.inc')
-rw-r--r--modules/node/node.admin.inc14
1 files changed, 7 insertions, 7 deletions
diff --git a/modules/node/node.admin.inc b/modules/node/node.admin.inc
index b323c43bb..b2539b0ea 100644
--- a/modules/node/node.admin.inc
+++ b/modules/node/node.admin.inc
@@ -28,37 +28,37 @@ function node_configure_rebuild_confirm_submit($form, &$form_state) {
function node_node_operations() {
$operations = array(
'publish' => array(
- 'label' => t('Publish'),
+ 'label' => t('Publish selected content'),
'callback' => 'node_mass_update',
'callback arguments' => array('updates' => array('status' => NODE_PUBLISHED)),
),
'unpublish' => array(
- 'label' => t('Unpublish'),
+ 'label' => t('Unpublish selected content'),
'callback' => 'node_mass_update',
'callback arguments' => array('updates' => array('status' => NODE_NOT_PUBLISHED)),
),
'promote' => array(
- 'label' => t('Promote to front page'),
+ 'label' => t('Promote selected content to front page'),
'callback' => 'node_mass_update',
'callback arguments' => array('updates' => array('status' => NODE_PUBLISHED, 'promote' => NODE_PROMOTED)),
),
'demote' => array(
- 'label' => t('Demote from front page'),
+ 'label' => t('Demote selected content from front page'),
'callback' => 'node_mass_update',
'callback arguments' => array('updates' => array('promote' => NODE_NOT_PROMOTED)),
),
'sticky' => array(
- 'label' => t('Make sticky'),
+ 'label' => t('Make selected content sticky'),
'callback' => 'node_mass_update',
'callback arguments' => array('updates' => array('status' => NODE_PUBLISHED, 'sticky' => NODE_STICKY)),
),
'unsticky' => array(
- 'label' => t('Remove stickiness'),
+ 'label' => t('Make selected content not sticky'),
'callback' => 'node_mass_update',
'callback arguments' => array('updates' => array('sticky' => NODE_NOT_STICKY)),
),
'delete' => array(
- 'label' => t('Delete'),
+ 'label' => t('Delete selected content'),
'callback' => NULL,
),
);