--- legal.module +++ legal.module @@ -41,20 +41,20 @@ $items = array(); $items['admin/settings/legal'] = array( - 'title' => 'Legal', + 'title' => t('Legal'), 'page callback' => 'drupal_get_form', 'page arguments' => array('legal_administration'), 'access arguments' => array('administer Terms and Conditions'), 'description' => 'Display Terms and Conditions statement on the registration page.', ); $items['legal'] = array( - 'title' => 'Terms and Conditions', + 'title' => t('Terms and Conditions'), 'page callback' => 'legal_page', 'access arguments' => array('view Terms and Conditions'), 'type' => MENU_CALLBACK ); $items['legal_accept/%/%'] = array( - 'title' => 'Terms and Conditions', + 'title' => t('Terms and Conditions'), 'page callback' => 'drupal_get_form', 'page arguments' => array('legal_login', 1, 2), 'access callback' => TRUE,