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

Source Code for Module lang.EL

 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  """Greek language definition file""" 
20   
21  long_day_name = [ u'Δευτέρα', u'Τρίτη', u'Τετάρτη', 
22               u'Πέμπτη', u'Παρασκευή', u'Σάββατο', u'Κυριακή' ] 
23   
24  short_day_name = [ u'Δε', u'Τρ', u'Τε', u'Πε', u'Πα', u'Σα', u'Κυ' ] 
25   
26  long_month_name = [ '', u'Ιανουάριος', u'Φεβρουάριος', u'Μάρτιος', u'Απρίλιος', 
27                 u'Μάιος', u'Ιούνιος', u'Ιούλιος', u'Αύγουστος',  
28                 u'Σεπτέμβριος', u'Οκτώβριος', u'Νοέμβριος', u'Δεκέμβριος' ] 
29   
30  short_month_name = [ '', u'Ιαν', u'Φεβ', u'Μαρ', u'Απρ', u'Μαϊ', u'Ιον', u'Ιολ',  
31                       u'Αυγ', u'Σεπ', u'Οκτ', u'Νοε', u'Δεκ' ] 
32   
33  week_of_year_prefix = u'Ε' 
34