source: trunk/web/addons/job_monarch/lib/extjs/source/locale/ext-lang-tr.js @ 619

Last change on this file since 619 was 619, checked in by ramonb, 15 years ago

lib/:

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