From 6d0ca97b8f8123a27226b946156b2178f33066f2 Mon Sep 17 00:00:00 2001 From: Angie Byron Date: Wed, 1 Dec 2010 00:31:38 +0000 Subject: [PATCH] #690622 by jhodgdon: Remove the word 'node' from various strings. --- modules/field/field.module | 2 +- modules/path/path.module | 2 +- modules/php/php.module | 2 +- modules/poll/poll.tokens.inc | 4 ++-- modules/tracker/tracker.module | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/modules/field/field.module b/modules/field/field.module index 58f0365c89f..68cfff68da2 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 .= '

' . t('About') . '

'; - $output .= '

' . t('The Field module allows custom data fields to be attached to Drupal entities (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 Field UI module 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 Field module.', array('@field-ui-help' => url('admin/help/field_ui'), '@field' => 'http://drupal.org/handbook/modules/field')) . '

'; + $output .= '

' . t('The Field module allows custom data fields to be defined for entity 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 Field UI module 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 Field module.', array('@field-ui-help' => url('admin/help/field_ui'), '@field' => 'http://drupal.org/handbook/modules/field')) . '

'; $output .= '

' . t('Uses') . '

'; $output .= '
'; $output .= '
' . t('Enabling field types') . '
'; diff --git a/modules/path/path.module b/modules/path/path.module index 67ecaa4eae3..64994792337 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 4b1ac5b6d55..08b8f7bb81d 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 .= '

' . t('About') . '

'; - $output .= '

' . t('The PHP filter module adds a PHP filter to your site, for use with text formats. 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). PHP 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 PHP filter module.', array('@filter' => url('admin/help/filter'), '@php-net' => 'http://www.php.net', '@php' => 'http://drupal.org/handbook/modules/php/')) . '

'; + $output .= '

' . t('The PHP filter module adds a PHP filter to your site, for use with text formats. 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). PHP 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 PHP filter module.', array('@filter' => url('admin/help/filter'), '@php-net' => 'http://www.php.net', '@php' => 'http://drupal.org/handbook/modules/php/')) . '

'; $output .= '

' . t('Uses') . '

'; $output .= '
'; $output .= '
' . t('Enabling execution of PHP in text fields') . '
'; diff --git a/modules/poll/poll.tokens.inc b/modules/poll/poll.tokens.inc index 6f931ac516f..6d4b7f40440 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 5aebccc6f48..4a2df61aba5 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.