Upgrade to ExtJS 3.2.2 - Released 06/02/2010
[extjs.git] / docs / source / ext-lang-mk.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 /*
16  * Macedonia translation
17  * By PetarD petar.dimitrijevic@vorteksed.com.mk (utf8 encoding)
18  * 23 April 2007
19  */
20
21 Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">Вчитувам...</div>';
22
23 if(Ext.View){
24    Ext.View.prototype.emptyText = "";
25 }
26
27 if(Ext.grid.GridPanel){
28    Ext.grid.GridPanel.prototype.ddText = "{0} избрани редици";
29 }
30
31 if(Ext.TabPanelItem){
32    Ext.TabPanelItem.prototype.closeText = "Затвори tab";
33 }
34
35 if(Ext.form.Field){
36    Ext.form.Field.prototype.invalidText = "Вредноста во ова поле е невалидна";
37 }
38
39 if(Ext.LoadMask){
40     Ext.LoadMask.prototype.msg = "Вчитувам...";
41 }
42
43 Date.monthNames = [
44    "Јануари",
45    "Февруари",
46    "Март",
47    "Април",
48    "Мај",
49    "Јуни",
50    "Јули",
51    "Август",
52    "Септември",
53    "Октомври",
54    "Ноември",
55    "Декември"
56 ];
57
58 Date.dayNames = [
59    "Недела",
60    "Понеделник",
61    "Вторник",
62    "Среда",
63    "Четврток",
64    "Петок",
65    "Сабота"
66 ];
67
68 if(Ext.MessageBox){
69    Ext.MessageBox.buttonText = {
70       ok     : "Потврди",
71       cancel : "Поништи",
72       yes    : "Да",
73       no     : "Не"
74    };
75 }
76
77 if(Ext.util.Format){
78    Ext.util.Format.date = function(v, format){
79       if(!v) return "";
80       if(!(v instanceof Date)) v = new Date(Date.parse(v));
81       return v.dateFormat(format || "d.m.y");
82    };
83 }
84
85 if(Ext.DatePicker){
86    Ext.apply(Ext.DatePicker.prototype, {
87       todayText         : "Денеска",
88       minText           : "Овој датум е пред најмалиот датум",
89       maxText           : "Овој датум е пред најголемиот датум",
90       disabledDaysText  : "",
91       disabledDatesText : "",
92       monthNames        : Date.monthNames,
93       dayNames          : Date.dayNames,
94       nextText          : 'Следен месец (Control+Стрелка десно)',
95       prevText          : 'Претходен месец (Control+Стрелка лево)',
96       monthYearText     : 'Изберете месец (Control+Стрелка горе/Стрелка десно за менување година)',
97       todayTip          : "{0} (Spacebar)",
98       format            : "d.m.y"
99    });
100 }
101
102 if(Ext.PagingToolbar){
103    Ext.apply(Ext.PagingToolbar.prototype, {
104       beforePageText : "Страница",
105       afterPageText  : "од {0}",
106       firstText      : "Прва Страница",
107       prevText       : "Претходна Страница",
108       nextText       : "Следна Страница",
109       lastText       : "Последна Страница",
110       refreshText    : "Освежи",
111       displayMsg     : "Прикажувам {0} - {1} од {2}",
112       emptyMsg       : 'Нема податоци за приказ'
113    });
114 }
115
116 if(Ext.form.TextField){
117    Ext.apply(Ext.form.TextField.prototype, {
118       minLengthText : "Минималната должина за ова поле е {0}",
119       maxLengthText : "Максималната должина за ова поле е {0}",
120       blankText     : "Податоците во ова поле се потребни",
121       regexText     : "",
122       emptyText     : null
123    });
124 }
125
126 if(Ext.form.NumberField){
127    Ext.apply(Ext.form.NumberField.prototype, {
128       minText : "Минималната вредност за ова поле е {0}",
129       maxText : "Максималната вредност за ова поле е {0}",
130       nanText : "{0} не е валиден број"
131    });
132 }
133
134 if(Ext.form.DateField){
135    Ext.apply(Ext.form.DateField.prototype, {
136       disabledDaysText  : "Неактивно",
137       disabledDatesText : "Неактивно",
138       minText           : "Датумот во ова поле мора да биде пред {0}",
139       maxText           : "Датумот во ова поле мора да биде по {0}",
140       invalidText       : "{0} не е валиден датум - мора да биде во формат {1}",
141       format            : "d.m.y"
142    });
143 }
144
145 if(Ext.form.ComboBox){
146    Ext.apply(Ext.form.ComboBox.prototype, {
147       loadingText       : "Вчитувам...",
148       valueNotFoundText : undefined
149    });
150 }
151
152 if(Ext.form.VTypes){
153    Ext.apply(Ext.form.VTypes, {
154       emailText    : 'Ова поле треба да биде e-mail адреса во формат "user@example.com"',
155       urlText      : 'Ова поле треба да биде URL во формат "http:/'+'/www.example.com"',
156       alphaText    : 'Ова поле треба да содржи само букви и _',
157       alphanumText : 'Ова поле треба да содржи само букви, бројки и _'
158    });
159 }
160
161 if(Ext.grid.GridView){
162    Ext.apply(Ext.grid.GridView.prototype, {
163       sortAscText  : "Сортирај Растечки",
164       sortDescText : "Сортирај Опаѓачки",
165       lockText     : "Заклучи Колона",
166       unlockText   : "Отклучи колона",
167       columnsText  : "Колони"
168    });
169 }
170
171 if(Ext.grid.PropertyColumnModel){
172    Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
173       nameText   : "Име",
174       valueText  : "Вредност",
175       dateFormat : "m.d.Y"
176    });
177 }
178
179 if(Ext.layout.BorderLayout && Ext.layout.BorderLayout.SplitRegion){
180    Ext.apply(Ext.layout.BorderLayout.SplitRegion.prototype, {
181       splitTip            : "Повлечете за менување на големината.",
182       collapsibleSplitTip : "Повлечете за менување на големината. Дупли клик за криење."
183    });
184 }</pre>    
185 </body>
186 </html>