Upgrade to ExtJS 3.0.0 - Released 07/06/2009
[extjs.git] / docs / source / ext-lang-tr.html
1 <html>\r
2 <head>\r
3   <title>The source code</title>\r
4     <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />\r
5     <script type="text/javascript" src="../resources/prettify/prettify.js"></script>\r
6 </head>\r
7 <body  onload="prettyPrint();">\r
8     <pre class="prettyprint lang-js"><div id="prop-Ext.data.XmlStore-indicatorText"></div>/**
9  * List compiled by mystix on the extjs.com forums.
10  * Thank you Mystix!
11  *
12  * Turkish translation by Alper YAZGAN
13  * 2008-01-24, 10:29 AM 
14  * 
15  * Updated to 2.2 by YargicX
16  * 2008-10-05, 06:22 PM
17  */
18
19 Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">Yükleniyor ...</div>';
20
21 if(Ext.View){
22   Ext.View.prototype.emptyText = "";
23 }
24
25 if(Ext.grid.Grid){
26   Ext.grid.Grid.prototype.ddText = "Seçili satýr sayýsý : {0}";
27 }
28
29 if(Ext.TabPanelItem){
30   Ext.TabPanelItem.prototype.closeText = "Sekmeyi kapat";
31 }
32
33 if(Ext.form.Field){
34   Ext.form.Field.prototype.invalidText = "Bu alandaki deðer geçersiz";
35 }
36
37 if(Ext.LoadMask){
38   Ext.LoadMask.prototype.msg = "Yükleniyor ...";
39 }
40
41 Date.monthNames = [
42   "Ocak",
43   "Þžubat",
44   "Mart",
45   "Nisan",
46   "Mayýs",
47   "Haziran",
48   "Temmuz",
49   "Aðustos",
50   "Eylül",
51   "Ekim",
52   "Kasým",
53   "Aralýk"
54 ];
55
56 Date.getShortMonthName = function(month) {
57   return Date.monthNames[month].substring(0, 3);
58 };
59
60 Date.monthNumbers = {
61   Jan : 0,
62   Feb : 1,
63   Mar : 2,
64   Apr : 3,
65   May : 4,
66   Jun : 5,
67   Jul : 6,
68   Aug : 7,
69   Sep : 8,
70   Oct : 9,
71   Nov : 10,
72   Dec : 11
73 };
74
75 Date.getMonthNumber = function(name) {
76   return Date.monthNumbers[name.substring(0, 1).toUpperCase() + name.substring(1, 3).toLowerCase()];
77 };
78
79 Date.dayNames = [
80   "Pazar",
81   "Pazartesi",
82   "Salý",
83   "LJarþŸamba",
84   "PerþŸembe",
85   "Cuma",
86   "Cumartesi"
87 ];
88
89 Date.shortDayNames = [
90   "Paz",
91   "Pzt",
92   "Sal",
93   "ÇrþŸ",
94   "Prþ",
95   "Cum",
96   "Cmt"
97 ];
98
99 Date.getShortDayName = function(day) {
100   return Date.shortDayNames[day];
101 };
102
103 if(Ext.MessageBox){
104   Ext.MessageBox.buttonText = {
105     ok     : "Tamam",
106     cancel : "Ä°ptal",
107     yes    : "Evet",
108     no     : "Hayýr"
109   };
110 }
111
112 if(Ext.util.Format){
113   Ext.util.Format.date = function(v, format){
114     if(!v) return "";
115     if(!(v instanceof Date)) v = new Date(Date.parse(v));
116     return v.dateFormat(format || "d/m/Y");
117   };
118 }
119
120 if(Ext.DatePicker){
121   Ext.apply(Ext.DatePicker.prototype, {
122     todayText         : "Bugün",
123     minText           : "Bu tarih izin verilen en küçük tarihten daha önce",
124     maxText           : "Bu tarih izin verilen en büyük tarihten daha sonra",
125     disabledDaysText  : "",
126     disabledDatesText : "",
127     monthNames        : Date.monthNames,
128     dayNames          : Date.dayNames,
129     nextText          : 'Gelecek Ay (Control+Right)',
130     prevText          : 'Önceki Ay (Control+Left)',
131     monthYearText     : 'Bir ay sŸeçiniz (Yýlý artýrmak/azaltmak için Control+Up/Down)',
132     todayTip          : "{0} (BoþŸluk TuþŸu - Spacebar)",
133     format            : "d/m/Y",
134     okText            : "&#160;Tamam&#160;",
135     cancelText        : "Ä°ptal",
136     startDay          : 1
137   });
138 }
139
140 if(Ext.PagingToolbar){
141   Ext.apply(Ext.PagingToolbar.prototype, {
142     beforePageText : "Sayfa",
143     afterPageText  : " / {0}",
144     firstText      : "Ä°lk Sayfa",
145     prevText       : "Önceki Sayfa",
146     nextText       : "Sonraki Sayfa",
147     lastText       : "Son Sayfa",
148     refreshText    : "Yenile",
149     displayMsg     : "Gösterilen {0} - {1} / {2}",
150     emptyMsg       : 'Gösterilebilecek veri yok'
151   });
152 }
153
154 if(Ext.form.TextField){
155   Ext.apply(Ext.form.TextField.prototype, {
156     minLengthText : "Girilen verinin uzunluðu en az {0} olabilir",
157     maxLengthText : "Girilen verinin uzunluðu en fazla {0} olabilir",
158     blankText     : "Bu alan boþŸ býrakýlamaz",
159     regexText     : "",
160     emptyText     : null
161   });
162 }
163
164 if(Ext.form.NumberField){
165   Ext.apply(Ext.form.NumberField.prototype, {
166     minText : "En az {0} girilebilir",
167     maxText : "En çok {0} girilebilir",
168     nanText : "{0} geçersiz bir sayýdýr"
169   });
170 }
171
172 if(Ext.form.DateField){
173   Ext.apply(Ext.form.DateField.prototype, {
174     disabledDaysText  : "Disabled",
175     disabledDatesText : "Disabled",
176     minText           : "Bu tarih, {0} tarihinden daha sonra olmalýdýr", 
177     maxText           : "Bu tarih, {0} tarihinden daha önce olmalýdýr",
178     invalidText       : "{0} geçersiz bir tarihdir - tarih formatý {1} þŸeklinde olmalýdýr",
179     format            : "d/m/Y",
180     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"
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 }
308 </pre>    \r
309 </body>\r
310 </html>