Package lang :: Module EN
[hide private]
[frames] | no frames]

Source Code for Module lang.EN

 1  # -*- coding: utf-8 -*- 
 2   
 3  #    callirhoe - high quality calendar rendering 
 4  #    Copyright (C) 2012 George M. Tzoumas 
 5   
 6  #    This program is free software: you can redistribute it and/or modify 
 7  #    it under the terms of the GNU General Public License as published by 
 8  #    the Free Software Foundation, either version 3 of the License, or 
 9  #    (at your option) any later version. 
10  # 
11  #    This program is distributed in the hope that it will be useful, 
12  #    but WITHOUT ANY WARRANTY; without even the implied warranty of 
13  #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
14  #    GNU General Public License for more details. 
15  # 
16  #    You should have received a copy of the GNU General Public License 
17  #    along with this program.  If not, see http://www.gnu.org/licenses/ 
18   
19  """English language definition file""" 
20   
21  long_day_name = [ u'Monday', u'Tuesday', u'Wednesday', 
22               u'Thursday', u'Friday', u'Saturday', u'Sunday' ]          
23   
24  short_day_name = [ u'Mo', u'Tu', u'We', u'Th', u'Fr', u'Sa', u'Su' ] 
25   
26  long_month_name = [ '', 
27                 u'January', u'February', u'March', u'April',  
28                 u'May', u'June', u'July', u'August',  
29                 u'September', u'October', u'November', u'December' ] 
30   
31  short_month_name = [ '',  
32                 u'Jan', u'Feb', u'Mar', u'Apr', u'May', u'Jun',  
33                 u'Jul', u'Aug', u'Sep', u'Oct', u'Nov', u'Dec' ] 
34   
35  week_of_year_prefix = u'W' 
36