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