Index: suggestedterms.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/suggestedterms/suggestedterms.module,v
retrieving revision 1.2.2.3
diff -u -r1.2.2.3 suggestedterms.module
--- suggestedterms.module	9 Oct 2008 17:58:17 -0000	1.2.2.3
+++ suggestedterms.module	28 Sep 2009 14:33:29 -0000
@@ -100,19 +100,19 @@
       $sort_order = variable_get('suggestedterms_sort_order', SUGGESTEDTERMS_SORT_NAME);
       switch ($sort_order) {
         case SUGGESTEDTERMS_SORT_POPULAR:
-	      $tag_description = 'Most popular terms';
+	      $tag_description = t('Most popular terms')';
           break;
 
         case SUGGESTEDTERMS_SORT_RECENT:
-          $tag_description = 'Recently added';
+          $tag_description = t('Recently added');
           break;
 
         default:
-          $tag_description = 'Terms by name';
+          $tag_description = t('Terms by name');
           break;
       }
       // Build the suggested terms and set in description tag.
-      $form['taxonomy']['tags'][$vid]['#description'] .= "<br />\n". t($tag_description) . ': ' . _suggestedterms_build_suggestions($vid, $sort_order);
+      $form['taxonomy']['tags'][$vid]['#description'] .= "<br />\n". $tag_description . ': ' . _suggestedterms_build_suggestions($vid, $sort_order);
     }
   }
 }
@@ -134,7 +134,7 @@
     '#type' => 'radios',
     '#title' => t('Link sort order'),
     '#default_value' => variable_get('suggestedterms_sort_order', SUGGESTEDTERMS_SORT_NAME),
-    '#description' => t("The sort order for the links displayed."),
+    '#description' => t('The sort order for the links displayed.'),
     '#options' => array(
       SUGGESTEDTERMS_SORT_POPULAR => t('Most used'),
       SUGGESTEDTERMS_SORT_NAME => t('Alphabetically'),

