Diff for /loncom/localize/localize/en.pm between versions 1.4 and 1.6

version 1.4, 2006/12/23 06:16:30 version 1.6, 2013/08/27 03:30:40
Line 39  use base qw(Apache::localize); Line 39  use base qw(Apache::localize);
  'char_encoding'=> 'UTF-8',   'char_encoding'=> 'UTF-8',
  'language_code'=> 'en',   'language_code'=> 'en',
   
  '_empty_mail_folder'  
  => sub {  
      my (undef,$status,$description) = @_;  
      if ($status eq '') {  
  return 'Empty Folder';  
      } elsif ($status eq 'replied') {  
  return 'You have not replied to any messages in this folder.';  
      } else {   
  return 'There are no '.lc($description).' messages in this folder.';  
      }  
  },  
   
  '_location_in_mail_folder'  
  => sub {  
      my (undef,$status,$description,$first,$finish,$total) = @_;  
      if ($msgstatus eq '') { $description = 'All'; }  
   
      return '<b>'.$description.' messages</b>: showing messages '.$first.  
  ' through '.$finish.' of '.$total.'.';  
  },  
   
 #SYNCMARKER  #SYNCMARKER
 );  );
   

Removed from v.1.4  
changed lines
  Added in v.1.6


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>