Index: README.txt
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/taxonomy_theme/README.txt,v
retrieving revision 1.10.2.3
diff -u -p -r1.10.2.3 README.txt
--- README.txt	4 Jan 2010 17:23:24 -0000	1.10.2.3
+++ README.txt	1 Nov 2010 13:06:03 -0000
@@ -14,21 +14,21 @@ Description
 ===========
 
 The taxonomy_theme module allows you to change the theme of a given node
-based on the taxonomy term or vocabulary that node.
+based on the taxonomy term or vocabulary associated with that node.
 
 
 Installation
 ============
 
 Taxonomy Theme depends on the ThemeKey module. You will need to install
-that module as well in order to use Taxonomy Theme.
+that module, as well, in order to use Taxonomy Theme.
 
-1. Place whole taxonomy_theme folder into your Drupal sites/*/modules
+1. Place the whole taxonomy_theme folder into your Drupal sites/*/modules
      directory.
 
-2. Enable taxonomy_theme module by navigating to
+2. Enable the taxonomy_theme module by navigating to
      Administer > Site Building > Modules (admin/build/modules)
      
 
-!! Taxonomy Access users need to grand 'LIST' permission for every term
-!! they want to change the theme on (otherwise default theme is applied). 
+!! Taxonomy Access users need to grant 'LIST' permission for every term
+!! they want to change the theme on (otherwise the default theme is applied). 
Index: taxonomy_theme.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/taxonomy_theme/taxonomy_theme.module,v
retrieving revision 1.49.2.7
diff -u -p -r1.49.2.7 taxonomy_theme.module
--- taxonomy_theme.module	16 Aug 2010 13:35:17 -0000	1.49.2.7
+++ taxonomy_theme.module	1 Nov 2010 13:06:03 -0000
@@ -44,7 +44,7 @@ function taxonomy_theme_form_alter_submi
 /**
  * Implements hook_themekey_properties().
  *
- * Provides additional properties for module ThemeKey:
+ * Provides additional properties for the ThemeKey module:
  *   taxonomy:theme_by_vocabulary
  *   taxonomy:theme_by_term
  *
@@ -57,13 +57,13 @@ function taxonomy_theme_themekey_propert
   $attributes = array();
 
   $attributes['taxonomy_theme:vocabulary_triggers_theme'] = array(
-    'description' => t("Property taxonomy_theme:vocabulary_triggers_theme could not be selected from the property drop down. You get this static property by activating !link. Afterwards you can move the property to any position in the rule chain. When done it triggers the switch to the theme assigned to a taxonomy vocabulary using Taxonomy Theme if the current page is associated with this vocabulary.",
+    'description' => t("The taxonomy_theme:vocabulary_triggers_theme property could not be selected from the property drop down. You get this static property by activating !link. Afterwards, you can move the property to any position in the rule chain. When done it triggers the switch to the theme assigned to a taxonomy vocabulary using Taxonomy Theme if the current page is associated with this vocabulary.",
       array('!link' => l(t('Show theme option in create/edit taxonomy vocabulary forms'), 'admin/settings/themekey/settings/ui'))),
     'static' => TRUE,
   );
 
   $attributes['taxonomy_theme:term_triggers_theme'] = array(
-    'description' => t("Property taxonomy_theme:term_triggers_theme could not be selected from the property drop down. You get this static property by activating !link. Afterwards you can move the property to any position in the rule chain. When done it triggers the switch to the theme assigned to a taxonomy term using Taxonomy Theme if the current page is associated with this term.",
+    'description' => t("The taxonomy_theme:term_triggers_theme property could not be selected from the property drop-down. You get this static property by activating !link. Afterwards, you can move the property to any position in the rule chain. When done, it triggers the switch to the theme assigned to a taxonomy term using Taxonomy Theme if the current page is associated with this term.",
       array('!link' => l(t('Show theme option in create/edit taxonomy term forms'), 'admin/settings/themekey/settings/ui'))),
     'static' => TRUE,
   );
