ext-lang-zh_CN.js
上传用户:dawnssy
上传日期:2022-08-06
资源大小:9345k
文件大小:7k
源码类别:

JavaScript

开发平台:

JavaScript

  1. /*!
  2.  * Ext JS Library 3.1.0
  3.  * Copyright(c) 2006-2009 Ext JS, LLC
  4.  * licensing@extjs.com
  5.  * http://www.extjs.com/license
  6.  */
  7. /*
  8.  * Simplified Chinese translation
  9.  * By DavidHu
  10.  * 09 April 2007
  11.  * 
  12.  * update by andy_ghg
  13.  * 2009-10-22 15:00:57
  14.  */
  15. Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">加载中...</div>';
  16. if(Ext.DataView){
  17.    Ext.DataView.prototype.emptyText = "";
  18. }
  19. if(Ext.grid.GridPanel){
  20.    Ext.grid.GridPanel.prototype.ddText = "选择了 {0} 行";
  21. }
  22. if(Ext.TabPanelItem){
  23.    Ext.TabPanelItem.prototype.closeText = "关闭此标签";
  24. }
  25. if(Ext.form.Field){
  26.    Ext.form.Field.prototype.invalidText = "输入值非法";
  27. }
  28. if (Ext.LoadMask) {
  29.     Ext.LoadMask.prototype.msg = "读取中...";
  30. }
  31. Date.monthNames = [
  32.    "一月",
  33.    "二月",
  34.    "三月",
  35.    "四月",
  36.    "五月",
  37.    "六月",
  38.    "七月",
  39.    "八月",
  40.    "九月",
  41.    "十月",
  42.    "十一月",
  43.    "十二月"
  44. ];
  45. Date.dayNames = [
  46.    "日",
  47.    "一",
  48.    "二",
  49.    "三",
  50.    "四",
  51.    "五",
  52.    "六"
  53. ];
  54. Date.formatCodes.a = "(this.getHours() < 12 ? '上午' : '下午')";
  55. Date.formatCodes.A = "(this.getHours() < 12 ? '上午' : '下午')";
  56. if(Ext.MessageBox){
  57.    Ext.MessageBox.buttonText = {
  58.       ok     : "确定",
  59.       cancel : "取消",
  60.       yes    : "是",
  61.       no     : "否"
  62.    };
  63. }
  64. if(Ext.util.Format){
  65.    Ext.util.Format.date = function(v, format){
  66.       if(!v) return "";
  67.       if(!(v instanceof Date)) v = new Date(Date.parse(v));
  68.       return v.dateFormat(format || "y年m月d日");
  69.    };
  70. }
  71. if(Ext.DatePicker){
  72.    Ext.apply(Ext.DatePicker.prototype, {
  73.       todayText         : "今天",
  74.       minText           : "日期必须大于最小允许日期",//update
  75.       maxText           : "日期必须小于最大允许日期",//update
  76.       disabledDaysText  : "",
  77.       disabledDatesText : "",
  78.       monthNames        : Date.monthNames,
  79.       dayNames          : Date.dayNames,
  80.       nextText          : '下个月 (Ctrl+Right)',
  81.       prevText          : '上个月 (Ctrl+Left)',
  82.       monthYearText     : '选择一个月 (Control+Up/Down 来改变年份)',//update
  83.       todayTip          : "{0} (空格键选择)",
  84.       format            : "y年m月d日",
  85.       okText            : "确定",
  86.       cancelText        : "取消"
  87.    });
  88. }
  89. if(Ext.PagingToolbar){
  90.    Ext.apply(Ext.PagingToolbar.prototype, {
  91.       beforePageText : "第",//update
  92.       afterPageText  : "页,共 {0} 页",//update
  93.       firstText      : "第一页",
  94.       prevText       : "上一页",//update
  95.       nextText       : "下一页",
  96.       lastText       : "最后页",
  97.       refreshText    : "刷新",
  98.       displayMsg     : "显示 {0} - {1}条,共 {2} 条",//update
  99.       emptyMsg       : '没有数据'
  100.    });
  101. }
  102. if(Ext.form.TextField){
  103.    Ext.apply(Ext.form.TextField.prototype, {
  104.       minLengthText : "该输入项的最小长度是 {0} 个字符",
  105.       maxLengthText : "该输入项的最大长度是 {0} 个字符",
  106.       blankText     : "该输入项为必输项",
  107.       regexText     : "",
  108.       emptyText     : null
  109.    });
  110. }
  111. if(Ext.form.NumberField){
  112.    Ext.apply(Ext.form.NumberField.prototype, {
  113.       minText : "该输入项的最小值是 {0}",
  114.       maxText : "该输入项的最大值是 {0}",
  115.       nanText : "{0} 不是有效数值"
  116.    });
  117. }
  118. if(Ext.form.DateField){
  119.    Ext.apply(Ext.form.DateField.prototype, {
  120.       disabledDaysText  : "禁用",
  121.       disabledDatesText : "禁用",
  122.       minText           : "该输入项的日期必须在 {0} 之后",
  123.       maxText           : "该输入项的日期必须在 {0} 之前",
  124.       invalidText       : "{0} 是无效的日期 - 必须符合格式: {1}",
  125.       format            : "y年m月d日"
  126.    });
  127. }
  128. if(Ext.form.ComboBox){
  129.    Ext.apply(Ext.form.ComboBox.prototype, {
  130.       loadingText       : "加载中...",
  131.       valueNotFoundText : undefined
  132.    });
  133. }
  134. if(Ext.form.VTypes){
  135.    Ext.apply(Ext.form.VTypes, {
  136.       emailText    : '该输入项必须是电子邮件地址,格式如: "user@example.com"',
  137.       urlText      : '该输入项必须是URL地址,格式如: "http:/'+'/www.example.com"',
  138.       alphaText    : '该输入项只能包含半角字母和_',//update
  139.       alphanumText : '该输入项只能包含半角字母,数字和_'//update
  140.    });
  141. }
  142. //add HTMLEditor's tips by andy_ghg
  143. if(Ext.form.HtmlEditor){
  144.   Ext.apply(Ext.form.HtmlEditor.prototype, {
  145.     createLinkText : '添加超级链接:',
  146.     buttonTips : {
  147.       bold : {
  148.         title: '粗体 (Ctrl+B)',
  149.         text: '将选中的文字设置为粗体',
  150.         cls: 'x-html-editor-tip'
  151.       },
  152.       italic : {
  153.         title: '斜体 (Ctrl+I)',
  154.         text: '将选中的文字设置为斜体',
  155.         cls: 'x-html-editor-tip'
  156.       },
  157.       underline : {
  158.         title: '下划线 (Ctrl+U)',
  159.         text: '给所选文字加下划线',
  160.         cls: 'x-html-editor-tip'
  161.       },
  162.       increasefontsize : {
  163.         title: '增大字体',
  164.         text: '增大字号',
  165.         cls: 'x-html-editor-tip'
  166.       },
  167.       decreasefontsize : {
  168.         title: '缩小字体',
  169.         text: '减小字号',
  170.         cls: 'x-html-editor-tip'
  171.       },
  172.       backcolor : {
  173.         title: '以不同颜色突出显示文本',
  174.         text: '使文字看上去像是用荧光笔做了标记一样',
  175.         cls: 'x-html-editor-tip'
  176.       },
  177.       forecolor : {
  178.         title: '字体颜色',
  179.         text: '更改字体颜色',
  180.         cls: 'x-html-editor-tip'
  181.       },
  182.       justifyleft : {
  183.         title: '左对齐',
  184.         text: '将文字左对齐',
  185.         cls: 'x-html-editor-tip'
  186.       },
  187.       justifycenter : {
  188.         title: '居中',
  189.         text: '将文字居中对齐',
  190.         cls: 'x-html-editor-tip'
  191.       },
  192.       justifyright : {
  193.         title: '右对齐',
  194.         text: '将文字右对齐',
  195.         cls: 'x-html-editor-tip'
  196.       },
  197.       insertunorderedlist : {
  198.         title: '项目符号',
  199.         text: '开始创建项目符号列表',
  200.         cls: 'x-html-editor-tip'
  201.       },
  202.       insertorderedlist : {
  203.         title: '编号',
  204.         text: '开始创建编号列表',
  205.         cls: 'x-html-editor-tip'
  206.       },
  207.       createlink : {
  208.         title: '转成超级链接',
  209.         text: '将所选文本转换成超级链接',
  210.         cls: 'x-html-editor-tip'
  211.       },
  212.       sourceedit : {
  213.         title: '代码视图',
  214.         text: '以代码的形式展现文本',
  215.         cls: 'x-html-editor-tip'
  216.       }
  217.     }
  218.   });
  219. }
  220. if(Ext.grid.GridView){
  221.    Ext.apply(Ext.grid.GridView.prototype, {
  222.       sortAscText  : "正序",//update
  223.       sortDescText : "倒序",//update
  224.       lockText     : "锁定列",//update
  225.       unlockText   : "解除锁定",//update
  226.       columnsText  : "列"
  227.    });
  228. }
  229. if(Ext.grid.PropertyColumnModel){
  230.    Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
  231.       nameText   : "名称",
  232.       valueText  : "值",
  233.       dateFormat : "y年m月d日"
  234.    });
  235. }
  236. if(Ext.layout.BorderLayout && Ext.layout.BorderLayout.SplitRegion){
  237.    Ext.apply(Ext.layout.BorderLayout.SplitRegion.prototype, {
  238.       splitTip            : "拖动来改变尺寸.",
  239.       collapsibleSplitTip : "拖动来改变尺寸. 双击隐藏."
  240.    });
  241. }