[LON-CAPA-cvs] cvs: loncom /xml lonxml.pm

bisitz lon-capa-cvs-allow@mail.lon-capa.org
Thu, 29 May 2008 15:43:06 -0000


bisitz		Thu May 29 11:43:06 2008 EDT

  Modified files:              
    /loncom/xml	lonxml.pm 
  Log:
  Same mathrendering optionlist texts as in lonparmset.pm and lonpreferences.pm
  
  
Index: loncom/xml/lonxml.pm
diff -u loncom/xml/lonxml.pm:1.478 loncom/xml/lonxml.pm:1.479
--- loncom/xml/lonxml.pm:1.478	Tue May 27 21:32:59 2008
+++ loncom/xml/lonxml.pm	Thu May 29 11:43:01 2008
@@ -1,7 +1,7 @@
 # The LearningOnline Network with CAPA
 # XML Parser Module 
 #
-# $Id: lonxml.pm,v 1.478 2008/05/28 01:32:59 www Exp $
+# $Id: lonxml.pm,v 1.479 2008/05/29 15:43:01 bisitz Exp $
 #
 # Copyright Michigan State University Board of Trustees
 #
@@ -1507,17 +1507,17 @@
     }
     return
        '<span class="LC_nobreak">'.
-       &mt('Language: ').
+       &mt('Language:').' '.
        &Apache::loncommon::select_form($env{'form.languages'},'languages',
                                                      %langchoices).'
      </span>
      <span class="LC_nobreak">'.
-       &mt('Math Rendering: ').
+       &mt('Math Rendering:').' '.
        &Apache::loncommon::select_form($env{'form.texengine'},'texengine',
                                                      ('' => '',
-                                                      'tth' => 'tth',
+                                                      'tth' => 'tth (Tex-to-HTML)',
                                                       'jsMath' => 'jsMath',
-                                                      'mimetex' => 'mimetex')).'
+                                                      'mimetex' => 'mimetex (Convert to Images)')).'
      </span>';
 }