Index: languageicons.admin.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/languageicons/languageicons.admin.inc,v
retrieving revision 1.2
diff -u -p -r1.2 languageicons.admin.inc
--- languageicons.admin.inc	11 Oct 2008 13:36:12 -0000	1.2
+++ languageicons.admin.inc	11 Oct 2008 21:12:55 -0000
@@ -16,6 +16,7 @@ function languageicons_admin_settings() 
   $form['show'] = array(
     '#type' => 'fieldset',
     '#title' => t('Add language icons'),
+    // TODO: Improve (re-phrase?) the #description
     '#description' => t('Link types to add language icons.'),
   );
   $form['show']['languageicons_show_node'] = array(
@@ -31,7 +32,11 @@ function languageicons_admin_settings() 
   $form['languageicons_placement'] = array(
     '#type' => 'radios',
     '#title' => t('Icon placement'),
-    '#options' => array('before' => t('Before'), 'after' => t('After'), 'replace' => t('Replace')),
+    '#options' => array(
+      'before' => t('Before link'),
+      'after' => t('After link'),
+      'replace' => t('Replace link')
+    ),
     '#default_value' => variable_get('languageicons_placement', 'before'),
     '#description' => t('Where to display the icon, relative to the link title.'),
   );
@@ -41,7 +46,7 @@ function languageicons_admin_settings() 
     '#default_value' => variable_get('languageicons_path', drupal_get_path('module', 'languageicons') .'/flags/*.png'),
     '#size' => 70,
     '#maxlength' => 180,
-    '#description' => t('Path for language icons, relative to Drupal installation. \'*\' is a placeholder for language code.'),
+    '#description' => t('Path for language icons, relative to Drupal installation. "*" is a placeholder for language code.'),
   );
   $form['languageicons_size'] = array(
     '#type' => 'textfield',
Index: languageicons.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/languageicons/languageicons.module,v
retrieving revision 1.3
diff -u -p -r1.3 languageicons.module
--- languageicons.module	11 Oct 2008 13:36:12 -0000	1.3
+++ languageicons.module	11 Oct 2008 21:12:55 -0000
@@ -32,13 +32,14 @@ function languageicons_help($path, $arg)
     case 'admin/help#languageicons' :
       $output = '<p>'. t('This module manages language icons for multilingual sites:') .'</p>';
       $output .= '<ul>';
-      $output .= '<li>'. t('Automatically adds icons to language links') .'</li>';
-      $output .= '<li>'. t('Provides related theme functions') .'</li>';
+      $output .= '<li>'. t('Automatically adds icons to language links.') .'</li>';
+      $output .= '<li>'. t('Provides related theme functions.') .'</li>';
       $output .= '</ul>';
-      $output .= '<p>'. t('For more information please read the <a href="@i18n">on-line help pages</a>.', array('@i18n' => 'http://drupal.org/node/31631')) .'</p>';
+      // TODO: The @handbook link needs to change to a Language Icons specific one
+      $output .= '<p>'. t('For more information, please see <a href="@handbook">the online handbook section</a>.', array('@handbook' =>'http://drupal.org/node/133977')) .'</p>';
       return $output;
     case 'admin/settings/languageicons':
-      $output .= '<p>'. t('To enable multilingual support for specific content types go to !configure_content_types.', array('!configure_content_types' => l(t('configure content types'), 'admin/content/types'))) .'</p>';
+      $output .= '<p>'. t('To enable multilingual support for specific content types go to <a href="@configure_content_types">configure content types</a>.', array('@configure_content_types' => url('admin/content/types'))) .'</p>';
       return $output;
   }
 }
