summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--modules/field/field.module2
-rw-r--r--modules/path/path.module2
-rw-r--r--modules/php/php.module2
-rw-r--r--modules/poll/poll.tokens.inc4
-rw-r--r--modules/tracker/tracker.module2
5 files changed, 6 insertions, 6 deletions
diff --git a/modules/field/field.module b/modules/field/field.module
index 58f0365c8..68cfff68d 100644
--- a/modules/field/field.module
+++ b/modules/field/field.module
@@ -124,7 +124,7 @@ function field_help($path, $arg) {
case 'admin/help#field':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
- $output .= '<p>' . t('The Field module allows custom data fields to be attached to Drupal <em>entities</em> (content nodes, users, taxonomy vocabularies, etc.) and takes care of storing, loading, editing, and rendering field data. Most users will not interact with the Field module directly, but will instead use the <a href="@field-ui-help">Field UI module</a> user interface. Module developers can use the Field API to make new entities "fieldable" and thus allow fields to be attached to their entities. For more information, see the online handbook entry for <a href="@field">Field module</a>.', array('@field-ui-help' => url('admin/help/field_ui'), '@field' => 'http://drupal.org/handbook/modules/field')) . '</p>';
+ $output .= '<p>' . t('The Field module allows custom data fields to be defined for <em>entity</em> types (entities include content items, comments, user accounts, and taxonomy terms). The Field module takes care of storing, loading, editing, and rendering field data. Most users will not interact with the Field module directly, but will instead use the <a href="@field-ui-help">Field UI module</a> user interface. Module developers can use the Field API to make new entity types "fieldable" and thus allow fields to be attached to them. For more information, see the online handbook entry for <a href="@field">Field module</a>.', array('@field-ui-help' => url('admin/help/field_ui'), '@field' => 'http://drupal.org/handbook/modules/field')) . '</p>';
$output .= '<h3>' . t('Uses') . '</h3>';
$output .= '<dl>';
$output .= '<dt>' . t('Enabling field types') . '</dt>';
diff --git a/modules/path/path.module b/modules/path/path.module
index 67ecaa4ea..649947923 100644
--- a/modules/path/path.module
+++ b/modules/path/path.module
@@ -137,7 +137,7 @@ function path_form_node_form_alter(&$form, $form_state) {
'#maxlength' => 255,
'#collapsible' => TRUE,
'#collapsed' => TRUE,
- '#description' => t('Optionally specify an alternative URL by which this node can be accessed. For example, type "about" when writing an about page. Use a relative path and don\'t add a trailing slash or the URL alias won\'t work.'),
+ '#description' => t('Optionally specify an alternative URL by which this content can be accessed. For example, type "about" when writing an about page. Use a relative path and don\'t add a trailing slash or the URL alias won\'t work.'),
);
$form['path']['pid'] = array('#type' => 'value', '#value' => $path['pid']);
$form['path']['source'] = array('#type' => 'value', '#value' => $path['source']);
diff --git a/modules/php/php.module b/modules/php/php.module
index 4b1ac5b6d..08b8f7bb8 100644
--- a/modules/php/php.module
+++ b/modules/php/php.module
@@ -14,7 +14,7 @@ function php_help($path, $arg) {
case 'admin/help#php':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
- $output .= '<p>' . t('The PHP filter module adds a PHP filter to your site, for use with <a href="@filter">text formats</a>. This filter adds the ability to execute PHP code in any text field that uses a text format (such as the body of a node or the text of a comment). <a href="@php-net">PHP</a> is a general-purpose scripting language widely-used for web development, and is the language with which Drupal has been developed. For more information, see the online handbook entry for the <a href="@php">PHP filter module</a>.', array('@filter' => url('admin/help/filter'), '@php-net' => 'http://www.php.net', '@php' => 'http://drupal.org/handbook/modules/php/')) . '</p>';
+ $output .= '<p>' . t('The PHP filter module adds a PHP filter to your site, for use with <a href="@filter">text formats</a>. This filter adds the ability to execute PHP code in any text field that uses a text format (such as the body of a content item or the text of a comment). <a href="@php-net">PHP</a> is a general-purpose scripting language widely-used for web development, and is the language with which Drupal has been developed. For more information, see the online handbook entry for the <a href="@php">PHP filter module</a>.', array('@filter' => url('admin/help/filter'), '@php-net' => 'http://www.php.net', '@php' => 'http://drupal.org/handbook/modules/php/')) . '</p>';
$output .= '<h3>' . t('Uses') . '</h3>';
$output .= '<dl>';
$output .= '<dt>' . t('Enabling execution of PHP in text fields') . '</dt>';
diff --git a/modules/poll/poll.tokens.inc b/modules/poll/poll.tokens.inc
index 6f931ac51..6d4b7f404 100644
--- a/modules/poll/poll.tokens.inc
+++ b/modules/poll/poll.tokens.inc
@@ -12,7 +12,7 @@
function poll_token_info() {
$node['poll-votes'] = array(
'name' => t("Poll votes"),
- 'description' => t("The number of votes that have been cast on a poll node."),
+ 'description' => t("The number of votes that have been cast on a poll."),
);
$node['poll-winner'] = array(
'name' => t("Poll winner"),
@@ -28,7 +28,7 @@ function poll_token_info() {
);
$node['poll-duration'] = array(
'name' => t("Poll duration"),
- 'description' => t("The length of time the poll node is set to run."),
+ 'description' => t("The length of time the poll is set to run."),
);
return array(
diff --git a/modules/tracker/tracker.module b/modules/tracker/tracker.module
index 5aebccc6f..4a2df61ab 100644
--- a/modules/tracker/tracker.module
+++ b/modules/tracker/tracker.module
@@ -139,7 +139,7 @@ function tracker_cron() {
// Prepare a starting point for the next run.
variable_set('tracker_index_nid', $last_nid - 1);
- watchdog('tracker', t('Indexed %count nodes for tracking.', array('%count' => $count)));
+ watchdog('tracker', t('Indexed %count content items for tracking.', array('%count' => $count)));
}
else {
// If all nodes have been indexed, set to zero to skip future cron runs.