diff --git a/globalredirect.admin.inc b/globalredirect.admin.inc index 00883b4..f572aeb 100644 --- a/globalredirect.admin.inc +++ b/globalredirect.admin.inc @@ -38,7 +38,7 @@ function globalredirect_settings() { $form['globalredirect_trailingzero'] = array( '#type' => 'radios', '#title' => t('Remove Trailing Zero Argument'), - '#description' => t('If enabled, any instance of "/0" will be trimmed from the right of the URL. This stops duplicate pages such as "taxonomy/term/1" and "taxonomy/term/1/0" where 0 is the default depth. There is an option of limiting this feature to taxonomy term pages ONLY or allowing it to effect any page. By default this feature is disabled to avoid any unexpected behaviour'), + '#description' => t('If enabled, any instance of "/0" will be trimmed from the right of the URL. This stops duplicate pages such as "taxonomy/term/1" and "taxonomy/term/1/0" where 0 is the default depth. There is an option of limiting this feature to taxonomy term pages ONLY or allowing it to affect any page. By default this feature is disabled to avoid any unexpected behaviour'), '#options' => array( GLOBALREDIRECT_FEATURE_DISABLED => t('Disabled'), GLOBALREDIRECT_TRAILINGZERO_TAXTERM => t('Enabled for taxonomy term pages only'), @@ -61,7 +61,7 @@ function globalredirect_settings() { $form['globalredirect_case_sensitive_urls'] = array( '#type' => 'radios', '#title' => t('Case Sensitive URL Checking'), - '#description' => t('If enabled, the module will compae the current URL to the alias stored in the system. If there are any differences in case then the user will be redirected to the correct URL.'), + '#description' => t('If enabled, the module will compare the current URL to the alias stored in the system. If there are any differences in case then the user will be redirected to the correct URL.'), '#options' => array( GLOBALREDIRECT_FEATURE_DISABLED => t('Disabled'), GLOBALREDIRECT_CASE_SENSITIVE_URLS_ENABLED => t('Enabled'),