[76] | 1 | /*! |
---|
| 2 | * Ext JS Library 3.4.0 |
---|
| 3 | * Copyright(c) 2006-2011 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 | "Ãâ¡arߪ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 : " Tamam ", |
---|
| 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 | } |
---|