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