--- loncom/homework/grades.pm 2007/08/21 18:41:27 1.430
+++ loncom/homework/grades.pm 2007/08/21 18:48:18 1.431
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# The LON-CAPA Grading handler
#
-# $Id: grades.pm,v 1.430 2007/08/21 18:41:27 banghart Exp $
+# $Id: grades.pm,v 1.431 2007/08/21 18:48:18 banghart Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -2975,11 +2975,11 @@ sub viewgrades {
if ($env{'form.section'} eq 'all') {
$sectionClass='Class ';
} elsif ($env{'form.section'} eq 'none') {
- $sectionClass='Students in no Section ';
+ $sectionClass=&mt('Students in no Section').'';
} else {
- $sectionClass='Students in Section(s) '.$section_display.'';
+ $sectionClass=&mt('Students in Section(s) [_1]',$section_display).'';
}
- $result.='
Assign Common Grade To '.$sectionClass;
+ $result.=''.&mt('Assign Common Grade To [_1]',$sectionClass);
$result.= '
'."\n".
'';
#radio buttons/text box for assigning points for a section or class.
|
|