ext-lang-tr.js
上传用户:shuoshiled
上传日期:2018-01-28
资源大小:10124k
文件大小:8k
源码类别:

中间件编程

开发平台:

JavaScript

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