source: trunk/web/addons/job_monarch/lib/extjs/source/locale/ext-lang-mk.js @ 619

Last change on this file since 619 was 619, checked in by ramonb, 15 years ago

lib/:

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