[LON-CAPA-cvs] cvs: loncom /interface coursecatalog.pm

bisitz lon-capa-cvs-allow@mail.lon-capa.org
Fri, 20 Jun 2008 13:45:16 -0000


bisitz		Fri Jun 20 09:45:16 2008 EDT

  Modified files:              
    /loncom/interface	coursecatalog.pm 
  Log:
  Localization:
  Optimized &mt() calls for "Note for students"
  
  
Index: loncom/interface/coursecatalog.pm
diff -u loncom/interface/coursecatalog.pm:1.30 loncom/interface/coursecatalog.pm:1.31
--- loncom/interface/coursecatalog.pm:1.30	Thu May 29 15:58:32 2008
+++ loncom/interface/coursecatalog.pm	Fri Jun 20 09:45:12 2008
@@ -1,7 +1,7 @@
 # The LearningOnline Network with CAPA
 # Handler for displaying the course catalog interface
 #
-# $Id: coursecatalog.pm,v 1.30 2008/05/29 19:58:32 raeburn Exp $
+# $Id: coursecatalog.pm,v 1.31 2008/06/20 13:45:12 bisitz Exp $
 #
 # Copyright Michigan State University Board of Trustees
 #
@@ -619,7 +619,9 @@
             return $output;
         }
         if ($knownuser && !$env{'form.showdetails'}) {
-            $output = &mt('<b>Note for students:</b> If you are officially enrolled in a course but the course is not listed in your LON-CAPA courses, click the "Show more details" link for the specific course and check the default access dates and/or automated enrollment settings.<br /><br />');
+            $output = '<b>'.&mt('Note for students:').'</b> '
+                     .&mt('If you are officially enrolled in a course but the course is not listed in your LON-CAPA courses, click the "Show more details" link for the specific course and check the default access dates and/or automated enrollment settings.')
+                     .'<br /><br />';
         }
     }
     my $now = time;