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