3 * Copyright(c) 2006-2010 Ext JS, Inc.
5 * http://www.extjs.com/license
8 * Simplified Chinese translation
16 Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">加载中...</div>';
19 Ext.DataView.prototype.emptyText = "";
22 if(Ext.grid.GridPanel){
23 Ext.grid.GridPanel.prototype.ddText = "选择了 {0} 行";
27 Ext.TabPanelItem.prototype.closeText = "关闭此标签";
31 Ext.form.Field.prototype.invalidText = "输入值非法";
35 Ext.LoadMask.prototype.msg = "读取中...";
63 Date.formatCodes.a = "(this.getHours() < 12 ? '上午' : '下午')";
64 Date.formatCodes.A = "(this.getHours() < 12 ? '上午' : '下午')";
67 Ext.MessageBox.buttonText = {
76 Ext.util.Format.date = function(v, format){
78 if(!(v instanceof Date)) v = new Date(Date.parse(v));
79 return v.dateFormat(format || "y年m月d日");
84 Ext.apply(Ext.DatePicker.prototype, {
86 minText : "日期必须大于最小允许日期",//update
87 maxText : "日期必须小于最大允许日期",//update
88 disabledDaysText : "",
89 disabledDatesText : "",
90 monthNames : Date.monthNames,
91 dayNames : Date.dayNames,
92 nextText : '下个月 (Ctrl+Right)',
93 prevText : '上个月 (Ctrl+Left)',
94 monthYearText : '选择一个月 (Control+Up/Down 来改变年份)',//update
95 todayTip : "{0} (空格键选择)",
102 if(Ext.PagingToolbar){
103 Ext.apply(Ext.PagingToolbar.prototype, {
104 beforePageText : "第",//update
105 afterPageText : "页,共 {0} 页",//update
107 prevText : "上一页",//update
111 displayMsg : "显示 {0} - {1}条,共 {2} 条",//update
116 if(Ext.form.TextField){
117 Ext.apply(Ext.form.TextField.prototype, {
118 minLengthText : "该输入项的最小长度是 {0} 个字符",
119 maxLengthText : "该输入项的最大长度是 {0} 个字符",
120 blankText : "该输入项为必输项",
126 if(Ext.form.NumberField){
127 Ext.apply(Ext.form.NumberField.prototype, {
128 minText : "该输入项的最小值是 {0}",
129 maxText : "该输入项的最大值是 {0}",
130 nanText : "{0} 不是有效数值"
134 if(Ext.form.DateField){
135 Ext.apply(Ext.form.DateField.prototype, {
136 disabledDaysText : "禁用",
137 disabledDatesText : "禁用",
138 minText : "该输入项的日期必须在 {0} 之后",
139 maxText : "该输入项的日期必须在 {0} 之前",
140 invalidText : "{0} 是无效的日期 - 必须符合格式: {1}",
145 if(Ext.form.ComboBox){
146 Ext.apply(Ext.form.ComboBox.prototype, {
147 loadingText : "加载中...",
148 valueNotFoundText : undefined
153 Ext.apply(Ext.form.VTypes, {
154 emailText : '该输入项必须是电子邮件地址,格式如: "user@example.com"',
155 urlText : '该输入项必须是URL地址,格式如: "http:/'+'/www.example.com"',
156 alphaText : '该输入项只能包含半角字母和_',//update
157 alphanumText : '该输入项只能包含半角字母,数字和_'//update
160 //add HTMLEditor's tips by andy_ghg
161 if(Ext.form.HtmlEditor){
162 Ext.apply(Ext.form.HtmlEditor.prototype, {
163 createLinkText : '添加超级链接:',
166 title: '粗体 (Ctrl+B)',
168 cls: 'x-html-editor-tip'
171 title: '斜体 (Ctrl+I)',
173 cls: 'x-html-editor-tip'
176 title: '下划线 (Ctrl+U)',
178 cls: 'x-html-editor-tip'
183 cls: 'x-html-editor-tip'
188 cls: 'x-html-editor-tip'
191 title: '以不同颜色突出显示文本',
192 text: '使文字看上去像是用荧光笔做了标记一样',
193 cls: 'x-html-editor-tip'
198 cls: 'x-html-editor-tip'
203 cls: 'x-html-editor-tip'
208 cls: 'x-html-editor-tip'
213 cls: 'x-html-editor-tip'
215 insertunorderedlist : {
218 cls: 'x-html-editor-tip'
220 insertorderedlist : {
223 cls: 'x-html-editor-tip'
227 text: '将所选文本转换成超级链接',
228 cls: 'x-html-editor-tip'
233 cls: 'x-html-editor-tip'
240 if(Ext.grid.GridView){
241 Ext.apply(Ext.grid.GridView.prototype, {
242 sortAscText : "正序",//update
243 sortDescText : "倒序",//update
244 lockText : "锁定列",//update
245 unlockText : "解除锁定",//update
250 if(Ext.grid.PropertyColumnModel){
251 Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
254 dateFormat : "y年m月d日"
258 if(Ext.layout.BorderLayout && Ext.layout.BorderLayout.SplitRegion){
259 Ext.apply(Ext.layout.BorderLayout.SplitRegion.prototype, {
260 splitTip : "拖动来改变尺寸.",
261 collapsibleSplitTip : "拖动来改变尺寸. 双击隐藏."