summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2010-01-14 05:53:55 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2010-01-14 05:53:55 +0000
commit52e5064d3241784ed110a9f268b9b39eb24dac1b (patch)
tree803075a4c6560d90248c07ee357162a3ae2e37df /modules
parent5fc914e017cbf5951c7cc75ab35e808e1238b8d6 (diff)
downloadbrdo-52e5064d3241784ed110a9f268b9b39eb24dac1b.tar.gz
brdo-52e5064d3241784ed110a9f268b9b39eb24dac1b.tar.bz2
#678012 by heyrocker and jhodgdon: Tokens should not use the word 'node' in human-readable descriptions.
Diffstat (limited to 'modules')
-rw-r--r--modules/node/node.tokens.inc6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/node/node.tokens.inc b/modules/node/node.tokens.inc
index 72443a308..b0d682841 100644
--- a/modules/node/node.tokens.inc
+++ b/modules/node/node.tokens.inc
@@ -14,14 +14,14 @@
function node_token_info() {
$type = array(
'name' => t('Nodes'),
- 'description' => t('Tokens related to individual nodes.'),
+ 'description' => t('Tokens related to individual content items, or "nodes".'),
'needs-data' => 'node',
);
// Core tokens for nodes.
$node['nid'] = array(
- 'name' => t("Node ID"),
- 'description' => t("The unique ID of the node."),
+ 'name' => t("Content ID"),
+ 'description' => t('The unique ID of the content item, or "node".'),
);
$node['vid'] = array(
'name' => t("Revision ID"),