diff --git CHANGELOG.txt CHANGELOG.txt
index 6bfd519..5430364 100644
--- CHANGELOG.txt
+++ CHANGELOG.txt
@@ -3,6 +3,7 @@ CHANGELOG:
 
 6.x-2.1
 -------
+#671688 by rfay: Fixed localization errors.
 #705298 by rfay: Fixed Incorrect check on 'token' - should be 'token_actions()'.
                  This patch also improves the admin page documentation and adds help.
 
diff --git INSTALL.txt INSTALL.txt
index 06e1710..e7c8921 100644
--- INSTALL.txt
+++ INSTALL.txt
@@ -2,7 +2,7 @@ Installation:
 -------------
 1. Copy the role_change_notify.module to sites/all/modules
 
-2. Enable the module by visiting admin -> modules
+2. Enable the module by visiting admin/build/modules
 
 3. Configure the module under administer >> settings >> Role Change Notify
    - Enable notifications on each desired role
@@ -14,8 +14,12 @@ Installation:
    settings" set of choices. If this is not set, the user status
    module will not be able to send notification emails.
 
-5. You may optionally install and enable the token module, http://drupal.org/project/token,
-   which will provide many more tokens for your message.
+5. You may optionally install and enable the 
+   - token module, http://drupal.org/project/token, which will provide many more 
+     tokens for your message.
+   - profile module, which will provide profile tokens for use in your message.
+   - trigger module (with token actions module), so the module can provide a 
+     trigger which fires on both role add and role remove.
 
 $Id$
 $Name$
diff --git README.txt README.txt
index 3f11481..bea3dfa 100644
--- README.txt
+++ README.txt
@@ -4,25 +4,18 @@ Description
 This module enables sites to automatically send customized email
 notifications to users when a new role is assigned to them.
 
-
-Database
---------
-This module does not require any new database tables to be installed.
-
+It has a configuration page at admin/user/role_change_notify.
+In addition, it provides a trigger, so if the Trigger module and the 
+Token Actions module are enabled, actions can be taken when a role is
+added or removed.
 
 Installation
 ------------
 Please see the INSTALL.txt document for details.
 
 
-Changelog
----------
-6.x-1.0:  Added German translation per http://drupal.org/node/360312
-
-
 Author
 ------
-Modified from the user_status module
 Modified by: Randy Fay, randy [at] randyfay.com
 
 
diff --git role_change_notify.install role_change_notify.install
index 8f55f25..2ff5711 100644
--- role_change_notify.install
+++ role_change_notify.install
@@ -12,8 +12,6 @@ function role_change_notify_install() {
 }
 
 function role_change_notify_uninstall() {
-  variable_del('role_change_notify_role_added_body');
-  variable_del('role_change_notify_role_added_subject');
   db_query("DELETE FROM {variable} WHERE name like 'role_change_notify%'");
   cache_clear_all('variables', 'cache');
 
diff --git role_change_notify.module role_change_notify.module
index 8fe7a64..d6b1314 100644
--- role_change_notify.module
+++ role_change_notify.module
@@ -56,7 +56,7 @@ function role_change_notify_menu() {
   global $account;
   $items['admin/user/role_change_notify'] = array(
     'title' => 'Role Change Notifications',
-    'description' => t('Configure email notifications when a role is added to a user account'),
+    'description' => 'Configure email notifications when a role is added to a user account',
     'page callback' => 'drupal_get_form',
     'page arguments' => array('role_change_notify_settings_form'),
     'access arguments' => array('administer role change notification'),
@@ -381,7 +381,7 @@ function role_change_notify_token_list($type = 'profile') {
     if (module_exists('profile')) {
       $result = db_query('SELECT title, name FROM {profile_fields}');
       while($row = db_fetch_array($result)){
-        $tokens['profile'][$row['name']] = t($row['title']);
+        $tokens['profile'][$row['name']] = $row['title'];
       }
     }
     $tokens['global']['uri_brief'] = t('Brief site URL');
