--- loncom/interface/statistics/lonstudentassessment.pm 2012/02/17 00:49:46 1.167 +++ loncom/interface/statistics/lonstudentassessment.pm 2012/12/16 16:59:34 1.171 @@ -1,6 +1,6 @@ # The LearningOnline Network with CAPA # -# $Id: lonstudentassessment.pm,v 1.167 2012/02/17 00:49:46 droeschl Exp $ +# $Id: lonstudentassessment.pm,v 1.171 2012/12/16 16:59:34 raeburn Exp $ # # Copyright Michigan State University Board of Trustees # @@ -838,9 +838,9 @@ sub html_outputstudent { if ($field eq 'comments') { $title = ''.&mt('Comments').''; } + utf8::decode($title); my $base = length($title); my $width=$Apache::lonstatistics::StudentData{$field}->{'width'}; - utf8::decode($title); $Str .= $title.' 'x($width-$base).$padding; } # Get ALL the students data @@ -1120,7 +1120,7 @@ sub excel_initialize { } my $too_many_cols_error_message = '

'.&mt('Unable to Complete Request').'

'.$/. - '

'.&mt('LON-CAPA is unable to produce your Excel spreadsheet because your selections will result in more than 255 columns. Excel allows only 255 columns in a spreadsheet.').'

'.$/. + '

'.&mt('LON-CAPA is unable to produce your Excel spreadsheet because your selections will result in more than 255 columns. Excel allows only 255 columns in a spreadsheet.').'

'.$/. '

'.&mt('You may consider reducing the number of Sequences or Folders you have selected.').'

'.$/. '

'.&mt('LON-CAPA can produce CSV files of this data or Excel files of the Scores Summary data.').'

'.$/; if ($chosen_output->{'base'} eq 'tries' && $total_columns > 255) { @@ -1179,7 +1179,7 @@ sub excel_initialize { my $sectionstring = ''; my @Sections = &Apache::lonstatistics::get_selected_sections(); $excel_sheet->write($header_row,$cols_output++, - &Apache::lonstatistics::section_and_enrollment_description('plaintext'), + &Apache::lonstatistics::section_and_enrollment_description('localized'), $format->{'h3'}); # # Put the date in there too @@ -1203,7 +1203,7 @@ sub excel_initialize { # Add the student headers $cols_output = 0; foreach my $field (&get_student_fields_to_show()) { - $excel_sheet->write($resource_name_row,$cols_output++,$field, + $excel_sheet->write($resource_name_row,$cols_output++,&mt($field), $format->{'bold'}); } # @@ -1654,12 +1654,13 @@ sub csv_initialize{ # Deal with unimplemented requests $request_aborted = undef; if ($chosen_output->{'base'} =~ /final table/) { - $r->print(<Unable to Complete Request -

-The Summary Table (Scores) option is not available for non-HTML output. -

-END + $r->print( + '

'.&mt('Unable to Complete Request').'

' + .'

' + .&mt('The [_1]Summary Table (Scores)[_2] option' + .' is not available for non-HTML output.','','') + .'

' + ); $request_aborted = 1; } return if ($request_aborted);