--- loncom/interface/multidownload.pl 2007/05/23 19:31:21 1.33 +++ loncom/interface/multidownload.pl 2007/05/23 20:40:44 1.35 @@ -2,7 +2,7 @@ # CGI-script to allow download of all essay submissions of # multiple students. # -# $Id: multidownload.pl,v 1.33 2007/05/23 19:31:21 banghart Exp $ +# $Id: multidownload.pl,v 1.35 2007/05/23 20:40:44 banghart Exp $ # Copyright Michigan State University Board of Trustees # # This file is part of the LearningOnline Network with CAPA (LON-CAPA). @@ -140,7 +140,8 @@ if (&Apache::lonnet::allowed('vgr',$scop foreach my $file (split(',',$record{"resource.$partid.$respid.portfiles"})) { $file = $file_url.$file; my ($file_name_only) = ($file =~ /^.*\/(.+$)/); - print MANIFEST ("\t$file_name_only \n"); + print MANIFEST ("\t$file_name_only (".&mt("Part [_1]",$partid). + ") (".&mt("Response [_1]",$respid).")"."\n"); $submission_count ++; &Apache::lonnet::repcopy($file); my $source = &Apache::lonnet::filelocation("",$file); @@ -163,7 +164,7 @@ if (&Apache::lonnet::allowed('vgr',$scop } } if (!$submission_count) { - print MANIFEST ("\tNo Files Submitted \n"); + print MANIFEST ("\t".&mt("No Files Submitted")."\n"); } }