Upgrade to ExtJS 3.0.3 - Released 10/11/2009
[extjs.git] / docs / source / ext-lang-sr.html
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  * Ext JS Library 3.0.3
10  * Copyright(c) 2006-2009 Ext JS, LLC
11  * licensing@extjs.com
12  * http://www.extjs.com/license
13  */
14 /*
15  * Serbian Latin Translation
16  * by Atila Hajnal (latin, utf8 encoding)
17  * sr
18  * 14 Sep 2007
19  */
20
21 Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">UÄ?itavam...</div>';
22
23 if(Ext.View){
24    Ext.View.prototype.emptyText = "Ne postoji ni jedan slog";
25 }
26
27 if(Ext.grid.GridPanel){
28    Ext.grid.GridPanel.prototype.ddText = "{0} izabranih redova";
29 }
30
31 if(Ext.TabPanelItem){
32    Ext.TabPanelItem.prototype.closeText = "Zatvori оvu »karticu«";
33 }
34
35 if(Ext.form.Field){
36    Ext.form.Field.prototype.invalidText = "Unešena vrednost nije pravilna";
37 }
38
39 if(Ext.LoadMask){
40     Ext.LoadMask.prototype.msg = "UÄ?itavam...";
41 }
42
43 Date.monthNames = [
44    "Januar",
45    "Februar",
46    "Mart",
47    "April",
48    "Мај",
49    "Jun",
50    "Јul",
51    "Avgust",
52    "Septembar",
53    "Oktobar",
54    "Novembar",
55    "Decembar"
56 ];
57
58 Date.dayNames = [
59    "Nedelja",
60    "Ponedeljak",
61    "Utorak",
62    "Sreda",
63    "Četvrtak",
64    "Petak",
65    "Subota"
66 ];
67
68 if(Ext.MessageBox){
69    Ext.MessageBox.buttonText = {
70       ok     : "U redu",
71       cancel : "Odustani",
72       yes    : "Da",
73       no     : "Ne"
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         : "Danas",
88       minText           : "Datum је ispred najmanjeg dozvoljenog datuma",
89       maxText           : "Datum је nakon najvećeg dozvoljenog datuma",
90       disabledDaysText  : "",
91       disabledDatesText : "",
92       monthNames        : Date.monthNames,
93       dayNames          : Date.dayNames,
94       nextText          : 'Sledeći mesec (Control+Desno)',
95       prevText          : 'Prethodni mesec (Control+Levo)',
96       monthYearText     : 'Izaberite mesec (Control+Gore/Dole za izbor godine)',
97       todayTip          : "{0} (Razmaknica)",
98       format            : "d.m.y",
99       startDay           : 1
100    });
101 }
102
103 if(Ext.PagingToolbar){
104    Ext.apply(Ext.PagingToolbar.prototype, {
105       beforePageText : "Strana",
106       afterPageText  : "od {0}",
107       firstText      : "Prva strana",
108       prevText       : "Prethodna strana",
109       nextText       : "Sledeća strana",
110       lastText       : "Poslednja strana",
111       refreshText    : "Osveži",
112       displayMsg     : "Prikazana {0} - {1} od {2}",
113       emptyMsg       : 'Nemam šta prikazati'
114    });
115 }
116
117 if(Ext.form.TextField){
118    Ext.apply(Ext.form.TextField.prototype, {
119       minLengthText : "Minimalna dužina ovog polja је {0}",
120       maxLengthText : "Maksimalna dužina ovog polja је {0}",
121       blankText     : "Polje је obavezno",
122       regexText     : "",
123       emptyText     : null
124    });
125 }
126
127 if(Ext.form.NumberField){
128    Ext.apply(Ext.form.NumberField.prototype, {
129       minText : "Minimalna vrednost u polju је {0}",
130       maxText : "Maksimalna vrednost u polju је {0}",
131       nanText : "{0} nije pravilan broj"
132    });
133 }
134
135 if(Ext.form.DateField){
136    Ext.apply(Ext.form.DateField.prototype, {
137       disabledDaysText  : "Pasivno",
138       disabledDatesText : "Pasivno",
139       minText           : "Datum u ovom polju mora biti nakon {0}",
140       maxText           : "Datum u ovom polju mora biti pre {0}",
141       invalidText       : "{0} nije pravilan datum - zahtevani oblik je {1}",
142       format            : "d.m.y",
143       altFormats        : "d.m.y|d/m/Y|d-m-y|d-m-Y|d/m|d-m|dm|dmy|dmY|d|Y-m-d"
144    });
145 }
146
147 if(Ext.form.ComboBox){
148    Ext.apply(Ext.form.ComboBox.prototype, {
149       loadingText       : "UÄ?itavam...",
150       valueNotFoundText : undefined
151    });
152 }
153
154 if(Ext.form.VTypes){
155    Ext.apply(Ext.form.VTypes, {
156       emailText    : 'Ovo polje prihavata e-mail adresu iskljuÄ?ivo u obliku "korisnik@domen.com"',
157       urlText      : 'Ovo polje prihavata URL adresu iskljuÄ?ivo u obliku "http:/'+'/www.domen.com"',
158       alphaText    : 'Ovo polje može sadržati iskljuÄ?ivo slova i znak _',
159       alphanumText : 'Ovo polje može sadržati Ñ?амо slova, brojeve i znak _'
160    });
161 }
162
163 if(Ext.grid.GridView){
164    Ext.apply(Ext.grid.GridView.prototype, {
165       sortAscText  : "Rastući redosled",
166       sortDescText : "Opadajući redosled",
167       lockText     : "ZakljuÄ?aj kolonu",
168       unlockText   : "OtkljuÄ?aj kolonu",
169       columnsText  : "Kolone"
170    });
171 }
172
173 if(Ext.grid.PropertyColumnModel){
174    Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
175       nameText   : "Naziv",
176       valueText  : "Vrednost",
177       dateFormat : "d.m.Y"
178    });
179 }
180
181 if(Ext.layout.BorderLayout && Ext.layout.BorderLayout.SplitRegion){
182    Ext.apply(Ext.layout.BorderLayout.SplitRegion.prototype, {
183       splitTip            : "PovuÄ\87i za izmenu veliÄ?ine.",
184       collapsibleSplitTip : "PovuÄ\87i za izmenu veliÄ?ine. Dvostruku klik za sakrivanje."
185    });
186 }
187 </pre>
188 </body>
189 </html>