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