diff -rbu pathauto/pathauto.admin.inc /home/my_user/acquia-drupal/modules/acquia/pathauto/pathauto.admin.inc
--- pathauto/pathauto.admin.inc 2010-01-21 20:23:42.000000000 +0000
+++ /home/my_user/acquia-drupal/modules/acquia/pathauto/pathauto.admin.inc        2010-01-21 20:29:31.000000000 +0000
@@ -133,7 +133,7 @@
   );
   $form['general']['pathauto_reduce_ascii'] = array(
     '#type' => 'checkbox',
-    '#title' => t('Reduce strings to letters and numbers from ASCII-96'),
+    '#title' => t('Reduce strings to letters and numbers'),
     '#default_value' => variable_get('pathauto_reduce_ascii', FALSE),
     '#description' => t('Filters the new alias to only letters and numbers found in the ASCII-96 set.'),
   );
diff -rbu pathauto/pathauto.inc /home/my_user/acquia-drupal/modules/acquia/pathauto/pathauto.inc
--- pathauto/pathauto.inc       2010-01-21 20:23:42.000000000 +0000
+++ /home/my_user/acquia-drupal/modules/acquia/pathauto/pathauto.inc      2010-01-21 20:29:33.000000000 +0000
@@ -171,7 +171,7 @@
     $output = strtr($output, $translations);
   }

-  // Reduce to the subset of ASCII96 letters and numbers
+  // Reduce strings to letters and numbers
   if (variable_get('pathauto_reduce_ascii', FALSE)) {
     $pattern = '/[^a-zA-Z0-9\/]+/ ';
     $output = preg_replace($pattern, $separator, $output);
