[LON-CAPA-cvs] cvs: loncom /homework grades.pm

raeburn raeburn@source.lon-capa.org
Mon, 20 Dec 2010 22:01:27 -0000


raeburn		Mon Dec 20 22:01:27 2010 EDT

  Modified files:              
    /loncom/homework	grades.pm 
  Log:
  - Fix typos.
  - Eliminate escaped quotes.
    - No localization phrases to update as keys are not currently in localize/*.pm files. 
  
  
Index: loncom/homework/grades.pm
diff -u loncom/homework/grades.pm:1.641 loncom/homework/grades.pm:1.642
--- loncom/homework/grades.pm:1.641	Mon Dec 20 21:23:38 2010
+++ loncom/homework/grades.pm	Mon Dec 20 22:01:26 2010
@@ -1,7 +1,7 @@
 # The LearningOnline Network with CAPA
 # The LON-CAPA Grading handler
 #
-# $Id: grades.pm,v 1.641 2010/12/20 21:23:38 raeburn Exp $
+# $Id: grades.pm,v 1.642 2010/12/20 22:01:26 raeburn Exp $
 #
 # Copyright Michigan State University Board of Trustees
 #
@@ -6199,15 +6199,15 @@
     if ( $env{'form.selectpage'} eq '' ||
 	 $env{'form.scantron_selectfile'} eq '' ||
 	 $env{'form.scantron_format'} eq '' ) {
-	$r->print("<p>".&mt('You have forgetten to specify some information. Please go Back and try again.')."</p>");
+	$r->print("<p>".&mt('You have forgotten to specify some information. Please go Back and try again.')."</p>");
 	if ( $env{'form.selectpage'} eq '') {
 	    $r->print('<p><span class="LC_error">'.&mt('You have not selected a Sequence to grade').'</span></p>');
 	} 
 	if ( $env{'form.scantron_selectfile'} eq '') {
-	    $r->print('<p><span class="LC_error">'.&mt('You have not selected a file that contains the student\'s response data.').'</span></p>');
+	    $r->print('<p><span class="LC_error">'.&mt("You have not selected a file that contains the student's response data.").'</span></p>');
 	} 
 	if ( $env{'form.scantron_format'} eq '') {
-	    $r->print('<p><span class="LC_error">'.&mt('You have not selected a the format of the student\'s response data.').'</span></p>');
+	    $r->print('<p><span class="LC_error">'.&mt("You have not selected the format of the student's response data.").'</span></p>');
 	} 
     } else {
 	my $warning=&scantron_warning_screen('Grading: Validate Records');