Mercurial > hg > soundsoftware-site
comparison public/javascripts/calendar/lang/.svn/text-base/calendar-tr.js.svn-base @ 0:513646585e45
* Import Redmine trunk SVN rev 3859
author | Chris Cannam |
---|---|
date | Fri, 23 Jul 2010 15:52:44 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:513646585e45 |
---|---|
1 // ** I18N | |
2 | |
3 // Calendar EN language | |
4 // Author: Mihai Bazon, <mihai_bazon@yahoo.com> | |
5 // Encoding: any | |
6 // Distributed under the same terms as the calendar itself. | |
7 | |
8 // For translators: please use UTF-8 if possible. We strongly believe that | |
9 // Unicode is the answer to a real internationalized world. Also please | |
10 // include your contact information in the header, as can be seen above. | |
11 | |
12 // full day names | |
13 Calendar._DN = new Array | |
14 ("Pazar", | |
15 "Pazartesi", | |
16 "Salı", | |
17 "Çarşamba", | |
18 "Perşembe", | |
19 "Cuma", | |
20 "Cumartesi", | |
21 "Pazar"); | |
22 | |
23 // Please note that the following array of short day names (and the same goes | |
24 // for short month names, _SMN) isn't absolutely necessary. We give it here | |
25 // for exemplification on how one can customize the short day names, but if | |
26 // they are simply the first N letters of the full name you can simply say: | |
27 // | |
28 // Calendar._SDN_len = N; // short day name length | |
29 // Calendar._SMN_len = N; // short month name length | |
30 // | |
31 // If N = 3 then this is not needed either since we assume a value of 3 if not | |
32 // present, to be compatible with translation files that were written before | |
33 // this feature. | |
34 | |
35 // short day names | |
36 Calendar._SDN = new Array | |
37 ("Paz", | |
38 "Pzt", | |
39 "Sal", | |
40 "Çar", | |
41 "Per", | |
42 "Cum", | |
43 "Cmt", | |
44 "Paz"); | |
45 | |
46 // First day of the week. "0" means display Sunday first, "1" means display | |
47 // Monday first, etc. | |
48 Calendar._FD = 1; | |
49 | |
50 // full month names | |
51 Calendar._MN = new Array | |
52 ("Ocak", | |
53 "Şubat", | |
54 "Mart", | |
55 "Nisan", | |
56 "Mayıs", | |
57 "Haziran", | |
58 "Temmuz", | |
59 "Ağustos", | |
60 "Eylül", | |
61 "Ekim", | |
62 "Kasım", | |
63 "Aralık"); | |
64 | |
65 // short month names | |
66 Calendar._SMN = new Array | |
67 ("Oca", | |
68 "Şub", | |
69 "Mar", | |
70 "Nis", | |
71 "May", | |
72 "Haz", | |
73 "Tem", | |
74 "Ağu", | |
75 "Eyl", | |
76 "Eki", | |
77 "Kas", | |
78 "Ara"); | |
79 | |
80 // tooltips | |
81 Calendar._TT = {}; | |
82 Calendar._TT["INFO"] = "Takvim hakkında"; | |
83 | |
84 Calendar._TT["ABOUT"] = | |
85 "DHTML Tarih/Zaman Seçici\n" + | |
86 "(c) dynarch.com 2002-2005 / Author: Mihai Bazon\n" + // don't translate this this ;-) | |
87 "For latest version visit: http://www.dynarch.com/projects/calendar/\n" + | |
88 "Distributed under GNU LGPL. See http://gnu.org/licenses/lgpl.html for details." + | |
89 "\n\n" + | |
90 "Tarih Seçimi:\n" + | |
91 "- Yıl seçmek için \xab, \xbb tuşlarını kullanın\n" + | |
92 "- Ayı seçmek için " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " tuşlarını kullanın\n" + | |
93 "- Hızlı seçim için yukardaki butonların üzerinde farenin tuşuna basılı tutun."; | |
94 Calendar._TT["ABOUT_TIME"] = "\n\n" + | |
95 "Zaman Seçimi:\n" + | |
96 "- Arttırmak için herhangi bir zaman bölümüne tıklayın\n" + | |
97 "- ya da azaltmak için Shift+tıkla yapın\n" + | |
98 "- ya da daha hızlı bir seçim için tıklayın ve sürükleyin."; | |
99 | |
100 Calendar._TT["PREV_YEAR"] = "Öncki yıl (Menu için basılı tutun)"; | |
101 Calendar._TT["PREV_MONTH"] = "Önceki ay (Menu için basılı tutun)"; | |
102 Calendar._TT["GO_TODAY"] = "Bugüne Git"; | |
103 Calendar._TT["NEXT_MONTH"] = "Sonraki Ay (Menu için basılı tutun)"; | |
104 Calendar._TT["NEXT_YEAR"] = "Next year (Menu için basılı tutun)"; | |
105 Calendar._TT["SEL_DATE"] = "Tarih seçin"; | |
106 Calendar._TT["DRAG_TO_MOVE"] = "Taşımak için sürükleyin"; | |
107 Calendar._TT["PART_TODAY"] = " (bugün)"; | |
108 | |
109 // the following is to inform that "%s" is to be the first day of week | |
110 // %s will be replaced with the day name. | |
111 Calendar._TT["DAY_FIRST"] = "%s : önce göster"; | |
112 | |
113 // This may be locale-dependent. It specifies the week-end days, as an array | |
114 // of comma-separated numbers. The numbers are from 0 to 6: 0 means Sunday, 1 | |
115 // means Monday, etc. | |
116 Calendar._TT["WEEKEND"] = "1,0"; | |
117 | |
118 Calendar._TT["CLOSE"] = "Kapat"; | |
119 Calendar._TT["TODAY"] = "Bugün"; | |
120 Calendar._TT["TIME_PART"] = "Değeri değiştirmek için (Shift-)tıkla veya sürükle"; | |
121 | |
122 // date formats | |
123 Calendar._TT["DEF_DATE_FORMAT"] = "%d-%m-%Y"; | |
124 Calendar._TT["TT_DATE_FORMAT"] = "%a, %b %e"; | |
125 | |
126 Calendar._TT["WK"] = "Hafta"; | |
127 Calendar._TT["TIME"] = "Saat:"; |