Upgrade to ExtJS 3.3.1 - Released 11/30/2010
[extjs.git] / src / locale / ext-lang-tr.js
1 /*!
2  * Ext JS Library 3.3.1
3  * Copyright(c) 2006-2010 Sencha Inc.
4  * licensing@sencha.com
5  * http://www.sencha.com/license
6  */
7 /**
8  * List compiled by mystix on the extjs.com forums.
9  * Thank you Mystix!
10  *
11  * Turkish translation by Alper YAZGAN
12  * 2008-01-24, 10:29 AM 
13  * 
14  * Updated to 2.2 by YargicX
15  * 2008-10-05, 06:22 PM
16  */
17
18 Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">Yükleniyor ...</div>';
19
20 if(Ext.View){
21   Ext.View.prototype.emptyText = "";
22 }
23
24 if(Ext.grid.Grid){
25   Ext.grid.Grid.prototype.ddText = "Seçili satýr sayýsý : {0}";
26 }
27
28 if(Ext.TabPanelItem){
29   Ext.TabPanelItem.prototype.closeText = "Sekmeyi kapat";
30 }
31
32 if(Ext.form.Field){
33   Ext.form.Field.prototype.invalidText = "Bu alandaki deðer geçersiz";
34 }
35
36 if(Ext.LoadMask){
37   Ext.LoadMask.prototype.msg = "Yükleniyor ...";
38 }
39
40 Date.monthNames = [
41   "Ocak",
42   "Þžubat",
43   "Mart",
44   "Nisan",
45   "Mayýs",
46   "Haziran",
47   "Temmuz",
48   "Aðustos",
49   "Eylül",
50   "Ekim",
51   "Kasým",
52   "Aralýk"
53 ];
54
55 Date.getShortMonthName = function(month) {
56   return Date.monthNames[month].substring(0, 3);
57 };
58
59 Date.monthNumbers = {
60   Jan : 0,
61   Feb : 1,
62   Mar : 2,
63   Apr : 3,
64   May : 4,
65   Jun : 5,
66   Jul : 6,
67   Aug : 7,
68   Sep : 8,
69   Oct : 9,
70   Nov : 10,
71   Dec : 11
72 };
73
74 Date.getMonthNumber = function(name) {
75   return Date.monthNumbers[name.substring(0, 1).toUpperCase() + name.substring(1, 3).toLowerCase()];
76 };
77
78 Date.dayNames = [
79   "Pazar",
80   "Pazartesi",
81   "Salý",
82   "LJarþŸamba",
83   "PerþŸembe",
84   "Cuma",
85   "Cumartesi"
86 ];
87
88 Date.shortDayNames = [
89   "Paz",
90   "Pzt",
91   "Sal",
92   "ÇrþŸ",
93   "Prþ",
94   "Cum",
95   "Cmt"
96 ];
97
98 Date.getShortDayName = function(day) {
99   return Date.shortDayNames[day];
100 };
101
102 if(Ext.MessageBox){
103   Ext.MessageBox.buttonText = {
104     ok     : "Tamam",
105     cancel : "Ä°ptal",
106     yes    : "Evet",
107     no     : "Hayýr"
108   };
109 }
110
111 if(Ext.util.Format){
112   Ext.util.Format.date = function(v, format){
113     if(!v) return "";
114     if(!(v instanceof Date)) v = new Date(Date.parse(v));
115     return v.dateFormat(format || "d/m/Y");
116   };
117 }
118
119 if(Ext.DatePicker){
120   Ext.apply(Ext.DatePicker.prototype, {
121     todayText         : "Bugün",
122     minText           : "Bu tarih izin verilen en küçük tarihten daha önce",
123     maxText           : "Bu tarih izin verilen en büyük tarihten daha sonra",
124     disabledDaysText  : "",
125     disabledDatesText : "",
126     monthNames        : Date.monthNames,
127     dayNames          : Date.dayNames,
128     nextText          : 'Gelecek Ay (Control+Right)',
129     prevText          : 'Önceki Ay (Control+Left)',
130     monthYearText     : 'Bir ay sŸeçiniz (Yýlý artýrmak/azaltmak için Control+Up/Down)',
131     todayTip          : "{0} (BoþŸluk TuþŸu - Spacebar)",
132     format            : "d/m/Y",
133     okText            : "&#160;Tamam&#160;",
134     cancelText        : "Ä°ptal",
135     startDay          : 1
136   });
137 }
138
139 if(Ext.PagingToolbar){
140   Ext.apply(Ext.PagingToolbar.prototype, {
141     beforePageText : "Sayfa",
142     afterPageText  : " / {0}",
143     firstText      : "Ä°lk Sayfa",
144     prevText       : "Önceki Sayfa",
145     nextText       : "Sonraki Sayfa",
146     lastText       : "Son Sayfa",
147     refreshText    : "Yenile",
148     displayMsg     : "Gösterilen {0} - {1} / {2}",
149     emptyMsg       : 'Gösterilebilecek veri yok'
150   });
151 }
152
153 if(Ext.form.TextField){
154   Ext.apply(Ext.form.TextField.prototype, {
155     minLengthText : "Girilen verinin uzunluðu en az {0} olabilir",
156     maxLengthText : "Girilen verinin uzunluðu en fazla {0} olabilir",
157     blankText     : "Bu alan boþŸ býrakýlamaz",
158     regexText     : "",
159     emptyText     : null
160   });
161 }
162
163 if(Ext.form.NumberField){
164   Ext.apply(Ext.form.NumberField.prototype, {
165     minText : "En az {0} girilebilir",
166     maxText : "En çok {0} girilebilir",
167     nanText : "{0} geçersiz bir sayýdýr"
168   });
169 }
170
171 if(Ext.form.DateField){
172   Ext.apply(Ext.form.DateField.prototype, {
173     disabledDaysText  : "Disabled",
174     disabledDatesText : "Disabled",
175     minText           : "Bu tarih, {0} tarihinden daha sonra olmalýdýr", 
176     maxText           : "Bu tarih, {0} tarihinden daha önce olmalýdýr",
177     invalidText       : "{0} geçersiz bir tarihdir - tarih formatý {1} þŸeklinde olmalýdýr",
178     format            : "d/m/Y",
179     altFormats        : "d.m.y|d.m.Y|d/m/y|d-m-Y|d-m-y|d.m|d/m|d-m|dm|dmY|dmy|d|Y.m.d|Y-m-d|Y/m/d",
180     startDay          : 1
181   });
182 }
183
184 if(Ext.form.ComboBox){
185   Ext.apply(Ext.form.ComboBox.prototype, {
186     loadingText       : "Yükleniyor ...",
187     valueNotFoundText : undefined
188   });
189 }
190
191 if(Ext.form.VTypes){
192         Ext.form.VTypes["emailText"]='Bu alan "user@example.com" þŸeklinde elektronik posta formatýnda olmalýdýr';
193         Ext.form.VTypes["urlText"]='Bu alan "http://www.example.com" þŸeklinde URL adres formatýnda olmalýdýr';
194         Ext.form.VTypes["alphaText"]='Bu alan sadece harf ve _ içermeli';
195         Ext.form.VTypes["alphanumText"]='Bu alan sadece harf, sayý ve _ içermeli';
196 }
197
198 if(Ext.form.HtmlEditor){
199   Ext.apply(Ext.form.HtmlEditor.prototype, {
200     createLinkText : 'Lütfen bu baðlantý için gerekli URL adresini giriniz:',
201     buttonTips : {
202       bold : {
203         title: 'Kalýn(Bold) (Ctrl+B)',
204         text: 'Þžeçili yazýyý kalýn yapar.',
205         cls: 'x-html-editor-tip'
206       },
207       italic : {
208         title: 'Ä°talik(Italic) (Ctrl+I)',
209         text: 'Þžeçili yazýyý italik yapar.',
210         cls: 'x-html-editor-tip'
211       },
212       underline : {
213         title: 'Alt Ã‡izgi(Underline) (Ctrl+U)',
214         text: 'Þžeçili yazýnýn altýný çizer.',
215         cls: 'x-html-editor-tip'
216       },
217       increasefontsize : {
218         title: 'Fontu büyült',
219         text: 'Yazý fontunu büyütür.',
220         cls: 'x-html-editor-tip'
221       },
222       decreasefontsize : {
223         title: 'Fontu küçült',
224         text: 'Yazý fontunu küçültür.',
225         cls: 'x-html-editor-tip'
226       },
227       backcolor : {
228         title: 'Arka Plan Rengi',
229         text: 'Seçili yazýnýn arka plan rengini deðiþŸtir.',
230         cls: 'x-html-editor-tip'
231       },
232       forecolor : {
233         title: 'Yazý Rengi',
234         text: 'Seçili yazýnýn rengini deðiþŸtir.',
235         cls: 'x-html-editor-tip'
236       },
237       justifyleft : {
238         title: 'Sola Daya',
239         text: 'Yazýyý sola daya.',
240         cls: 'x-html-editor-tip'
241       },
242       justifycenter : {
243         title: 'Ortala',
244         text: 'Yazýyý editörde ortala.',
245         cls: 'x-html-editor-tip'
246       },
247       justifyright : {
248         title: 'Saða daya',
249         text: 'Yazýyý saða daya.',
250         cls: 'x-html-editor-tip'
251       },
252       insertunorderedlist : {
253         title: 'Noktalý Liste',
254         text: 'Noktalý listeye baþŸla.',
255         cls: 'x-html-editor-tip'
256       },
257       insertorderedlist : {
258         title: 'Numaralý Liste',
259         text: 'Numaralý lisyeye baþŸla.',
260         cls: 'x-html-editor-tip'
261       },
262       createlink : {
263         title: 'Web Adresi(Hyperlink)',
264         text: 'Seçili yazýyý web adresi(hyperlink) yap.',
265         cls: 'x-html-editor-tip'
266       },
267       sourceedit : {
268         title: 'Kaynak kodu Düzenleme',
269         text: 'Kaynak kodu düzenleme moduna geç.',
270         cls: 'x-html-editor-tip'
271       }
272     }
273   });
274 }
275
276 if(Ext.grid.GridView){
277   Ext.apply(Ext.grid.GridView.prototype, {
278     sortAscText  : "Artan sýrada sýrala",
279     sortDescText : "Azalan sýrada sýrala",
280     lockText     : "Kolonu kilitle",
281     unlockText   : "Kolon kilidini kaldýr",
282     columnsText  : "Kolonlar"
283   });
284 }
285
286 if(Ext.grid.GroupingView){
287   Ext.apply(Ext.grid.GroupingView.prototype, {
288     emptyGroupText : '(Yok)',
289     groupByText    : 'Bu Alana Göre Grupla',
290     showGroupsText : 'Gruplar Halinde Göster'
291   });
292 }
293
294 if(Ext.grid.PropertyColumnModel){
295   Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
296     nameText   : "Ad",
297     valueText  : "Deðer",
298     dateFormat : "d/m/Y"
299   });
300 }
301
302 if(Ext.layout.BorderLayout.SplitRegion){
303   Ext.apply(Ext.layout.BorderLayout.SplitRegion.prototype, {
304     splitTip            : "Yeniden boyutlandýrmak için sürükle.",
305     collapsibleSplitTip : "Yeniden boyutlandýrmak için sürükle. Saklamak için çift týkla."
306   });
307 }