--- loncom/interface/lonpreferences.pm 2004/06/08 01:32:02 1.44 +++ loncom/interface/lonpreferences.pm 2004/07/26 21:57:27 1.48 @@ -1,7 +1,7 @@ # The LearningOnline Network # Preferences # -# $Id: lonpreferences.pm,v 1.44 2004/06/08 01:32:02 www Exp $ +# $Id: lonpreferences.pm,v 1.48 2004/07/26 21:57:27 albertel Exp $ # # Copyright Michigan State University Board of Trustees # @@ -888,6 +888,7 @@ sub handler { push (@Options,{ action => 'none', linktext => q{Edit the 'About Me' Personal Information Screen}, + help => 'Prefs_About_Me', href => $aboutmeaction}); push (@Options,({ action => 'changecolors', linktext => 'Change Color Scheme', @@ -908,6 +909,7 @@ sub handler { push (@Options,({ action => 'changelanguages', linktext => 'Change Language Preferences', href => '/adm/preferences', + help => 'Prefs_Language', breadcrumb=> { href => '/adm/preferences?action=changelanguages', text => 'Change Language'}, @@ -938,6 +940,7 @@ sub handler { push (@Options,({ action => 'changediscussions', linktext => 'Change Discussion Display Preferences', href => '/adm/preferences', + help => 'Change_Discussion_Display', breadcrumb => { href => '/adm/preferences?action=changediscussions', text => 'Change Discussion Preferences'}, @@ -964,6 +967,7 @@ sub handler { ENDHEADER my $call = undef; + my $help = undef; my $printmenu = 'yes'; foreach my $option (@Options) { if ($option->{'action'} eq $ENV{'form.action'}) { @@ -973,11 +977,12 @@ ENDHEADER &Apache::lonhtmlcommon::add_breadcrumb ($option->{'breadcrumb'}); } + $help=$option->{'help'}; } } $r->print(&Apache::loncommon::bodytag('Change Preferences')); $r->print(&Apache::lonhtmlcommon::breadcrumbs - (undef,'Change Preferences')); + (undef,'Change Preferences',$help)); if (defined($call)) { $call->($r); } @@ -1001,10 +1006,10 @@ ENDHEADER $optiontext .= ''. - $option->{'linktext'}.''; + &mt($option->{'linktext'}).''; } if (exists($option->{'text'})) { - $optiontext .= ' '.$option->{'text'}; + $optiontext .= ' '.&mt($option->{'text'}); } if ($optiontext ne '') { $optiontext = ''.$optiontext.'';