Upgrade to ExtJS 3.1.0 - Released 12/16/2009
[extjs.git] / docs / source / ext-lang-zh_TW.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  * Traditional Chinese translation
11  * By hata1234
12  * 09 April 2007
13  */
14
15 Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">讀取中...</div>';
16
17 if(Ext.View){
18     Ext.View.prototype.emptyText = "";
19 }
20
21 if(Ext.grid.GridPanel){
22     Ext.grid.GridPanel.prototype.ddText = "選擇了 {0} 行";
23 }
24
25 if(Ext.TabPanelItem){
26     Ext.TabPanelItem.prototype.closeText = "關閉此標籤";
27 }
28
29 if(Ext.form.Field){
30     Ext.form.Field.prototype.invalidText = "數值不符合欄位規定";
31 }
32
33 if(Ext.LoadMask){
34     Ext.LoadMask.prototype.msg = "讀取中...";
35 }
36
37 Date.monthNames = [
38     "一月",
39     "二月",
40     "三月",
41     "四月",
42     "五月",
43     "六月",
44     "七月",
45     "八月",
46     "九月",
47     "十月",
48     "十一月",
49     "十二月"
50 ];
51
52 Date.dayNames = [
53     "日",
54     "一",
55     "二",
56     "三",
57     "四",
58     "五",
59     "六"
60 ];
61
62 if(Ext.MessageBox){
63     Ext.MessageBox.buttonText = {
64         ok : "確定",
65         cancel : "取消",
66         yes : "是",
67         no : "否"
68     };
69 }
70
71 if(Ext.util.Format){
72     Ext.util.Format.date = function(v, format){
73        if(!v) return "";
74        if(!(v instanceof Date)) v = new Date(Date.parse(v));
75        return v.dateFormat(format || "Y/m/d");
76     };
77 }
78
79 if(Ext.DatePicker){
80     Ext.apply(Ext.DatePicker.prototype, {
81        todayText         : "今天",
82        minText           : "日期必須大於最小容許日期",
83        maxText           : "日期必須小於最大容許日期",
84        disabledDaysText  : "",
85        disabledDatesText : "",
86        monthNames        : Date.monthNames,
87        dayNames          : Date.dayNames,
88        nextText          : "下個月 (Ctrl+右方向鍵)",
89        prevText          : "上個月 (Ctrl+左方向鍵)",
90        monthYearText     : "選擇月份 (Ctrl+上/下方向鍵選擇年份)",
91        todayTip          : "{0} (空白鍵)",
92        format            : "y/m/d",
93        okText            : "确定",
94        cancelText        : "取消"
95     });
96 }
97
98 if(Ext.PagingToolbar){
99     Ext.apply(Ext.PagingToolbar.prototype, {
100        beforePageText : "第",
101        afterPageText  : "頁,共{0}頁",
102        firstText      : "第一頁",
103        prevText       : "上一頁",
104        nextText       : "下一頁",
105        lastText       : "最後頁",
106        refreshText    : "重新整理",
107        displayMsg     : "顯示{0} - {1}筆,共{2}筆",
108        emptyMsg       : '沒有任何資料'
109     });
110 }
111
112 if(Ext.form.TextField){
113     Ext.apply(Ext.form.TextField.prototype, {
114        minLengthText : "此欄位最少要輸入 {0} 個字",
115        maxLengthText : "此欄位最多輸入 {0} 個字",
116        blankText     : "此欄位為必填",
117        regexText     : "",
118        emptyText     : null
119     });
120 }
121
122 if(Ext.form.NumberField){
123     Ext.apply(Ext.form.NumberField.prototype, {
124        minText : "此欄位之數值必須大於 {0}",
125        maxText : "此欄位之數值必須小於 {0}",
126        nanText : "{0} 不是合法的數字"
127     });
128 }
129
130 if(Ext.form.DateField){
131     Ext.apply(Ext.form.DateField.prototype, {
132        disabledDaysText  : "無法使用",
133        disabledDatesText : "無法使用",
134        minText           : "此欄位之日期必須在 {0} 之後",
135        maxText           : "此欄位之日期必須在 {0} 之前",
136        invalidText       : "{0} 不是正確的日期格式 - 必須像是 「 {1} 」 這樣的格式",
137        format            : "Y/m/d"
138     });
139 }
140
141 if(Ext.form.ComboBox){
142     Ext.apply(Ext.form.ComboBox.prototype, {
143        loadingText       : "讀取中 ...",
144        valueNotFoundText : undefined
145     });
146 }
147
148 if(Ext.form.VTypes){
149     Ext.apply(Ext.form.VTypes, {
150        emailText    : '此欄位必須輸入像 "user@example.com" 之E-Mail格式',
151        urlText      : '此欄位必須輸入像 "http:/'+'/www.example.com" 之網址格式',
152        alphaText    : '此欄位僅能輸入半形英文字母及底線( _ )符號',
153        alphanumText : '此欄位僅能輸入半形英文字母、數字及底線( _ )符號'
154     });
155 }
156
157 if(Ext.grid.GridView){
158     Ext.apply(Ext.grid.GridView.prototype, {
159        sortAscText  : "正向排序",
160        sortDescText : "反向排序",
161        lockText     : "鎖定欄位",
162        unlockText   : "解開欄位鎖定",
163        columnsText  : "欄位"
164     });
165 }
166
167 if(Ext.grid.PropertyColumnModel){
168     Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
169        nameText   : "名稱",
170        valueText  : "數值",
171        dateFormat : "Y/m/d"
172     });
173 }
174
175 if(Ext.layout.BorderLayout && Ext.layout.BorderLayout.SplitRegion){
176     Ext.apply(Ext.layout.BorderLayout.SplitRegion.prototype, {
177        splitTip            : "拖曳縮放大小.",
178        collapsibleSplitTip : "拖曳縮放大小. 滑鼠雙擊隱藏."
179     });
180 }
181 </pre>    \r
182 </body>\r
183 </html>