~ubuntu-drupal-devs/ubuntu-drupal-header/6.x

« back to all changes in this revision

Viewing changes to udheader.module

  • Committer: Michael Lustfield
  • Date: 2009-10-31 22:15:56 UTC
  • Revision ID: michael@profarius.com-20091031221556-86smrfuit3cuginp
Fixing internationalization support

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
  $items = array();
47
47
 
48
48
  $items['admin/settings/udheader'] = array(
49
 
    'title' => t('UD Header Settings'),
50
 
    'description' => t('Set the various options for the Ubuntu Drupal Header module.'),
 
49
    'title' => 'UD Header Settings',
 
50
    'description' => 'Set the various options for the Ubuntu Drupal Header module.',
51
51
    'weight' => '0',
52
52
    'page callback' => 'udheader_admin_settings',
53
53
    'page arguments' => array('udheader_admin_settings'),
55
55
    'type' => MENU_NORMAL_ITEM,
56
56
  );
57
57
  $items['admin/settings/udheader/settings'] = array(
58
 
    'title' => t('Settings'),
59
 
    'description' => t('Set the various options for the Ubuntu Drupal Header module.'),
 
58
    'title' => 'Settings',
 
59
    'description' => 'Set the various options for the Ubuntu Drupal Header module.',
60
60
    'weight' => '0',
61
61
    'page callback' => 'udheader_admin_settings',
62
62
    'page arguments' => array('udheader_admin_settings'),
245
245
 
246
246
  // Check Result
247
247
  if ('1' == $rslt) {
248
 
    drupal_set_message('Record modification made.');
 
248
    drupal_set_message(t('Record modification made.'));
249
249
    return TRUE;
250
250
  }
251
251
  else {
252
 
    trigger_error('Record modification failed.');
 
252
    trigger_error(t('Record modification failed.'));
253
253
    return FALSE;
254
254
  }
255
255
}