Upgrade to ExtJS 3.1.0 - Released 12/16/2009
[extjs.git] / docs / source / ext-lang-he.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  * Hebrew Translations
11  * By spartacus (from forums) 06-12-2007
12  */
13
14 Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">...����</div>';
15
16 if(Ext.View){
17   Ext.View.prototype.emptyText = "";
18 }
19
20 if(Ext.grid.GridPanel){
21   Ext.grid.GridPanel.prototype.ddText = "����� ������ {0}";
22 }
23
24 if(Ext.TabPanelItem){
25   Ext.TabPanelItem.prototype.closeText = "���� ������";
26 }
27
28 if(Ext.form.Field){
29   Ext.form.Field.prototype.invalidText = "���� ���� �� ����";
30 }
31
32 if(Ext.LoadMask){
33   Ext.LoadMask.prototype.msg = "...����";
34 }
35
36 Date.monthNames = [
37   "�����",
38   "������",
39   "���",
40   "�����",
41   "���",
42   "����",
43   "����",
44   "������",
45   "������",
46   "�������",
47   "������",
48   "�����"
49 ];
50
51 Date.getShortMonthName = function(month) {
52   return Date.monthNames[month].substring(0, 3);
53 };
54
55 Date.monthNumbers = {
56   Jan : 0,
57   Feb : 1,
58   Mar : 2,
59   Apr : 3,
60   May : 4,
61   Jun : 5,
62   Jul : 6,
63   Aug : 7,
64   Sep : 8,
65   Oct : 9,
66   Nov : 10,
67   Dec : 11
68 };
69
70 Date.getMonthNumber = function(name) {
71   return Date.monthNumbers[name.substring(0, 1).toUpperCase() + name.substring(1, 3).toLowerCase()];
72 };
73
74 Date.dayNames = [
75   "�",
76   "�",
77   "�",
78   "�",
79   "�",
80   "�",
81   "�"
82 ];
83
84 Date.getShortDayName = function(day) {
85   return Date.dayNames[day].substring(0, 3);
86 };
87
88 if(Ext.MessageBox){
89   Ext.MessageBox.buttonText = {
90     ok     : "�����",
91     cancel : "�����",
92     yes    : "��",
93     no     : "��"
94   };
95 }
96
97 if(Ext.util.Format){
98   Ext.util.Format.date = function(v, format){
99     if(!v) return "";
100     if(!(v instanceof Date)) v = new Date(Date.parse(v));
101     return v.dateFormat(format || "d/m/Y");
102   };
103 }
104
105 if(Ext.DatePicker){
106   Ext.apply(Ext.DatePicker.prototype, {
107     todayText         : "����",
108     minText           : ".����� �� �� ���� ������ ������� �����",
109     maxText           : ".����� �� �� ���� ������ ����� �����",
110     disabledDaysText  : "",
111     disabledDatesText : "",
112     monthNames        : Date.monthNames,
113     dayNames          : Date.dayNames,
114     nextText          : '(Control+Right) ����� ���',
115     prevText          : '(Control+Left) ����� �����',
116     monthYearText     : '(������ ��� Control+Up/Down) ��� ����',
117     todayTip          : "��� ����) {0})",
118     format            : "d/m/Y",
119     okText            : "&#160;�����&#160;",
120     cancelText        : "�����",
121     startDay          : 0
122   });
123 }
124
125 if(Ext.PagingToolbar){
126   Ext.apply(Ext.PagingToolbar.prototype, {
127     beforePageText : "����",
128     afterPageText  : "{0} ����",
129     firstText      : "���� �����",
130     prevText       : "���� ����",
131     nextText       : "���� ���",
132     lastText       : "���� �����",
133     refreshText    : "����",
134     displayMsg     : "���� {0} - {1} ���� {2}",
135     emptyMsg       : '��� ���� �����'
136   });
137 }
138
139 if(Ext.form.TextField){
140   Ext.apply(Ext.form.TextField.prototype, {
141     minLengthText : "{0} ����� ��������� ���� �� ���",
142     maxLengthText : "{0} ����� ������ ���� �� ���",
143     blankText     : "��� �� �����",
144     regexText     : "",
145     emptyText     : null
146   });
147 }
148
149 if(Ext.form.NumberField){
150   Ext.apply(Ext.form.NumberField.prototype, {
151     minText : "{0} ���� ��������� ���� �� ���",
152     maxText : "{0} ���� ������ ���� �� ���",
153     nanText : "��� �� ���� {0}"
154   });
155 }
156
157 if(Ext.form.DateField){
158   Ext.apply(Ext.form.DateField.prototype, {
159     disabledDaysText  : "������",
160     disabledDatesText : "������",
161     minText           : "{0} ������ ���� �� ���� ����� ����",
162     maxText           : "{0} ������ ���� �� ���� ����� ����",
163     invalidText       : "{1} ��� �� ����� ���� - ���� ����� ������ {0}",
164     format            : "m/d/y",
165     altFormats        : "m/d/Y|m-d-y|m-d-Y|m/d|m-d|md|mdy|mdY|d|Y-m-d"
166   });
167 }
168
169 if(Ext.form.ComboBox){
170   Ext.apply(Ext.form.ComboBox.prototype, {
171     loadingText       : "...����",
172     valueNotFoundText : undefined
173   });
174 }
175
176 if(Ext.form.VTypes){
177   Ext.apply(Ext.form.VTypes, {
178     emailText    : '"user@example.com" ��� �� ���� ����� ����� ���� �������� ������',
179     urlText      : '"http:/'+'/www.example.com" ��� �� ���� ����� ����� ������� ������',
180     alphaText    : '_��� �� ���� ����� �� ������ �',
181     alphanumText : '_��� �� ���� ����� �� ������, ������ �'
182   });
183 }
184
185 if(Ext.form.HtmlEditor){
186   Ext.apply(Ext.form.HtmlEditor.prototype, {
187     createLinkText : ':��� ���� �� ����� �������� ���� ������',
188     buttonTips : {
189       bold : {
190         title: '(Ctrl+B) �����',
191         text: '.���� �� ����� �����',
192         cls: 'x-html-editor-tip'
193       },
194       italic : {
195         title: '(Ctrl+I) ����',
196         text: '.��� �� ����� �����',
197         cls: 'x-html-editor-tip'
198       },
199       underline : {
200         title: '(Ctrl+U) �� ����',
201         text: '.���� �� ���� ���� ����� �����',
202         cls: 'x-html-editor-tip'
203       },
204       increasefontsize : {
205         title: '���� ����',
206         text: '.���� ���� ���� ����� �����',
207         cls: 'x-html-editor-tip'
208       },
209       decreasefontsize : {
210         title: '���� ����',
211         text: '.���� ���� ���� ����� �����',
212         cls: 'x-html-editor-tip'
213       },
214       backcolor : {
215         title: '��� ��� �����',
216         text: '.��� �� ��� ���� ���� ����� �����',
217         cls: 'x-html-editor-tip'
218       },
219       forecolor : {
220         title: '��� ����',
221         text: '.��� �� ��� ����� ���� ����� �����',
222         cls: 'x-html-editor-tip'
223       },
224       justifyleft : {
225         title: '���� �����',
226         text: '.��� ����� �� ����� �����',
227         cls: 'x-html-editor-tip'
228       },
229       justifycenter : {
230         title: '���� �����',
231         text: '.��� ����� �� ����� �����',
232         cls: 'x-html-editor-tip'
233       },
234       justifyright : {
235         title: '���� �����',
236         text: '.��� ����� �� ����� �����',
237         cls: 'x-html-editor-tip'
238       },
239       insertunorderedlist : {
240         title: '����� ������',
241         text: '.���� ����� ������',
242         cls: 'x-html-editor-tip'
243       },
244       insertorderedlist : {
245         title: '����� �������',
246         text: '.���� ����� �������',
247         cls: 'x-html-editor-tip'
248       },
249       createlink : {
250         title: '�����',
251         text: '.���� �� ����� ����� ������',
252         cls: 'x-html-editor-tip'
253       },
254       sourceedit : {
255         title: '����� ��� ����',
256         text: '.��� ��� ����',
257         cls: 'x-html-editor-tip'
258       }
259     }
260   });
261 }
262
263 if(Ext.grid.GridView){
264   Ext.apply(Ext.grid.GridView.prototype, {
265     sortAscText  : "���� ���� ����",
266     sortDescText : "���� ���� ����",
267     lockText     : "��� �����",
268     unlockText   : "���� �����",
269     columnsText  : "������"
270   });
271 }
272
273 if(Ext.grid.GroupingView){
274   Ext.apply(Ext.grid.GroupingView.prototype, {
275     emptyGroupText : '(���)',
276     groupByText    : '��� ������� ��� ��� ��',
277     showGroupsText : '��� �������'
278   });
279 }
280
281 if(Ext.grid.PropertyColumnModel){
282   Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
283     nameText   : "��",
284     valueText  : "���",
285     dateFormat : "m/j/Y"
286   });
287 }
288
289 if(Ext.layout.BorderLayout && Ext.layout.BorderLayout.SplitRegion){
290   Ext.apply(Ext.layout.BorderLayout.SplitRegion.prototype, {
291     splitTip            : ".���� ������ ����",
292     collapsibleSplitTip : ".���� ������ ����. ����� ����� ������"
293   });
294 }
295 </pre>    \r
296 </body>\r
297 </html>