~cdparra/gelee/trunk

« back to all changes in this revision

Viewing changes to webui/ecosystem/workspace/extjs/docs/source/ext-lang-mk.html

  • Committer: parra
  • Date: 2010-03-15 15:56:56 UTC
  • Revision ID: svn-v4:ac5bba68-f036-4e09-846e-8f32731cc928:trunk/gelee:1448
merged gelee at svn

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<html>
 
2
<head>
 
3
  <title>The source code</title>
 
4
    <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />
 
5
    <script type="text/javascript" src="../resources/prettify/prettify.js"></script>
 
6
</head>
 
7
<body  onload="prettyPrint();">
 
8
    <pre class="prettyprint lang-js">/*
 
9
 * Macedonia translation
 
10
 * By PetarD petar.dimitrijevic@vorteksed.com.mk (utf8 encoding)
 
11
 * 23 April 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 = "Затвори tab";
 
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.dayNames = [
 
52
   "Недела",
 
53
   "Понеделник",
 
54
   "Вторник",
 
55
   "Среда",
 
56
   "Четврток",
 
57
   "Петок",
 
58
   "Сабота"
 
59
];
 
60
 
 
61
if(Ext.MessageBox){
 
62
   Ext.MessageBox.buttonText = {
 
63
      ok     : "Потврди",
 
64
      cancel : "Поништи",
 
65
      yes    : "Да",
 
66
      no     : "Не"
 
67
   };
 
68
}
 
69
 
 
70
if(Ext.util.Format){
 
71
   Ext.util.Format.date = function(v, format){
 
72
      if(!v) return "";
 
73
      if(!(v instanceof Date)) v = new Date(Date.parse(v));
 
74
      return v.dateFormat(format || "d.m.y");
 
75
   };
 
76
}
 
77
 
 
78
if(Ext.DatePicker){
 
79
   Ext.apply(Ext.DatePicker.prototype, {
 
80
      todayText         : "Денеска",
 
81
      minText           : "Овој датум е пред најмалиот датум",
 
82
      maxText           : "Овој датум е пред најголемиот датум",
 
83
      disabledDaysText  : "",
 
84
      disabledDatesText : "",
 
85
      monthNames        : Date.monthNames,
 
86
      dayNames          : Date.dayNames,
 
87
      nextText          : 'Следен месец (Control+Стрелка десно)',
 
88
      prevText          : 'Претходен месец (Control+Стрелка лево)',
 
89
      monthYearText     : 'Изберете месец (Control+Стрелка горе/Стрелка десно за менување година)',
 
90
      todayTip          : "{0} (Spacebar)",
 
91
      format            : "d.m.y"
 
92
   });
 
93
}
 
94
 
 
95
if(Ext.PagingToolbar){
 
96
   Ext.apply(Ext.PagingToolbar.prototype, {
 
97
      beforePageText : "Страница",
 
98
      afterPageText  : "од {0}",
 
99
      firstText      : "Прва Страница",
 
100
      prevText       : "Претходна Страница",
 
101
      nextText       : "Следна Страница",
 
102
      lastText       : "Последна Страница",
 
103
      refreshText    : "Освежи",
 
104
      displayMsg     : "Прикажувам {0} - {1} од {2}",
 
105
      emptyMsg       : 'Нема податоци за приказ'
 
106
   });
 
107
}
 
108
 
 
109
if(Ext.form.TextField){
 
110
   Ext.apply(Ext.form.TextField.prototype, {
 
111
      minLengthText : "Минималната должина за ова поле е {0}",
 
112
      maxLengthText : "Максималната должина за ова поле е {0}",
 
113
      blankText     : "Податоците во ова поле се потребни",
 
114
      regexText     : "",
 
115
      emptyText     : null
 
116
   });
 
117
}
 
118
 
 
119
if(Ext.form.NumberField){
 
120
   Ext.apply(Ext.form.NumberField.prototype, {
 
121
      minText : "Минималната вредност за ова поле е {0}",
 
122
      maxText : "Максималната вредност за ова поле е {0}",
 
123
      nanText : "{0} не е валиден број"
 
124
   });
 
125
}
 
126
 
 
127
if(Ext.form.DateField){
 
128
   Ext.apply(Ext.form.DateField.prototype, {
 
129
      disabledDaysText  : "Неактивно",
 
130
      disabledDatesText : "Неактивно",
 
131
      minText           : "Датумот во ова поле мора да биде пред {0}",
 
132
      maxText           : "Датумот во ова поле мора да биде по {0}",
 
133
      invalidText       : "{0} не е валиден датум - мора да биде во формат {1}",
 
134
      format            : "d.m.y"
 
135
   });
 
136
}
 
137
 
 
138
if(Ext.form.ComboBox){
 
139
   Ext.apply(Ext.form.ComboBox.prototype, {
 
140
      loadingText       : "Вчитувам...",
 
141
      valueNotFoundText : undefined
 
142
   });
 
143
}
 
144
 
 
145
if(Ext.form.VTypes){
 
146
   Ext.apply(Ext.form.VTypes, {
 
147
      emailText    : 'Ова поле треба да биде e-mail адреса во формат "user@example.com"',
 
148
      urlText      : 'Ова поле треба да биде URL во формат "http:/'+'/www.example.com"',
 
149
      alphaText    : 'Ова поле треба да содржи само букви и _',
 
150
      alphanumText : 'Ова поле треба да содржи само букви, бројки и _'
 
151
   });
 
152
}
 
153
 
 
154
if(Ext.grid.GridView){
 
155
   Ext.apply(Ext.grid.GridView.prototype, {
 
156
      sortAscText  : "Сортирај Растечки",
 
157
      sortDescText : "Сортирај Опаѓачки",
 
158
      lockText     : "Заклучи Колона",
 
159
      unlockText   : "Отклучи колона",
 
160
      columnsText  : "Колони"
 
161
   });
 
162
}
 
163
 
 
164
if(Ext.grid.PropertyColumnModel){
 
165
   Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
 
166
      nameText   : "Име",
 
167
      valueText  : "Вредност",
 
168
      dateFormat : "m.d.Y"
 
169
   });
 
170
}
 
171
 
 
172
if(Ext.layout.BorderLayout && Ext.layout.BorderLayout.SplitRegion){
 
173
   Ext.apply(Ext.layout.BorderLayout.SplitRegion.prototype, {
 
174
      splitTip            : "Повлечете за менување на големината.",
 
175
      collapsibleSplitTip : "Повлечете за менување на големината. Дупли клик за криење."
 
176
   });
 
177
}</pre>    
 
178
</body>
 
179
</html>
 
 
b'\\ No newline at end of file'