--- loncom/interface/lonquickgrades.pm 2006/03/15 22:11:04 1.40 +++ loncom/interface/lonquickgrades.pm 2008/08/17 23:25:40 1.42 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # Quick Student Grades Display # -# $Id: lonquickgrades.pm,v 1.40 2006/03/15 22:11:04 albertel Exp $ +# $Id: lonquickgrades.pm,v 1.42 2008/08/17 23:25:40 raeburn Exp $ # # Copyright Michigan State University Board of Trustees # @@ -92,7 +92,7 @@ score sheet.

HEADER } - $r->print("This may take a few moments to display."); + $r->print(&mt('This may take a few moments to display.')); $r->rflush(); @@ -145,7 +145,8 @@ HEADER my $score = 0; # If we're not telling status and the answer date isn't passed yet, # it's an "attempted" point - if ($curRes->problemstatus($part) eq 'no' && + if ((($curRes->problemstatus($part) eq 'no') || + ($curRes->problemstatus($part) eq 'no_feedback_ever')) && ($dateStatus != $curRes->ANSWER_OPEN)) { my $status = $curRes->simpleStatus($part); if ($status == $curRes->ATTEMPTED) { @@ -275,8 +276,8 @@ HEADER my $maxHelpLink = Apache::loncommon::help_open_topic("Quick_Grades_Possibly_Correct"); $title = $showPoints ? "Points" : "Parts Done"; - - $r->print("Total $title: $totalRight
"); + my $totaltitle = $showPoints ? &mt("Awarded Total Points") : &mt("Total Parts Done"); + $r->print("$totaltitle: $totalRight
"); $r->print(&mt("Max Possible To Date")." $maxHelpLink: $totalPossible
"); $title = $showPoints ? "Points" : "Parts"; $r->print(&mt("Total $title In Course").": $totalParts\n\n");