ext-lang-th.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 KillerNay on the extjs.com forums.
  9.  * Thank you KillerNay!
  10.  *
  11.  * Thailand Translations
  12.  */
  13. Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">¡ÓÅѧâËÅŽ...</div>';
  14. if(Ext.View){
  15.   Ext.View.prototype.emptyText = "";
  16. }
  17. if(Ext.grid.GridPanel){
  18.   Ext.grid.GridPanel.prototype.ddText = "{0} àÅ×Í¡áÅéÇ·Ñé§ËÁŽá¶Ç";
  19. }
  20. if(Ext.TabPanelItem){
  21.   Ext.TabPanelItem.prototype.closeText = "»ÔŽá·çº¹Õé";
  22. }
  23. if(Ext.form.Field){
  24.   Ext.form.Field.prototype.invalidText = "€èҢͧªèͧ¹ÕéäÁè¶Ù¡µéͧ";
  25. }
  26. if(Ext.LoadMask){
  27.   Ext.LoadMask.prototype.msg = "¡ÓÅѧâËÅŽ...";
  28. }
  29. Date.monthNames = [
  30.   "Á¡ÃÒ€Á",
  31.   "¡ØÁŸÒӟѹžì",
  32.   "ÁÕ¹Ò€Á",
  33.   "àÁÉÒ¹",
  34.   "ŸÄÉÀÒ€Á",
  35.   "ÁԶعÒ¹",
  36.   "¡Ä¡¯Ò€Á",
  37.   "ÊÔ§ËÒ€Á",
  38.   "¡Ñ¹ÂÒ¹",
  39.   "µØÅÒ€Á",
  40.   "ŸÄÈšÔ¡Ò¹",
  41.   "žÑ¹ÇÒ€Á"
  42. ];
  43. Date.getShortMonthName = function(month) {
  44.   return Date.monthNames[month].substring(0, 3);
  45. };
  46. Date.monthNumbers = {
  47.   "Á€" : 0,
  48.   "¡Ÿ" : 1,
  49.   "ÁÕ€" : 2,
  50.   "àÁÂ" : 3,
  51.   "Ÿ€" : 4,
  52.   "ÁÔÂ" : 5,
  53.   "¡€" : 6,
  54.   "Ê€" : 7,
  55.   "¡Â" : 8,
  56.   "µ€" : 9,
  57.   "ŸÂ" : 10,
  58.   "ž€" : 11
  59. };
  60. Date.getMonthNumber = function(name) {
  61.   return Date.monthNumbers[name.substring(0, 1).toUpperCase() + name.substring(1, 3).toLowerCase()];
  62. };
  63. Date.dayNames = [
  64.   "ÍÒ·ÔµÂì",
  65.   "šÑ¹·Ãì",
  66.   "Íѧ€ÒÃ",
  67.   "ŸØמ",
  68.   "ŸÄËÑʺŽÕ",
  69.   "ÈØ¡Ãì",
  70.   "àÊÒÃì"
  71. ];
  72. Date.getShortDayName = function(day) {
  73.   return Date.dayNames[day].substring(0, 3);
  74. };
  75. if(Ext.MessageBox){
  76.   Ext.MessageBox.buttonText = {
  77.     ok     : "µ¡Å§",
  78.     cancel : "¡àÅÔ¡",
  79.     yes    : "ãªè",
  80.     no     : "äÁèãªè"
  81.   };
  82. }
  83. if(Ext.util.Format){
  84.   Ext.util.Format.date = function(v, format){
  85.     if(!v) return "";
  86.     if(!(v instanceof Date)) v = new Date(Date.parse(v));
  87.     return v.dateFormat(format || "m/d/Y");
  88.   };
  89. }
  90. if(Ext.DatePicker){
  91.   Ext.apply(Ext.DatePicker.prototype, {
  92.     todayText         : "Çѹ¹Õé",
  93.     minText           : "This date is before the minimum date",
  94.     maxText           : "This date is after the maximum date",
  95.     disabledDaysText  : "",
  96.     disabledDatesText : "",
  97.     monthNames        : Date.monthNames,
  98.     dayNames          : Date.dayNames,
  99.     nextText          : 'àŽ×͹¶ÑŽä» (Control+Right)',
  100.     prevText          : 'àŽ×͹¡è͹˹éÒ (Control+Left)',
  101.     monthYearText     : 'àÅ×Í¡àŽ×͹ (Control+Up/Down to move years)',
  102.     todayTip          : "{0} (Spacebar)",
  103.     format            : "m/d/y",
  104.     okText            : "&#160;µ¡Å§&#160;",
  105.     cancelText        : "¡àÅÔ¡",
  106.     startDay          : 0
  107.   });
  108. }
  109. if(Ext.PagingToolbar){
  110.   Ext.apply(Ext.PagingToolbar.prototype, {
  111.     beforePageText : "˹éÒ",
  112.     afterPageText  : "of {0}",
  113.     firstText      : "˹éÒáá",
  114.     prevText       : "¡è͹˹éÒ",
  115.     nextText       : "¶ÑŽä»",
  116.     lastText       : "˹éÒÊØŽ·éÒÂ",
  117.     refreshText    : "ÃÕà¿Ãª",
  118.     displayMsg     : "¡ÓÅѧáÊŽ§ {0} - {1} šÒ¡ {2}",
  119.     emptyMsg       : 'äÁèÁÕ¢éÍÁÙÅáÊŽ§'
  120.   });
  121. }
  122. if(Ext.form.TextField){
  123.   Ext.apply(Ext.form.TextField.prototype, {
  124.     minLengthText : "The minimum length for this field is {0}",
  125.     maxLengthText : "The maximum length for this field is {0}",
  126.     blankText     : "This field is required",
  127.     regexText     : "",
  128.     emptyText     : null
  129.   });
  130. }
  131. if(Ext.form.NumberField){
  132.   Ext.apply(Ext.form.NumberField.prototype, {
  133.     minText : "The minimum value for this field is {0}",
  134.     maxText : "The maximum value for this field is {0}",
  135.     nanText : "{0} is not a valid number"
  136.   });
  137. }
  138. if(Ext.form.DateField){
  139.   Ext.apply(Ext.form.DateField.prototype, {
  140.     disabledDaysText  : "»ÔŽ",
  141.     disabledDatesText : "»ÔŽ",
  142.     minText           : "The date in this field must be after {0}",
  143.     maxText           : "The date in this field must be before {0}",
  144.     invalidText       : "{0} is not a valid date - it must be in the format {1}",
  145.     format            : "m/d/y",
  146.     altFormats        : "m/d/Y|m-d-y|m-d-Y|m/d|m-d|md|mdy|mdY|d|Y-m-d"
  147.   });
  148. }
  149. if(Ext.form.ComboBox){
  150.   Ext.apply(Ext.form.ComboBox.prototype, {
  151.     loadingText       : "¡ÓÅѧâËÅŽ...",
  152.     valueNotFoundText : undefined
  153.   });
  154. }
  155. if(Ext.form.VTypes){
  156.   Ext.apply(Ext.form.VTypes, {
  157.     emailText    : 'This field should be an e-mail address in the format "user@example.com"',
  158.     urlText      : 'This field should be a URL in the format "http:/'+'/www.example.com"',
  159.     alphaText    : 'This field should only contain letters and _',
  160.     alphanumText : 'This field should only contain letters, numbers and _'
  161.   });
  162. }
  163. if(Ext.form.HtmlEditor){
  164.   Ext.apply(Ext.form.HtmlEditor.prototype, {
  165.     createLinkText : 'Please enter the URL for the link:',
  166.     buttonTips : {
  167.       bold : {
  168.         title: 'Bold (Ctrl+B)',
  169.         text: 'Make the selected text bold.',
  170.         cls: 'x-html-editor-tip'
  171.       },
  172.       italic : {
  173.         title: 'Italic (Ctrl+I)',
  174.         text: 'Make the selected text italic.',
  175.         cls: 'x-html-editor-tip'
  176.       },
  177.       underline : {
  178.         title: 'Underline (Ctrl+U)',
  179.         text: 'Underline the selected text.',
  180.         cls: 'x-html-editor-tip'
  181.       },
  182.       increasefontsize : {
  183.         title: 'Grow Text',
  184.         text: 'Increase the font size.',
  185.         cls: 'x-html-editor-tip'
  186.       },
  187.       decreasefontsize : {
  188.         title: 'Shrink Text',
  189.         text: 'Decrease the font size.',
  190.         cls: 'x-html-editor-tip'
  191.       },
  192.       backcolor : {
  193.         title: 'Text Highlight Color',
  194.         text: 'Change the background color of the selected text.',
  195.         cls: 'x-html-editor-tip'
  196.       },
  197.       forecolor : {
  198.         title: 'Font Color',
  199.         text: 'Change the color of the selected text.',
  200.         cls: 'x-html-editor-tip'
  201.       },
  202.       justifyleft : {
  203.         title: 'Align Text Left',
  204.         text: 'Align text to the left.',
  205.         cls: 'x-html-editor-tip'
  206.       },
  207.       justifycenter : {
  208.         title: 'Center Text',
  209.         text: 'Center text in the editor.',
  210.         cls: 'x-html-editor-tip'
  211.       },
  212.       justifyright : {
  213.         title: 'Align Text Right',
  214.         text: 'Align text to the right.',
  215.         cls: 'x-html-editor-tip'
  216.       },
  217.       insertunorderedlist : {
  218.         title: 'Bullet List',
  219.         text: 'Start a bulleted list.',
  220.         cls: 'x-html-editor-tip'
  221.       },
  222.       insertorderedlist : {
  223.         title: 'Numbered List',
  224.         text: 'Start a numbered list.',
  225.         cls: 'x-html-editor-tip'
  226.       },
  227.       createlink : {
  228.         title: 'Hyperlink',
  229.         text: 'Make the selected text a hyperlink.',
  230.         cls: 'x-html-editor-tip'
  231.       },
  232.       sourceedit : {
  233.         title: 'Source Edit',
  234.         text: 'Switch to source editing mode.',
  235.         cls: 'x-html-editor-tip'
  236.       }
  237.     }
  238.   });
  239. }
  240. if(Ext.grid.GridView){
  241.   Ext.apply(Ext.grid.GridView.prototype, {
  242.     sortAscText  : "Sort Ascending",
  243.     sortDescText : "Sort Descending",
  244.     lockText     : "Lock Column",
  245.     unlockText   : "Unlock Column",
  246.     columnsText  : "Columns"
  247.   });
  248. }
  249. if(Ext.grid.GroupingView){
  250.   Ext.apply(Ext.grid.GroupingView.prototype, {
  251.     emptyGroupText : '(None)',
  252.     groupByText    : 'Group By This Field',
  253.     showGroupsText : 'Show in Groups'
  254.   });
  255. }
  256. if(Ext.grid.PropertyColumnModel){
  257.   Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
  258.     nameText   : "Name",
  259.     valueText  : "Value",
  260.     dateFormat : "m/j/Y"
  261.   });
  262. }
  263. if(Ext.layout.BorderLayout && Ext.layout.BorderLayout.SplitRegion){
  264.   Ext.apply(Ext.layout.BorderLayout.SplitRegion.prototype, {
  265.     splitTip            : "Drag to resize.",
  266.     collapsibleSplitTip : "Drag to resize. Double click to hide."
  267.   });
  268. }