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

matthew lon-capa-cvs@mail.lon-capa.org
Fri, 18 Mar 2005 00:19:35 -0000


matthew		Thu Mar 17 19:19:35 2005 EDT

  Modified files:              
    /loncom/interface	lonstatistics.pm 
  Log:
  &section_and_enrollment_description: better punctuation.
  
  
Index: loncom/interface/lonstatistics.pm
diff -u loncom/interface/lonstatistics.pm:1.120 loncom/interface/lonstatistics.pm:1.121
--- loncom/interface/lonstatistics.pm:1.120	Tue Mar 15 16:22:38 2005
+++ loncom/interface/lonstatistics.pm	Thu Mar 17 19:19:35 2005
@@ -1,6 +1,6 @@
 # The LearningOnline Network with CAPA
 #
-# $Id: lonstatistics.pm,v 1.120 2005/03/15 21:22:38 matthew Exp $
+# $Id: lonstatistics.pm,v 1.121 2005/03/18 00:19:35 matthew Exp $
 #
 # Copyright Michigan State University Board of Trustees
 #
@@ -367,14 +367,14 @@
     my @sections = &Apache::lonstatistics::get_selected_sections();
     my $description = &mt('Unable to determine section and enrollment');
     if (scalar(@sections) == 1 && $sections[0] ne 'all') {
-        $description = &mt('Section [_1]. [_2] enrollment status',
+        $description = &mt('Section [_1]. [_2] enrollment status.',
                            $sections[0],$ENV{'form.Status'});
     } elsif (scalar(@sections) && $sections[0] eq 'all') {
-        $description = &mt('All sections. [_1] enrollment status',
+        $description = &mt('All sections. [_1] enrollment status.',
                            $ENV{'form.Status'});
     } elsif (scalar(@sections)) {
         my $lastsection = pop(@sections);
-        $description = &mt('Sections [_1] and [_2]. [_3] enrollment status',
+        $description = &mt('Sections [_1] and [_2]. [_3] enrollment status.',
                            join(', ',@sections),$lastsection,
                            $ENV{'form.Status'});
     }