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

Source Code for Module lang.TR

 1  # -*- coding: utf-8 -*- 
 2   
 3  #    callirhoe - high quality calendar rendering 
 4  #    Copyright (C) 2012 George M. Tzoumas 
 5   
 6  """  Turkish language definition file""" 
 7  #    Copyright (C) 2013 Ece Neslihan Aybeke 
 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'Pazartesi', u'Salı', u' Çarşamba ', 
23               u'Perşembe', u'Cuma', u'Cumartesi', u'Pazar' ] 
24   
25  short_day_name = [ u'Pt', u'Sa', u'Ça', u'Pe', u'Cu', u'Ct', u'Pa' ] 
26   
27  long_month_name = [ '', u'Ocak', u'Şubat', u'Mart', u'Nisan', 
28                 u'Mayıs', u'Haziran', u'Temmuz', u'Ağustos', 
29                 u'Eylül', u'Ekim', u'Kasım', u'Aralık' ] 
30   
31  short_month_name = long_month_name 
32   
33  week_of_year_prefix = u'H' 
34