Index: README.txt
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/themekey_properties/README.txt,v
retrieving revision 1.9.2.2
diff -u -p -r1.9.2.2 README.txt
--- README.txt	22 Mar 2010 15:44:52 -0000	1.9.2.2
+++ README.txt	31 Oct 2010 16:00:53 -0000
@@ -14,10 +14,10 @@ About
 =====
 
 "ThemeKey Properties" adds additional properties to ThemeKey module which
-could be found at http://drupal.org/project/themekey
+can be found at http://drupal.org/project/themekey
 
-"ThemeKey" itself provides an infrastructure to switch drupal themes by
-rules which might use such properties.
+"ThemeKey", itself, provides an infrastructure to switch Drupal themes according
+to rules which might use such properties.
 
 Additional Properties provided by "ThemeKey Properties":
  - drupal:base_path
@@ -49,7 +49,7 @@ ThemeKey Properties contains an addition
 a debug feature that shows the current values of all properties on
 every page including those properties provided by different modules.
 
-The debug values are clickable. If you do so you can easily start
+The debug values are clickable. If you do so, you can easily start
 creating a Theme Switching rule from this property and value.
 
 
@@ -61,7 +61,7 @@ Installation
   1.1 Install ThemeKey itself from http://drupal.org/project/themekey
 
   1.2 Place whole themekey_properties folder into your Drupal modules/
-      directory.
+      directory, or better, your sites/x/modules directory.
 
   1.3 Enable the "ThemeKey Properties" module at /admin/build/modules
 
@@ -71,7 +71,7 @@ Installation
   2.1 Install ThemeKey itself from http://drupal.org/project/themekey
 
   2.2 Place whole themekey_properties folder into your Drupal modules/
-      directory.
+      directory, or better, your sites/x/modules directory.
 
   2.3 Enable the "ThemeKey Properties" module at /admin/build/modules
   
Index: browser_detection.php
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/themekey_properties/browser_detection.php,v
retrieving revision 1.2.2.4
diff -u -p -r1.2.2.4 browser_detection.php
--- browser_detection.php	16 Aug 2010 13:35:19 -0000	1.2.2.4
+++ browser_detection.php	31 Oct 2010 16:00:53 -0000
@@ -8,15 +8,15 @@
  * @see http://www.dinke.net/blog/2005/10/30/browser-detection/en/
  * @see themekey_properties.module
  *
- * Here's a snippet of Dragans mail response as we asked him to reuse his code:
+ * Here's a snippet of Dragan's mail response when we asked for permission to reuse his code:
  *
  * > Hello Markus,
  * >
  * > Thank you very much for contacting me. You can use Browser detection
  * > class in any project, no matter of its purpose (commercial or non
- * > commerical).
+ * > commercial).
  * >
- * > I wasnt' sure which license allows that freedom of use (perhaps BSD
+ * > I wasn't sure which license allows that freedom of use (perhaps BSD
  * > license), if you know more about that please let me know.
  * >
  * > Best Regards,
Index: themekey_properties.install
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/themekey_properties/themekey_properties.install,v
retrieving revision 1.1.2.4
diff -u -p -r1.1.2.4 themekey_properties.install
--- themekey_properties.install	12 Jan 2010 19:45:21 -0000	1.1.2.4
+++ themekey_properties.install	31 Oct 2010 16:00:53 -0000
@@ -3,7 +3,7 @@
 
 /**
  * @file
- * doesn't contain a database schema but cleans up some drupal variables
+ * doesn't contain a database schema but cleans up some Drupal variables
  *
  * @author Markus Kalkbrenner | Cocomore AG
  *   @see http://drupal.org/user/124705
Index: themekey_properties.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/themekey_properties/themekey_properties.module,v
retrieving revision 1.8.2.18
diff -u -p -r1.8.2.18 themekey_properties.module
--- themekey_properties.module	20 Aug 2010 08:55:52 -0000	1.8.2.18
+++ themekey_properties.module	31 Oct 2010 16:00:53 -0000
@@ -62,7 +62,7 @@ function themekey_properties_themekey_pr
   $attributes = array();
 
   $attributes['system:query_param'] = array(
-    'description' => t("System: Query Parameter - Every single query parameter other than 'q' and it's value if present. Note that values are url decoded. Example: '?q=node&foo=bar&dummy&filter=tid%3A27' will cause three entries 'foo=bar', 'dummy' and 'filter=tid:27'. For 'q' see property drupal:get_q."),
+    'description' => t("System: Query Parameter - Every single query parameter other than 'q' and its value if present. Note that values are url decoded. Example: '?q=node&foo=bar&dummy&filter=tid%3A27' will cause three entries 'foo=bar', 'dummy' and 'filter=tid:27'. For 'q' see property drupal:get_q."),
     'page cache' => THEMEKEY_PAGECACHE_SUPPORTED,
   );
 
@@ -72,7 +72,7 @@ function themekey_properties_themekey_pr
   );
 
   $attributes['system:cookie'] = array(
-    'description' => t("System: Cookie - Every single cookie and it's value if present will be formatted like 'COOKIE_NAME=COOKIE_VALUE'"),
+    'description' => t("System: Cookie - Every single cookie and its value if present will be formatted like 'COOKIE_NAME=COOKIE_VALUE'"),
     'page cache' => THEMEKEY_PAGECACHE_UNSUPPORTED,
   );
 
@@ -165,12 +165,12 @@ function themekey_properties_themekey_pr
   );
 
   $attributes['system:session'] = array(
-    'description' => t("System: Session - Every single session parameter and it's value if value is present and a simple type (string, integer, boolean). Booleans are represented as integers '1' as TRUE and '0' as FALSE."),
+    'description' => t("System: Session - Every single session parameter and its value if value is present and a simple type (string, integer, boolean). Booleans are represented as integers '1' as TRUE and '0' as FALSE."),
     'page cache' => THEMEKEY_PAGECACHE_SUPPORTED,
   );
 
   $attributes['system:random'] = array(
-    'description' => t("System: Random - A random value that could be '0' or 1'."),
+    'description' => t("System: Random - A random value that could be '0' or '1'."),
     'validator' => 'themekey_validator_nummeric_boolean',
     'page cache' => THEMEKEY_PAGECACHE_UNSUPPORTED,
   );
Index: themekey_properties_help.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/themekey_properties/themekey_properties_help.inc,v
retrieving revision 1.1.2.2
diff -u -p -r1.1.2.2 themekey_properties_help.inc
--- themekey_properties_help.inc	8 Jan 2010 14:28:46 -0000	1.1.2.2
+++ themekey_properties_help.inc	31 Oct 2010 16:00:53 -0000
@@ -9,14 +9,14 @@
  */
 
 /**
- * Adds exmples to themekey_help_form().
+ * Adds examples to themekey_help_form().
  *
  * @see themekey_help()
  * @see themekey_help_form()
  * @see themekey_properties_form_alter()
  *
  * @param $form
- *   reference to a drupal form
+ *   reference to a Drupal form
  */
 function themekey_properties_help_examples(&$form) {
   $form['themekey_help_examples']['Select a theme for Firefox 3.0.x, but not Firefox 3.5.x'] = array(
@@ -89,12 +89,12 @@ Value: 2009-12-24
 
   $form['themekey_help_examples']['Select a theme for New Year 2010'] = array(
     '#type' => 'fieldset',
-    '#title' => t('Select a theme for New Year 2010'),
+    '#title' => t('Select a theme for New Year\'s Day 2010'),
     '#collapsible' => TRUE,
     '#collapsed' => $form['themekey_help_examples']['#collapsed'],
   );
 
-  $form['themekey_help_examples']['Select a theme for New Year 2010']['item'] = array(
+  $form['themekey_help_examples']['Select a theme for New Year\'s Day 2010']['item'] = array(
     '#type' => 'item',
     '#value' => t('Create a Theme Switching Rule:') . '<pre>
 Property: system:date
Index: themekey_properties_validators.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/themekey_properties/themekey_properties_validators.inc,v
retrieving revision 1.1.2.4
diff -u -p -r1.1.2.4 themekey_properties_validators.inc
--- themekey_properties_validators.inc	26 May 2010 14:17:12 -0000	1.1.2.4
+++ themekey_properties_validators.inc	31 Oct 2010 16:00:53 -0000
@@ -3,7 +3,7 @@
 
 /**
  * @file
- * Provides set of validators which could be used to validate
+ * Provides set of validators which can be used to validate
  * ThemeKey Theme Switching Rules.
  * @see themekey_validators.inc
  * @see themekey_admin.inc
@@ -17,11 +17,11 @@
 
 
 /**
- * Validates a Theme Switichng Rule.
+ * Validates a Theme Switching Rule.
  * Allowed Operators: any
  * Allowed values:
  * - valid regular expression if operator is "~"
- * - a vaild IPv4 address like "123.123.123.123" if operator is "=" or "!"
+ * - a valid IPv4 address like "123.123.123.123" if operator is "=" or "!"
  * - fragment of an IPv4 address which contains at least one digit
  *   for different operators
  *
@@ -43,7 +43,7 @@
  *     describing a problem with the operator
  *   - value: translated error message as string
  *     describing a problem with the value
- *   If no errors detected the array is empty.
+ *   If no were errors detected, the array is empty.
  */
 function themekey_properties_validator_ip_address($rule) {
   $errors = array();
@@ -77,16 +77,16 @@ function themekey_properties_validator_i
 
 
 /**
- * Validates a Theme Switichng Rule.
+ * Validates a Theme Switching Rule.
  * Allowed Operators: "=", "!", "~"
  * Allowed values:
  * - valid regular expression if operator is "~"
- * - a vaild drupal role if operator is "=" or "!"
+ * - a valid Drupal role if operator is "=" or "!"
  *
  *
  * @param $rule
  *   A Theme Switching Rule as associative array:
- *   - property: ThemeKey property as string (p.e. "drupal:path")
+ *   - property: ThemeKey property as string (e.g., "drupal:path")
  *   - wildcard: optional string, only used if property is "drupal:path:wildcard"
  *   - operator: ThemeKey operator as string ("=", "!", "<". "<=", ">", ">=", "~")
  *   - value: ThemeKey property value as string
@@ -116,7 +116,7 @@ function themekey_validator_role($rule) 
       }
 
       if (!in_array($rule['value'], $roles)) {
-        $errors['value'] = t('The entered user role %value is not valid. Possible roles are "%roles".', array('%value' => $rule['value'], '%roles' => implode('", "', $roles)));
+        $errors['value'] = t('The entered user role, %value, is not valid. Possible roles are "%roles".', array('%value' => $rule['value'], '%roles' => implode('", "', $roles)));
       }
       break;
 
@@ -135,7 +135,7 @@ function themekey_validator_role($rule) 
 
 
 /**
- * Validates a Theme Switichng Rule.
+ * Validates a Theme Switching Rule.
  * Allowed Operators: "=", "!"
  * Allowed values:
  * - a three letter day String if operator is "=" or "!"
@@ -143,7 +143,7 @@ function themekey_validator_role($rule) 
  *
  * @param $rule
  *   A Theme Switching Rule as associative array:
- *   - property: ThemeKey property as string (p.e. "drupal:path")
+ *   - property: ThemeKey property as string (e.g. "drupal:path")
  *   - wildcard: optional string, only used if property is "drupal:path:wildcard"
  *   - operator: ThemeKey operator as string ("=", "!", "<". "<=", ">", ">=", "~")
  *   - value: ThemeKey property value as string
