--- loncom/interface/statistics/longradinganalysis.pm 2011/12/21 21:25:51 1.11 +++ loncom/interface/statistics/longradinganalysis.pm 2014/02/26 16:01:56 1.14 @@ -1,6 +1,6 @@ # The LearningOnline Network with CAPA # -# $Id: longradinganalysis.pm,v 1.11 2011/12/21 21:25:51 www Exp $ +# $Id: longradinganalysis.pm,v 1.14 2014/02/26 16:01:56 raeburn Exp $ # # Copyright Michigan State University Board of Trustees # @@ -69,7 +69,10 @@ sub build_grading_analysis_page { my @students = @Apache::lonstatistics::Students; # if (@students < 1 && exists($env{'form.firstrun'})) { - $r->print('

There are no students in the sections/groups selected

'); + $r->print( + '

' + .&mt('There are no students in the sections/groups selected.') + .'

'); } # #my @cache_button_HTML = @@ -120,7 +123,7 @@ sub build_grading_analysis_page { $env{'form.problemchoice'}.'" />'); # if (! defined($current_problem->{'resource'})) { - $r->print('resource is undefined'); + $r->print('

'.&mt('resource is undefined').'

'); } else { my $resource = $current_problem->{'resource'}; $r->print('

'.$resource->compTitle.'

'); @@ -130,7 +133,10 @@ sub build_grading_analysis_page { if ($resource->is_task()) { &task_analysis($r,$resource,\@students); } else { - $r->print('

Analysis of '.$resource->src().' is not supported

'); + $r->print( + '

' + .&mt('Analysis of [_1] is not supported.',$resource->src()) + .'

'); } } $r->print('
'); @@ -271,10 +277,11 @@ sub init_excel_output { $format->{'h3'}); $excel_sheet->write($header_row,$cols_output++, - 'Compiled on '.localtime(time),$format->{'h3'}); + &mt('Compiled on [_1]',&Apache::lonlocal::locallocaltime(time)), + $format->{'h3'}); $cols_output = 0; foreach my $field ('Grader Name','Username','Grades Assigned') { - $excel_sheet->write($description_row,$cols_output++,$field, + $excel_sheet->write($description_row,$cols_output++,&mt($field), $format->{'bold'}); } return ($excel_workbook,$excel_sheet,$filename,$format,$rows_output); @@ -294,7 +301,7 @@ sub create_interface { foreach ('HTML','Excel','CSV') { $output_selector .= '