Index: taxonomy_breadcrumb.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/taxonomy_breadcrumb/taxonomy_breadcrumb.module,v
retrieving revision 1.7.2.4
diff -u -r1.7.2.4 taxonomy_breadcrumb.module
--- taxonomy_breadcrumb.module	22 Nov 2009 19:25:15 -0000	1.7.2.4
+++ taxonomy_breadcrumb.module	22 Nov 2009 21:09:13 -0000
@@ -112,23 +112,27 @@
 function taxonomy_breadcrumb_help($path, $arg) {
   switch ($path) {
     case 'admin/help#taxonomy_breadcrumb':
-      return t('<p>See %link.</p>', array('%link' => l('admin/settings/taxonomy-breadcrumb', 'admin/settings/taxonomy-breadcrumb')));
+      return '<p>' . t('See <a href="@admin">admin/settings/taxonomy-breadcrumb</a>.', array('@admin' => url('admin/settings/taxonomy-breadcrumb'))) . '</p>';
+
     case 'admin/settings/taxonomy-breadcrumb':
-      return t('The taxonomy_breadcrumb module generates taxonomy based breadcrumbs on node pages and taxonomy/term pages.  The breadcrumb trail takes on the form:
-                    <ul>[HOME] >> [VOCABULARY] >> TERM >> [TERM] ...</ul>
-                    <ul>
-                    <li>The text displayed for HOME is configurable below.  The <em>HOME </em>breadcrumb (if present) links to the homepage.  The text displayed for HOME is administrator configurable.  If the HOME breadcrumb is not defined by the administrator, it will not appear in the breadcrumb trail.</li>
-                    <li>The <em>VOCABULARY </em>breadcrumb (if present) will link to an administrator defined page.  If the VOCABULARY does not have an administrator defined page, it will not appear in the breadcrumb trail. This can be configured on the add/edit vocabulary pages within !tax_link (taxonomy).</li>
-                    <li>Each <em>TERM </em>breadcrumb will link to either (1) taxonomy/term/tid by default, or (2) an administrator defined page if one is defined for the term. This can be configured on the add/edit term pages within !tax_link (taxonomy).</li>
-                    </ul>
-                    <br />
-                    <p>Examples:
-                    <ul>
-                    <li>home >> term >> term</li>
-                    <li>mysite >> term >> term</li>
-                    <li>home >> vocabulary >> term >> term</li>
-                    <li>vocabulary >> term >> term</li>
-                    </ul>', array('!tax_link' => l('administer >> categories', 'admin/content/taxonomy')));
+      $output = '<p>' . t('The taxonomy_breadcrumb module generates taxonomy based breadcrumbs on node pages and taxonomy/term pages. The breadcrumb trail takes on the form:') . '</p>';
+      $output .= '<p>' . t('[HOME] >> [VOCABULARY] >> TERM >> [TERM] ...') . '</p>';
+
+      $output .= '<ul>';
+      $output .= '<li>' . t('The text displayed for HOME is configurable below. The <em>HOME</em> breadcrumb (if present) links to the homepage. The text displayed for HOME is configurable by an administrator. If the HOME breadcrumb is not defined by the administrator, it will not appear in the breadcrumb trail.') . '</li>';
+      $output .= '<li>' . t('The <em>VOCABULARY</em> breadcrumb (if present) will link to an administrator defined page. If the VOCABULARY does not have an administrator defined page, it will not appear in the breadcrumb trail. This can be configured on the add/edit vocabulary pages within <a href="@taxonomy">administer >> categories</a> (taxonomy).', array('@taxonomy' => url('admin/content/taxonomy'))) . '</li>';
+      $output .= '<li>' . t('Each <em>TERM</em> breadcrumb will link to either (1) taxonomy/term/tid by default, or (2) an administrator defined page if one is defined for the term. This can be configured on the add/edit term pages within <a href="@taxonomy">administer >> categories</a> (taxonomy).', array('@taxonomy' => url('admin/content/taxonomy'))) . '</li>';
+      $output .= '</ul>';
+
+      $output .= '<h3>' . t('Examples:') . '</h3>';
+      $output .= '<ul>';
+      $output .= '<li>' . t('home >> term >> term') . '</li>';
+      $output .= '<li>' . t('mysite >> term >> term') . '</li>';
+      $output .= '<li>' . t('home >> vocabulary >> term >> term') . '</li>';
+      $output .= '<li>' . t('vocabulary >> term >> term') . '</li>';
+      $output .= '</ul>';
+
+      return $output;
   }
 }
 
@@ -150,7 +154,7 @@
     '#title' => t('Breadcrumb path (taxonomy_breadcrumb)'),
     '#default_value'  => _taxonomy_breadcrumb_get_vocabulary_path($form['vid']['#value']),
     '#maxlength' => 128,
-    '#description' => t('Specify the path this vocabulary links to as a breadcrumb.  If blank, the breadcrumb will not appear.  Use a relative path and don\'t add a trailing slash.  For example: node/42 or my/path/alias.'),
+    '#description' => t("Specify the path this vocabulary links to as a breadcrumb. If blank, the breadcrumb will not appear. Use a relative path and don't add a trailing slash. For example: node/42 or my/path/alias."),
     '#weight' => 0,
   );
 }
@@ -164,7 +168,7 @@
  * of the vocabulary or term.
  */
 function taxonomy_breadcrumb_form_taxonomy_form_term_alter(&$form, &$form_state) {
-  if (!(isset($_POST['op']) && $_POST['op'] == t('Delete')) || isset($_POST['confirm'])) { 
+  if (!(isset($_POST['op']) && $_POST['op'] == t('Delete')) || isset($_POST['confirm'])) {
     // Include the .inc file with all helper functions.
     include_once drupal_get_path('module', 'taxonomy_breadcrumb') .'/taxonomy_breadcrumb.inc';
     $form['taxonomy_breadcrumb_path'] = array(
@@ -172,7 +176,7 @@
       '#title' => t('Breadcrumb path (taxonomy_breadcrumb)'),
       '#default_value'  => _taxonomy_breadcrumb_get_term_path($form['tid']['#value']),
       '#maxlength' => 128,
-      '#description' => t('Specify the path this term links to as a breadcrumb.  If blank, the breadcrumb links to the default taxonomy page.  Use a relative path and don\'t add a trailing slash.  For example: node/42 or my/path/alias.'),
+      '#description' => t("Specify the path this term links to as a breadcrumb. If blank, the breadcrumb links to the default taxonomy page. Use a relative path and don't add a trailing slash. For example: node/42 or my/path/alias."),
       '#weight' => 0,
     );
   }
Index: taxonomy_breadcrumb.admin.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/taxonomy_breadcrumb/taxonomy_breadcrumb.admin.inc,v
retrieving revision 1.1.2.4
diff -u -r1.1.2.4 taxonomy_breadcrumb.admin.inc
--- taxonomy_breadcrumb.admin.inc	22 Nov 2009 19:25:15 -0000	1.1.2.4
+++ taxonomy_breadcrumb.admin.inc	22 Nov 2009 21:09:13 -0000
@@ -12,7 +12,7 @@
 function taxonomy_breadcrumb_admin_settings() {
   $form['settings'] = array(
     '#type'           => 'fieldset',
-    '#title'          => t('Basic Settings'),
+    '#title'          => t('Basic settings'),
     '#collapsible'    => TRUE,
   );
 
@@ -20,35 +20,35 @@
     '#type'           => 'textfield',
     '#title'          => t('Home breadcrumb text'),
     '#default_value'  => variable_get('taxonomy_breadcrumb_home', ''),
-    '#description'    => t('Text to display at top of breadcrumb trail.  Typically home or your site name.  Leave blank to have no home breadcrumb.'),
+    '#description'    => t('Text to display at top of breadcrumb trail. Typically home or your site name. Leave blank to have no home breadcrumb.'),
   );
 
   $form['settings']['taxonomy_breadcrumb_show_current_term'] = array(
     '#type'           => 'checkbox',
-    '#title'          => t('Show current term in breadcrumb trail?'),
+    '#title'          => t('Show current term in breadcrumb trail'),
     '#default_value'  => variable_get('taxonomy_breadcrumb_show_current_term', TRUE),
-    '#description'    => t('When enabled, the lightest term associated with node is shown as the last breadcrumb in the breadcrumb trail.  When disabled, the only terms shown in the breadcrumb trail are parent terms (if any parents exist).  The recommended setting is enabled.'),
+    '#description'    => t('If enabled, the lightest term associated with a node is shown as the last item in the breadcrumb trail. If disabled, the only terms shown in the breadcrumb trail are parent terms (if any parents exist). The recommended setting is enabled.'),
   );
 
   $form['settings']['taxonomy_breadcrumb_use_synonym'] = array(
     '#type'           => 'checkbox',
-    '#title'          => t('Use the first term synonym instead of term name?'),
+    '#title'          => t('Use the first term synonym instead of term name'),
     '#default_value'  => variable_get('taxonomy_breadcrumb_use_synonym', FALSE),
-    '#description'    => t('When enabled and when viewing a node, the term\'s first synonym will be used in the breadcrumb, instead of the term name.'),
+    '#description'    => t("If enabled and if viewing a node, the term's first synonym will be used in the breadcrumb, instead of the term name."),
   );
 
   $form['settings']['taxonomy_breadcrumb_include_node_title'] = array(
     '#type'           => 'checkbox',
-    '#title'          => t('Show current node title in breadcrumb trail?'),
+    '#title'          => t('Show current node title in breadcrumb trail'),
     '#default_value'  => variable_get('taxonomy_breadcrumb_include_node_title', FALSE),
-    '#description'    => t('When enabled and when viewing a node, the node\'s title will be shown as the last breadcrumb in the breadcrumb trail.'),
+    '#description'    => t("If enabled and if viewing a node, the node's title will be shown as the last item in the breadcrumb trail."),
     '#weight'         => 30,
   );
 
   $form['advanced'] = array(
     '#type'           => 'fieldset',
-    '#description'    => 'Use these advanced settings to control which node types taxonomy based breadcrumbs will be generated for.  This allows taxonomy_breadcrumb to peacefully coexist with modules that define their own breadcrumbs, such as the book module.  For typical drupal configurations, administrators will not need to modify these settings; however, if user contributed modules are enabled you may need to fine tune taxonomy_breadcrumb here.',
-    '#title'          => t('Advanced Settings'),
+    '#description'    => 'Use these advanced settings to control which node types the taxonomy based breadcrumbs will be generated for. This allows the taxonomy breadcrumb module to peacefully coexist with modules that define their own breadcrumbs, such as the book module. For typical Drupal configurations, administrators will not need to modify these settings. However, if user contributed modules are enabled you may need to fine tune taxonomy breadcrumbs here.',
+    '#title'          => t('Advanced settings'),
     '#collapsible'    => TRUE,
     '#collapsed'      => TRUE,
   );
