--- legacypath_forms.inc	Fri Feb 08 17:43:00 2008
+++ legacypath_forms_new.inc	Sun Jun 01 19:39:50 2008
@@ -20,3 +20,3 @@
     '#type'   => 'fieldset',
-    '#title'  => t('Legacy Path Settings'),
+    '#title'  => t('Legacy Path settings'),
     '#weight' => -2,
@@ -30,3 +30,3 @@
     '#type'          => 'select',
-    '#title'         => t('Cache Lifespan'),
+    '#title'         => t('Cache lifespan'),
     '#options'       => $options,
@@ -38,3 +38,3 @@
     '#type'          => 'checkbox',
-    '#title'         => t('Force Redirect If Exists'),
+    '#title'         => t('Force redirect if exists'),
     '#default_value' => variable_get('legacypath_always_redirect', FALSE),
@@ -45,3 +45,3 @@
     '#type'   => 'fieldset',
-    '#title'  => t('Path Redirect Rules'),
+    '#title'  => t('Path redirect rules'),
     '#weight' => 2,
@@ -92,4 +92,4 @@
     '#type'   => 'fieldset',
-    '#title'  => ($existing !== NULL) ? t('Edit Existing Redirect')
-                                      : t('Create New Redirect'),
+    '#title'  => ($existing !== NULL) ? t('Edit existing redirect')
+                                      : t('Create new redirect'),
     '#weight' => -2,
@@ -112,3 +112,3 @@
   $description = t('A %pcre for matching the contents of the incoming URL. The default expression %default will match all incoming URIs. This expression must begin and end with a forward slash ( / ) character.',
-                   array('%pcre'    => t('Perl-Compatible Regular Expression'),
+                   array('%pcre'    => t('Perl-compatible regular expression'),
                          '%default' => $default));
@@ -116,3 +116,3 @@
     '#type'          => 'textfield',
-    '#title'         => 'Source Path Expression',
+    '#title'         => 'Source path expression',
     '#default_value' => ($existing != NULL) ? $existing->source_expr : $default,
@@ -128,3 +128,3 @@
     '#type'          => 'textfield',
-    '#title'         => 'Destination Path',
+    '#title'         => 'Destination path',
     '#default_value' => ($existing != NULL) ? $existing->dest_expr : $default,
@@ -143,11 +143,11 @@
   
-  $options = array(301 => t('301 Moved Permanently'), 
-                   307 => t('307 Temporary Redirect'),
-                   404 => t('404 Not Found'));
+  $options = array(301 => t('301 - permanently moved'), 
+                   307 => t('307 - temporary redirect'),
+                   404 => t('404 - not found'));
   $form['legacypath']['status'] = array(
     '#type'          => 'select',
-    '#title'         => t('Status Code'),
+    '#title'         => t('Status code'),
     '#default_value' => ($existing != NULL) ? intval($existing->status) : 301,
     '#options'       => $options,
-    '#description'   => t('When redirecting using this rule, should the redirect be permanent, temprorary, or not found?'),
+    '#description'   => t('When redirecting using this rule, should the redirect be permanent, temporary, or not found?'),
   );
@@ -156,3 +156,3 @@
     '#type'  => 'submit', 
-    '#value' => t('Save Redirect Rule'),
+    '#value' => t('Save redirect rule'),
   );
