[LON-CAPA-cvs] cvs: loncom /interface lonmeta.pm
albertel
lon-capa-cvs-allow@mail.lon-capa.org
Sat, 12 May 2007 23:04:10 -0000
albertel Sat May 12 19:04:10 2007 EDT
Modified files:
/loncom/interface lonmeta.pm
Log:
- BUG#5248, update wording to be mroe accurate
Index: loncom/interface/lonmeta.pm
diff -u loncom/interface/lonmeta.pm:1.206 loncom/interface/lonmeta.pm:1.207
--- loncom/interface/lonmeta.pm:1.206 Tue May 1 21:33:49 2007
+++ loncom/interface/lonmeta.pm Sat May 12 19:04:07 2007
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# Metadata display handler
#
-# $Id: lonmeta.pm,v 1.206 2007/05/02 01:33:49 albertel Exp $
+# $Id: lonmeta.pm,v 1.207 2007/05/12 23:04:07 albertel Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -1026,17 +1026,17 @@
#
# New assessment statistics
$r->print('<h4>'.
- &mt('Detailed Assessment Statistical Data').
+ &mt('Recent Detailed Assessment Statistical Data').
'</h4>');
my $table = '<table cellspacing="2" border="0">'.
'<tr>'.
- '<th>Course</th>'.
- '<th>Section(s)</th>'.
- '<th>Num Students</th>'.
- '<th>Mean Tries</th>'.
- '<th>Degree of Difficulty</th>'.
- '<th>Degree of Discrimination</th>'.
- '<th>Time of computation</th>'.
+ '<th>'.&mt('Course').'</th>'.
+ '<th>'.&mt('Section(s)').'</th>'.
+ '<th>'.&mt('Num Student').'s</th>'.
+ '<th>'.&mt('Mean Tries').'</th>'.
+ '<th>'.&mt('Degree of Difficulty').'</th>'.
+ '<th>'.&mt('Degree of Discrimination').'</th>'.
+ '<th>'.&mt('Time of computation').'</th>'.
'</tr>'.$/;
foreach my $identifier (sort(keys(%{$dynmeta{'stats'}}))) {
my $data = $dynmeta{'stats'}->{$identifier};