~cdparra/gelee/trunk

« back to all changes in this revision

Viewing changes to webui/ecosystem/extjs/source/locale/ext-lang-hr.js

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

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Croatian translation
 
3
 * By Ylodi (utf8 encoding)
 
4
 * 8 May 2007
 
5
 *
 
6
 * By Stjepan at gmail dot com (utf8 encoding)
 
7
 * 17 May 2008
 
8
 */
 
9
 
 
10
Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">Učitavanje...</div>';
 
11
 
 
12
if(Ext.View){
 
13
   Ext.View.prototype.emptyText = "";
 
14
}
 
15
 
 
16
if(Ext.grid.GridPanel){
 
17
   Ext.grid.GridPanel.prototype.ddText = "{0} odabranih redova";
 
18
}
 
19
 
 
20
if(Ext.TabPanelItem){
 
21
   Ext.TabPanelItem.prototype.closeText = "Zatvori ovaj tab";
 
22
}
 
23
 
 
24
if(Ext.form.Field){
 
25
   Ext.form.Field.prototype.invalidText = "Unesena vrijednost u ovom polju je neispravna";
 
26
}
 
27
 
 
28
if(Ext.LoadMask){
 
29
    Ext.LoadMask.prototype.msg = "Učitavanje...";
 
30
}
 
31
 
 
32
Date.monthNames = [
 
33
   "Siječanj",
 
34
   "Veljača",
 
35
   "Ožujak",
 
36
   "Travanj",
 
37
   "Svibanj",
 
38
   "Lipanj",
 
39
   "Srpanj",
 
40
   "Kolovoz",
 
41
   "Rujan",
 
42
   "Listopad",
 
43
   "Studeni",
 
44
   "Prosinac"
 
45
];
 
46
 
 
47
Date.getShortMonthName = function(month) {
 
48
  return Date.monthNames[month].substring(0, 3);
 
49
};
 
50
 
 
51
Date.monthNumbers = {
 
52
  Jan : 0,
 
53
  Feb : 1,
 
54
  Mar : 2,
 
55
  Apr : 3,
 
56
  May : 4,
 
57
  Jun : 5,
 
58
  Jul : 6,
 
59
  Aug : 7,
 
60
  Sep : 8,
 
61
  Oct : 9,
 
62
  Nov : 10,
 
63
  Dec : 11
 
64
};
 
65
 
 
66
Date.getMonthNumber = function(name) {
 
67
  return Date.monthNumbers[name.substring(0, 1).toUpperCase() + name.substring(1, 3).toLowerCase()];
 
68
};
 
69
 
 
70
Date.dayNames = [
 
71
   "Nedjelja",
 
72
   "Ponedjeljak",
 
73
   "Utorak",
 
74
   "Srijeda",
 
75
   "Četvrtak",
 
76
   "Petak",
 
77
   "Subota"
 
78
];
 
79
 
 
80
Date.getShortDayName = function(day) {
 
81
  return Date.dayNames[day].substring(0, 3);
 
82
};
 
83
 
 
84
if(Ext.MessageBox){
 
85
   Ext.MessageBox.buttonText = {
 
86
      ok     : "U redu",
 
87
      cancel : "Odustani",
 
88
      yes    : "Da",
 
89
      no     : "Ne"
 
90
   };
 
91
}
 
92
 
 
93
if(Ext.util.Format){
 
94
   Ext.util.Format.date = function(v, format){
 
95
      if(!v) return "";
 
96
      if(!(v instanceof Date)) v = new Date(Date.parse(v));
 
97
      return v.dateFormat(format || "d.m.Y");
 
98
   };
 
99
}
 
100
 
 
101
if(Ext.DatePicker){
 
102
   Ext.apply(Ext.DatePicker.prototype, {
 
103
      todayText         : "Danas",
 
104
      minText           : "Taj datum je prije najmanjeg datuma",
 
105
      maxText           : "Taj datum je poslije najvećeg datuma",
 
106
      disabledDaysText  : "",
 
107
      disabledDatesText : "",
 
108
      monthNames        : Date.monthNames,
 
109
      dayNames          : Date.dayNames,
 
110
      nextText          : 'Slijedeći mjesec (Control+Desno)',
 
111
      prevText          : 'Prethodni mjesec (Control+Lijevo)',
 
112
      monthYearText     : 'Odaberite mjesec (Control+Gore/Dolje za promjenu godine)',
 
113
      todayTip          : "{0} (Razmaknica)",
 
114
      format            : "d.m.y",
 
115
      okText            : "&#160;U redu&#160;",
 
116
      cancelText        : "Odustani",      
 
117
      startDay           : 1
 
118
   });
 
119
}
 
120
 
 
121
if(Ext.PagingToolbar){
 
122
   Ext.apply(Ext.PagingToolbar.prototype, {
 
123
      beforePageText : "Stranica",
 
124
      afterPageText  : "od {0}",
 
125
      firstText      : "Prva stranica",
 
126
      prevText       : "Prethodna stranica",
 
127
      nextText       : "Slijedeća stranica",
 
128
      lastText       : "Posljednja stranica",
 
129
      refreshText    : "Obnovi",
 
130
      displayMsg     : "Prikazujem {0} - {1} od {2}",
 
131
      emptyMsg       : 'Nema podataka za prikaz'
 
132
   });
 
133
}
 
134
 
 
135
if(Ext.form.TextField){
 
136
   Ext.apply(Ext.form.TextField.prototype, {
 
137
      minLengthText : "Minimalna dužina za ovo polje je {0}",
 
138
      maxLengthText : "Maksimalna dužina za ovo polje je {0}",
 
139
      blankText     : "Ovo polje je obavezno",
 
140
      regexText     : "",
 
141
      emptyText     : null
 
142
   });
 
143
}
 
144
 
 
145
if(Ext.form.NumberField){
 
146
   Ext.apply(Ext.form.NumberField.prototype, {
 
147
      minText : "Minimalna vrijednost za ovo polje je {0}",
 
148
      maxText : "Maksimalna vrijednost za ovo polje je {0}",
 
149
      nanText : "{0} nije ispravan broj"
 
150
   });
 
151
}
 
152
 
 
153
if(Ext.form.DateField){
 
154
   Ext.apply(Ext.form.DateField.prototype, {
 
155
      disabledDaysText  : "Neaktivno",
 
156
      disabledDatesText : "Neaktivno",
 
157
      minText           : "Datum u ovom polje mora biti poslije {0}",
 
158
      maxText           : "Datum u ovom polju mora biti prije {0}",
 
159
      invalidText       : "{0} nije ispravan datum - mora biti u obliku {1}",
 
160
      format            : "d.m.y"
 
161
   });
 
162
}
 
163
 
 
164
if(Ext.form.ComboBox){
 
165
   Ext.apply(Ext.form.ComboBox.prototype, {
 
166
      loadingText       : "Učitavanje...",
 
167
      valueNotFoundText : undefined
 
168
   });
 
169
}
 
170
 
 
171
if(Ext.form.VTypes){
 
172
   Ext.apply(Ext.form.VTypes, {
 
173
      emailText    : 'Ovdje možete unijeti samo e-mail adresu u obliku "korisnik@domena.com"',
 
174
      urlText      : 'Ovdje možete unijeti samo URL u obliku "http:/'+'/www.domena.com"',
 
175
      alphaText    : 'Ovo polje može sadržavati samo slova i znak _',
 
176
      alphanumText : 'Ovo polje može sadržavati samo slova, brojeve i znak _'
 
177
   });
 
178
}
 
179
 
 
180
if(Ext.form.HtmlEditor){
 
181
  Ext.apply(Ext.form.HtmlEditor.prototype, {
 
182
    createLinkText : 'Unesite URL za link:',
 
183
    buttonTips : {
 
184
      bold : {
 
185
        title: 'Podebljano (Ctrl+B)',
 
186
        text: 'Podebljavanje označenog teksta.',
 
187
        cls: 'x-html-editor-tip'
 
188
      },
 
189
      italic : {
 
190
        title: 'Kurziv (Ctrl+I)',
 
191
        text: 'Pretvaranje označenog tekst u kurziv',
 
192
        cls: 'x-html-editor-tip'
 
193
      },
 
194
      underline : {
 
195
        title: 'Podcrtano (Ctrl+U)',
 
196
        text: 'Potcrtavanje označenog teksta',
 
197
        cls: 'x-html-editor-tip'
 
198
      },
 
199
      increasefontsize : {
 
200
        title: 'Povećanje teksta',
 
201
        text: 'Povećavanje veličine fonta.',
 
202
        cls: 'x-html-editor-tip'
 
203
      },
 
204
      decreasefontsize : {
 
205
        title: 'Smanjivanje teksta',
 
206
        text: 'Smanjivanje veličine fonta.',
 
207
        cls: 'x-html-editor-tip'
 
208
      },
 
209
      backcolor : {
 
210
        title: 'Boja označenog teksta',
 
211
        text: 'Promjena boje pozadine označenog teksta.',
 
212
        cls: 'x-html-editor-tip'
 
213
      },
 
214
      forecolor : {
 
215
        title: 'Boja fonta',
 
216
        text: 'Promjena boje označenog teksta.',
 
217
        cls: 'x-html-editor-tip'
 
218
      },
 
219
      justifyleft : {
 
220
        title: 'Lijevo poravnanje teksta',
 
221
        text: 'Poravnanje teksta na lijevu stranu.',
 
222
        cls: 'x-html-editor-tip'
 
223
      },
 
224
      justifycenter : {
 
225
        title: 'Centriranje teksta',
 
226
        text: 'Centriranje teksta u uređivaču teksta.',
 
227
        cls: 'x-html-editor-tip'
 
228
      },
 
229
      justifyright : {
 
230
        title: 'Desno poravnanje teksta',
 
231
        text: 'Poravnanje teksta na desnu stranu.',
 
232
        cls: 'x-html-editor-tip'
 
233
      },
 
234
      insertunorderedlist : {
 
235
        title: 'Označena lista',
 
236
        text: 'Započinjanje označene liste.',
 
237
        cls: 'x-html-editor-tip'
 
238
      },
 
239
      insertorderedlist : {
 
240
        title: 'Numerirana lista',
 
241
        text: 'Započinjanje numerirane liste.',
 
242
        cls: 'x-html-editor-tip'
 
243
      },
 
244
      createlink : {
 
245
        title: 'Hiperveza',
 
246
        text: 'Stvaranje hiperveze od označenog teksta.',
 
247
        cls: 'x-html-editor-tip'
 
248
      },
 
249
      sourceedit : {
 
250
        title: 'Uređivanje izvornog koda',
 
251
        text: 'Prebacivanje u način rada za uređivanje izvornog koda.',
 
252
        cls: 'x-html-editor-tip'
 
253
      }
 
254
    }
 
255
  });
 
256
}
 
257
 
 
258
if(Ext.grid.GridView){
 
259
   Ext.apply(Ext.grid.GridView.prototype, {
 
260
      sortAscText  : "Sortiraj rastućim redoslijedom",
 
261
      sortDescText : "Sortiraj padajućim redoslijedom",
 
262
      lockText     : "Zaključaj stupac",
 
263
      unlockText   : "Otključaj stupac",
 
264
      columnsText  : "Stupci"
 
265
   });
 
266
}
 
267
 
 
268
if(Ext.grid.GroupingView){
 
269
  Ext.apply(Ext.grid.GroupingView.prototype, {
 
270
    emptyGroupText : '(Ništa)',
 
271
    groupByText    : 'Grupiranje po ovom polju',
 
272
    showGroupsText : 'Prikaz u grupama'
 
273
  });
 
274
}
 
275
 
 
276
if(Ext.grid.PropertyColumnModel){
 
277
   Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
 
278
      nameText   : "Naziv",
 
279
      valueText  : "Vrijednost",
 
280
      dateFormat : "d.m.Y"
 
281
   });
 
282
}
 
283
 
 
284
if(Ext.layout.BorderLayout.SplitRegion){
 
285
   Ext.apply(Ext.layout.BorderLayout.SplitRegion.prototype, {
 
286
      splitTip            : "Povuci za promjenu veličine.",
 
287
      collapsibleSplitTip : "Povuci za promjenu veličine. Dvostruki klik za skrivanje."
 
288
   });
 
289
}