--- ./modules/adminrole/adminrole.module	2007-06-23 02:09:30.000000000 -0400
+++ ./modules/adminrole/adminrole.module	2007-08-24 21:03:45.000000000 -0400
@@ -12,8 +12,8 @@
  */
 function adminrole_help($section) {
   switch ($section) {
-    case 'admin/settings/adminrole':
-      return t('Change which role is a "admin" Role with full perms');
+    case 'admin/user/adminrole':
+      return t('Select which role is the "Admin role" with full permissions');
   }
 }
 
@@ -25,17 +25,19 @@ function adminrole_menu($may_cache) {
 
   if ($may_cache) {
     $items[] = array(
-      'path' => 'admin/settings/adminrole',
-      'title' => t('adminrole'),
+      'path' => 'admin/user/adminrole',
+      'title' => t('Admin role'),
       'callback' => 'drupal_get_form',
       'callback arguments' => array('adminrole_admin_settings'),
+      'description' => t('Give all permissions to a designated role every time the modules page is submitted.'),
       'access' => user_access('administer site configuration'),
       'type' => MENU_NORMAL_ITEM
     );
     $items[] = array(
       'path' => 'admin/adminrole/update',
-      'title' => t('adminrole'),
+      'title' => t('Administrator role'),
       'callback' => 'adminrole_update_perms',
+      'description' => t('Give all permissions to a designated role every time the modules page is submitted.'),
       'access' => user_access('administer site configuration'),
       'type' => MENU_SUGGESTED_ITEM
     );
@@ -58,7 +60,7 @@ function adminrole_update_perms() {
     if (count($perms)) {
       db_query("INSERT INTO {permission} (rid, perm) VALUES (%d, '%s')", $admin_role, implode(', ', $perms));
     }
-    drupal_set_message(t('Admin Permissions Set'));
+    drupal_set_message(t('Admin permissions set.'));
   }
 }
 
@@ -68,9 +70,9 @@ function adminrole_update_perms() {
    ksort($u_roles);
    $form['adminrole_adminrole'] = array(
      '#type' => 'select',
-     '#title' => t('Admin Roles'),
+     '#title' => t('Admin Role'),
      '#default_value' => variable_get('adminrole_adminrole', 0),
-     '#description' => t("Which Role is Admin?"),
+     '#description' => t('Which role is the "Admin role?"'),
     '#options' => array_merge(array(0 => t('-- Please Select One --')), $u_roles),
    );
    return system_settings_form($form);
