Upgrade to ExtJS 3.1.0 - Released 12/16/2009
[extjs.git] / docs / source / ext-lang-en.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"><div id="prop-Ext.Direct.Transaction-indicatorText"></div>/**
10  * List compiled by mystix on the extjs.com forums.
11  * Thank you Mystix!
12  *
13  * English Translations
14  * updated to 2.2 by Condor (8 Aug 2008)
15  */
16
17 Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">Loading...</div>';
18
19 if(Ext.DataView){
20   Ext.DataView.prototype.emptyText = "";
21 }
22
23 if(Ext.grid.GridPanel){
24   Ext.grid.GridPanel.prototype.ddText = "{0} selected row{1}";
25 }
26
27 if(Ext.LoadMask){
28   Ext.LoadMask.prototype.msg = "Loading...";
29 }
30
31 Date.monthNames = [
32   "January",
33   "February",
34   "March",
35   "April",
36   "May",
37   "June",
38   "July",
39   "August",
40   "September",
41   "October",
42   "November",
43   "December"
44 ];
45
46 Date.getShortMonthName = function(month) {
47   return Date.monthNames[month].substring(0, 3);
48 };
49
50 Date.monthNumbers = {
51   Jan : 0,
52   Feb : 1,
53   Mar : 2,
54   Apr : 3,
55   May : 4,
56   Jun : 5,
57   Jul : 6,
58   Aug : 7,
59   Sep : 8,
60   Oct : 9,
61   Nov : 10,
62   Dec : 11
63 };
64
65 Date.getMonthNumber = function(name) {
66   return Date.monthNumbers[name.substring(0, 1).toUpperCase() + name.substring(1, 3).toLowerCase()];
67 };
68
69 Date.dayNames = [
70   "Sunday",
71   "Monday",
72   "Tuesday",
73   "Wednesday",
74   "Thursday",
75   "Friday",
76   "Saturday"
77 ];
78
79 Date.getShortDayName = function(day) {
80   return Date.dayNames[day].substring(0, 3);
81 };
82
83 Date.parseCodes.S.s = "(?:st|nd|rd|th)";
84
85 if(Ext.MessageBox){
86   Ext.MessageBox.buttonText = {
87     ok     : "OK",
88     cancel : "Cancel",
89     yes    : "Yes",
90     no     : "No"
91   };
92 }
93
94 if(Ext.util.Format){
95   Ext.util.Format.date = function(v, format){
96     if(!v) return "";
97     if(!(v instanceof Date)) v = new Date(Date.parse(v));
98     return v.dateFormat(format || "m/d/Y");
99   };
100 }
101
102 if(Ext.DatePicker){
103   Ext.apply(Ext.DatePicker.prototype, {
104     todayText         : "Today",
105     minText           : "This date is before the minimum date",
106     maxText           : "This date is after the maximum date",
107     disabledDaysText  : "",
108     disabledDatesText : "",
109     monthNames        : Date.monthNames,
110     dayNames          : Date.dayNames,
111     nextText          : 'Next Month (Control+Right)',
112     prevText          : 'Previous Month (Control+Left)',
113     monthYearText     : 'Choose a month (Control+Up/Down to move years)',
114     todayTip          : "{0} (Spacebar)",
115     format            : "m/d/y",
116     okText            : "&#160;OK&#160;",
117     cancelText        : "Cancel",
118     startDay          : 0
119   });
120 }
121
122 if(Ext.PagingToolbar){
123   Ext.apply(Ext.PagingToolbar.prototype, {
124     beforePageText : "Page",
125     afterPageText  : "of {0}",
126     firstText      : "First Page",
127     prevText       : "Previous Page",
128     nextText       : "Next Page",
129     lastText       : "Last Page",
130     refreshText    : "Refresh",
131     displayMsg     : "Displaying {0} - {1} of {2}",
132     emptyMsg       : 'No data to display'
133   });
134 }
135
136 if(Ext.form.BasicForm){
137     Ext.form.BasicForm.prototype.waitTitle = "Please Wait..."
138 }
139
140 if(Ext.form.Field){
141   Ext.form.Field.prototype.invalidText = "The value in this field is invalid";
142 }
143
144 if(Ext.form.TextField){
145   Ext.apply(Ext.form.TextField.prototype, {
146     minLengthText : "The minimum length for this field is {0}",
147     maxLengthText : "The maximum length for this field is {0}",
148     blankText     : "This field is required",
149     regexText     : "",
150     emptyText     : null
151   });
152 }
153
154 if(Ext.form.NumberField){
155   Ext.apply(Ext.form.NumberField.prototype, {
156     decimalSeparator : ".",
157     decimalPrecision : 2,
158     minText : "The minimum value for this field is {0}",
159     maxText : "The maximum value for this field is {0}",
160     nanText : "{0} is not a valid number"
161   });
162 }
163
164 if(Ext.form.DateField){
165   Ext.apply(Ext.form.DateField.prototype, {
166     disabledDaysText  : "Disabled",
167     disabledDatesText : "Disabled",
168     minText           : "The date in this field must be after {0}",
169     maxText           : "The date in this field must be before {0}",
170     invalidText       : "{0} is not a valid date - it must be in the format {1}",
171     format            : "m/d/y",
172     altFormats        : "m/d/Y|m-d-y|m-d-Y|m/d|m-d|md|mdy|mdY|d|Y-m-d"
173   });
174 }
175
176 if(Ext.form.ComboBox){
177   Ext.apply(Ext.form.ComboBox.prototype, {
178     loadingText       : "Loading...",
179     valueNotFoundText : undefined
180   });
181 }
182
183 if(Ext.form.VTypes){
184   Ext.apply(Ext.form.VTypes, {
185     emailText    : 'This field should be an e-mail address in the format "user@example.com"',
186     urlText      : 'This field should be a URL in the format "http:/'+'/www.example.com"',
187     alphaText    : 'This field should only contain letters and _',
188     alphanumText : 'This field should only contain letters, numbers and _'
189   });
190 }
191
192 if(Ext.form.HtmlEditor){
193   Ext.apply(Ext.form.HtmlEditor.prototype, {
194     createLinkText : 'Please enter the URL for the link:',
195     buttonTips : {
196       bold : {
197         title: 'Bold (Ctrl+B)',
198         text: 'Make the selected text bold.',
199         cls: 'x-html-editor-tip'
200       },
201       italic : {
202         title: 'Italic (Ctrl+I)',
203         text: 'Make the selected text italic.',
204         cls: 'x-html-editor-tip'
205       },
206       underline : {
207         title: 'Underline (Ctrl+U)',
208         text: 'Underline the selected text.',
209         cls: 'x-html-editor-tip'
210       },
211       increasefontsize : {
212         title: 'Grow Text',
213         text: 'Increase the font size.',
214         cls: 'x-html-editor-tip'
215       },
216       decreasefontsize : {
217         title: 'Shrink Text',
218         text: 'Decrease the font size.',
219         cls: 'x-html-editor-tip'
220       },
221       backcolor : {
222         title: 'Text Highlight Color',
223         text: 'Change the background color of the selected text.',
224         cls: 'x-html-editor-tip'
225       },
226       forecolor : {
227         title: 'Font Color',
228         text: 'Change the color of the selected text.',
229         cls: 'x-html-editor-tip'
230       },
231       justifyleft : {
232         title: 'Align Text Left',
233         text: 'Align text to the left.',
234         cls: 'x-html-editor-tip'
235       },
236       justifycenter : {
237         title: 'Center Text',
238         text: 'Center text in the editor.',
239         cls: 'x-html-editor-tip'
240       },
241       justifyright : {
242         title: 'Align Text Right',
243         text: 'Align text to the right.',
244         cls: 'x-html-editor-tip'
245       },
246       insertunorderedlist : {
247         title: 'Bullet List',
248         text: 'Start a bulleted list.',
249         cls: 'x-html-editor-tip'
250       },
251       insertorderedlist : {
252         title: 'Numbered List',
253         text: 'Start a numbered list.',
254         cls: 'x-html-editor-tip'
255       },
256       createlink : {
257         title: 'Hyperlink',
258         text: 'Make the selected text a hyperlink.',
259         cls: 'x-html-editor-tip'
260       },
261       sourceedit : {
262         title: 'Source Edit',
263         text: 'Switch to source editing mode.',
264         cls: 'x-html-editor-tip'
265       }
266     }
267   });
268 }
269
270 if(Ext.grid.GridView){
271   Ext.apply(Ext.grid.GridView.prototype, {
272     sortAscText  : "Sort Ascending",
273     sortDescText : "Sort Descending",
274     columnsText  : "Columns"
275   });
276 }
277
278 if(Ext.grid.GroupingView){
279   Ext.apply(Ext.grid.GroupingView.prototype, {
280     emptyGroupText : '(None)',
281     groupByText    : 'Group By This Field',
282     showGroupsText : 'Show in Groups'
283   });
284 }
285
286 if(Ext.grid.PropertyColumnModel){
287   Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
288     nameText   : "Name",
289     valueText  : "Value",
290     dateFormat : "m/j/Y"
291   });
292 }
293
294 if(Ext.grid.BooleanColumn){
295    Ext.apply(Ext.grid.BooleanColumn.prototype, {
296       trueText  : "true",
297       falseText : "false",
298       undefinedText: '&#160;'
299    });
300 }
301
302 if(Ext.grid.NumberColumn){
303     Ext.apply(Ext.grid.NumberColumn.prototype, {
304         format : '0,000.00'
305     });
306 }
307
308 if(Ext.grid.DateColumn){
309     Ext.apply(Ext.grid.DateColumn.prototype, {
310         format : 'm/d/Y'
311     });
312 }
313
314 if(Ext.layout.BorderLayout && Ext.layout.BorderLayout.SplitRegion){
315   Ext.apply(Ext.layout.BorderLayout.SplitRegion.prototype, {
316     splitTip            : "Drag to resize.",
317     collapsibleSplitTip : "Drag to resize. Double click to hide."
318   });
319 }
320
321 if(Ext.form.TimeField){
322   Ext.apply(Ext.form.TimeField.prototype, {
323     minText : "The time in this field must be equal to or after {0}",
324     maxText : "The time in this field must be equal to or before {0}",
325     invalidText : "{0} is not a valid time",
326     format : "g:i A",
327     altFormats : "g:ia|g:iA|g:i a|g:i A|h:i|g:i|H:i|ga|ha|gA|h a|g a|g A|gi|hi|gia|hia|g|H"
328   });
329 }
330
331 if(Ext.form.CheckboxGroup){
332   Ext.apply(Ext.form.CheckboxGroup.prototype, {
333     blankText : "You must select at least one item in this group"
334   });
335 }
336
337 if(Ext.form.RadioGroup){
338   Ext.apply(Ext.form.RadioGroup.prototype, {
339     blankText : "You must select one item in this group"
340   });
341 }
342 </pre>    \r
343 </body>\r
344 </html>