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