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