Upgrade to ExtJS 3.1.0 - Released 12/16/2009
[extjs.git] / docs / source / ext-lang-mk.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  * Macedonia translation
11  * By PetarD petar.dimitrijevic@vorteksed.com.mk (utf8 encoding)
12  * 23 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 = "Затвори tab";
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 || "d.m.y");
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          : 'Следен месец (Control+Стрелка десно)',
89       prevText          : 'Претходен месец (Control+Стрелка лево)',
90       monthYearText     : 'Изберете месец (Control+Стрелка горе/Стрелка десно за менување година)',
91       todayTip          : "{0} (Spacebar)",
92       format            : "d.m.y"
93    });
94 }
95
96 if(Ext.PagingToolbar){
97    Ext.apply(Ext.PagingToolbar.prototype, {
98       beforePageText : "Страница",
99       afterPageText  : "од {0}",
100       firstText      : "Прва Страница",
101       prevText       : "Претходна Страница",
102       nextText       : "Следна Страница",
103       lastText       : "Последна Страница",
104       refreshText    : "Освежи",
105       displayMsg     : "Прикажувам {0} - {1} од {2}",
106       emptyMsg       : 'Нема податоци за приказ'
107    });
108 }
109
110 if(Ext.form.TextField){
111    Ext.apply(Ext.form.TextField.prototype, {
112       minLengthText : "Минималната должина за ова поле е {0}",
113       maxLengthText : "Максималната должина за ова поле е {0}",
114       blankText     : "Податоците во ова поле се потребни",
115       regexText     : "",
116       emptyText     : null
117    });
118 }
119
120 if(Ext.form.NumberField){
121    Ext.apply(Ext.form.NumberField.prototype, {
122       minText : "Минималната вредност за ова поле е {0}",
123       maxText : "Максималната вредност за ова поле е {0}",
124       nanText : "{0} не е валиден број"
125    });
126 }
127
128 if(Ext.form.DateField){
129    Ext.apply(Ext.form.DateField.prototype, {
130       disabledDaysText  : "Неактивно",
131       disabledDatesText : "Неактивно",
132       minText           : "Датумот во ова поле мора да биде пред {0}",
133       maxText           : "Датумот во ова поле мора да биде по {0}",
134       invalidText       : "{0} не е валиден датум - мора да биде во формат {1}",
135       format            : "d.m.y"
136    });
137 }
138
139 if(Ext.form.ComboBox){
140    Ext.apply(Ext.form.ComboBox.prototype, {
141       loadingText       : "Вчитувам...",
142       valueNotFoundText : undefined
143    });
144 }
145
146 if(Ext.form.VTypes){
147    Ext.apply(Ext.form.VTypes, {
148       emailText    : 'Ова поле треба да биде e-mail адреса во формат "user@example.com"',
149       urlText      : 'Ова поле треба да биде URL во формат "http:/'+'/www.example.com"',
150       alphaText    : 'Ова поле треба да содржи само букви и _',
151       alphanumText : 'Ова поле треба да содржи само букви, бројки и _'
152    });
153 }
154
155 if(Ext.grid.GridView){
156    Ext.apply(Ext.grid.GridView.prototype, {
157       sortAscText  : "Сортирај Растечки",
158       sortDescText : "Сортирај Опаѓачки",
159       lockText     : "Заклучи Колона",
160       unlockText   : "Отклучи колона",
161       columnsText  : "Колони"
162    });
163 }
164
165 if(Ext.grid.PropertyColumnModel){
166    Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
167       nameText   : "Име",
168       valueText  : "Вредност",
169       dateFormat : "m.d.Y"
170    });
171 }
172
173 if(Ext.layout.BorderLayout && Ext.layout.BorderLayout.SplitRegion){
174    Ext.apply(Ext.layout.BorderLayout.SplitRegion.prototype, {
175       splitTip            : "Повлечете за менување на големината.",
176       collapsibleSplitTip : "Повлечете за менување на големината. Дупли клик за криење."
177    });
178 }</pre>    \r
179 </body>\r
180 </html>