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

Source Code for Module lang.FR

 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  """French language definition file""" 
20   
21  long_day_name = [ u'Lundi', u'Mardi', u'Mercredi', 
22               u'Jeudi', u'Vendredi', u'Samedi', u'Dimanche' ] 
23   
24  short_day_name = [ u'Lu', u'Ma', u'Me', u'Je', u'Ve', u'Sa', u'Di' ] 
25   
26  long_month_name = [ '', 
27                 u'Janvier', u'Février', u'Mars', u'Avril',  
28                 u'Mai', u'Juin', u'Juillet', u'Août',  
29                 u'Septembre', u'Octobre', u'Novembre', u'Décembre' ] 
30   
31  short_month_name = [ '', u'Jan', u'Fév', u'Mar', u'Avr', u'Mai', u'Jun', u'Jul',  
32                       u'Aoû', u'Sep', u'Oct', u'Nov', u'Déc' ] 
33   
34  week_of_year_prefix = u'S' 
35