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