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

Source Code for Module lang.DE

 1  # -*- coding: utf-8 -*- 
 2   
 3  #    callirhoe - high quality calendar rendering 
 4  #    Copyright (C) 2012 George M. Tzoumas 
 5   
 6  """  German language definition file""" 
 7  #    Copyright (C) 2013 Neels Hofmeyr 
 8   
 9  #    This program is free software: you can redistribute it and/or modify 
10  #    it under the terms of the GNU General Public License as published by 
11  #    the Free Software Foundation, either version 3 of the License, or 
12  #    (at your option) any later version. 
13  # 
14  #    This program is distributed in the hope that it will be useful, 
15  #    but WITHOUT ANY WARRANTY; without even the implied warranty of 
16  #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
17  #    GNU General Public License for more details. 
18  # 
19  #    You should have received a copy of the GNU General Public License 
20  #    along with this program.  If not, see http://www.gnu.org/licenses/ 
21   
22  long_day_name = [ u'Montag', u'Dienstag', u'Mittwoch', 
23               u'Donnerstag', u'Freitag', u'Samstag', u'Sonntag' ] 
24   
25  short_day_name = [ u'Mo', u'Di', u'Mi', u'Do', u'Fr', u'Sa', u'So' ] 
26   
27  long_month_name = [ '', 
28                 u'Januar', u'Februar', u'März', u'April',  
29                 u'Mai', u'Juni', u'Juli', u'August',  
30                 u'September', u'Oktober', u'November', u'Dezember' ] 
31   
32  short_month_name = [ '',  
33                 u'Jan', u'Feb', u'Mrz', u'Apr', u'Mai', u'Jun',  
34                 u'Jul', u'Aug', u'Sep', u'Okt', u'Nov', u'Dez' ] 
35   
36  week_of_year_prefix = u'W' 
37