Upgrade to ExtJS 3.0.3 - Released 10/11/2009
[extjs.git] / docs / source / ext-lang-lt.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 <div id="prop-Ext.Direct.Transaction-indicatorText"></div>/**
15  * Lithuanian Translations (UTF-8)
16  * Vladas Saulis (vladas at prodata dot lt),  03-29-2009
17  * Vladas Saulis (vladas at prodata dot lt),  10-18-2007
18  */
19
20 Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">Kraunasi...</div>';
21
22 if(Ext.View){
23   Ext.View.prototype.emptyText = "";
24 }
25
26 if(Ext.DataView){
27   Ext.DataView.prototype.emptyText = "";
28 }
29 if(Ext.grid.GridPanel){
30   Ext.grid.GridPanel.prototype.ddText = "{0} pažymÄ\97tų eiluÄ?ių";
31 }
32
33 if(Ext.TabPanelItem){
34   Ext.TabPanelItem.prototype.closeText = "Uždaryti šią užsklandą";
35 }
36
37 if(Ext.form.Field){
38   Ext.form.Field.prototype.invalidText = "Šio lauko reikšmė neteisinga";
39 }
40
41 if(Ext.LoadMask){
42   Ext.LoadMask.prototype.msg = "Kraunasi...";
43 }
44
45 Date.monthNames = [
46   "Sausis",
47   "Vasaris",
48   "Kovas",
49   "Balandis",
50   "Gegužė",
51   "Birželis",
52   "Liepa",
53   "Rugpjūtis",
54   "Rugsėjis",
55   "Spalis",
56   "Lapkritis",
57   "Gruodis"
58 ];
59
60 Date.getShortMonthName = function(month) {
61     // Uncommons
62     if (month == 7) return "Rgp";
63     if (month == 8) return "Rgs";
64     if (month == 11) return "Grd";
65   return Date.monthNames[month].substring(0, 3);
66 };
67
68 Date.monthNumbers = {
69   Sau : 0,
70   Vas : 1,
71   Kov : 2,
72   Bal : 3,
73   Geg : 4,
74   Bir : 5,
75   Lie : 6,
76   Rgp : 7,
77   Rgs : 8,
78   Spa : 9,
79   Lap : 10,
80   Grd : 11
81 };
82
83 Date.getMonthNumber = function(name) {
84
85     // Some uncommons
86     if (name == "Rugpjūtis") return 7;
87     if (name == "Rugsėjis") return 8;
88     if (name == "Gruodis") return 11;
89   return Date.monthNumbers[name.substring(0, 1).toUpperCase() + name.substring(1, 3).toLowerCase()];
90 };
91
92 Date.dayNames = [
93   "Sekmadienis",
94   "Pirmadienis",
95   "Antradienis",
96   "TreÄ?iadienis",
97   "Ketvirtadienis",
98   "Penktadienis",
99   "Šeštadienis"
100 ];
101
102 Date.parseCodes.S.s = "(?:as|as|as|as)";
103
104 Date.getShortDayName = function(day) {
105   return Date.dayNames[day].substring(0, 3);
106 };
107
108 if(Ext.MessageBox){
109   Ext.MessageBox.buttonText = {
110     ok     : "Gerai",
111     cancel : "Atsisakyti",
112     yes    : "Taip",
113     no     : "Ne"
114   };
115 }
116
117 if(Ext.util.Format){
118   Ext.util.Format.date = function(v, format){
119     if(!v) return "";
120     if(!(v instanceof Date)) v = new Date(Date.parse(v));
121     return v.dateFormat(format || "Y-m-d");
122   };
123 }
124
125 if(Ext.DatePicker){
126   Ext.apply(Ext.DatePicker.prototype, {
127     todayText         : "Šiandien",
128     minText           : "Ši data yra mažesnė už leistiną",
129     maxText           : "Ši data yra didesnė už leistiną",
130     disabledDaysText  : "",
131     disabledDatesText : "",
132     monthNames        : Date.monthNames,
133     dayNames          : Date.dayNames,
134     nextText          : 'Kitas mėnuo (Control+Right)',
135     prevText          : 'Ankstesnis mėnuo (Control+Left)',
136     monthYearText     : 'Pasirinkti mėnesį (Control+Up/Down perėjimui tarp metų)',
137     todayTip          : "{0} (Tarpas)",
138     format            : "y-m-d",
139     okText            : "&#160;Gerai&#160;",
140     cancelText        : "Atsisaktyi",
141     startDay          : 1
142   });
143 }
144
145 if(Ext.PagingToolbar){
146   Ext.apply(Ext.PagingToolbar.prototype, {
147     beforePageText : "Puslapis",
148     afterPageText  : "iš {0}",
149     firstText      : "Pirmas puslapis",
150     prevText       : "Ankstesnis pusl.",
151     nextText       : "Kitas puslapis",
152     lastText       : "Pakutinis pusl.",
153     refreshText    : "Atnaujinti",
154     displayMsg     : "Rodomi įrašai {0} - {1} iš {2}",
155     emptyMsg       : 'Nėra duomenų'
156   });
157 }
158
159 if(Ext.form.TextField){
160   Ext.apply(Ext.form.TextField.prototype, {
161     minLengthText : "Minimalus šio lauko ilgis yra {0}",
162     maxLengthText : "Maksimalus šio lauko ilgis yra {0}",
163     blankText     : "Šis laukas yra privalomas",
164     regexText     : "",
165     emptyText     : null
166   });
167 }
168
169 if(Ext.form.NumberField){
170   Ext.apply(Ext.form.NumberField.prototype, {
171     minText : "Minimalus šio lauko ilgis yra {0}",
172     maxText : "Maksimalus šio lauko ilgis yra {0}",
173     nanText : "{0} yra neleistina reikšmė"
174   });
175 }
176
177 if(Ext.form.DateField){
178   Ext.apply(Ext.form.DateField.prototype, {
179     disabledDaysText  : "Neprieinama",
180     disabledDatesText : "Neprieinama",
181     minText           : "Šiame lauke data turi būti didesnė už {0}",
182     maxText           : "Šiame lauke data turi būti mažesnėė už {0}",
183     invalidText       : "{0} yra neteisinga data - ji turi būti įvesta formatu {1}",
184     format            : "y-m-d",
185     altFormats        : "y-m-d|y/m/d|Y-m-d|m/d|m-d|md|ymd|Ymd|d|Y-m-d"
186   });
187 }
188
189 if(Ext.form.ComboBox){
190   Ext.apply(Ext.form.ComboBox.prototype, {
191     loadingText       : "Kraunasi...",
192     valueNotFoundText : undefined
193   });
194 }
195
196 if(Ext.form.VTypes){
197   Ext.apply(Ext.form.VTypes, {
198     emailText    : 'Šiame lauke turi būti el.pašto adresas formatu "user@example.com"',
199     urlText      : 'Šiame lauke turi būti nuoroda (URL) formatu "http:/'+'/www.example.com"',
200     alphaText    : 'Šiame lauke gali būti tik raidės ir ženklas "_"',
201     alphanumText : 'Å iame lauke gali bÅ«ti tik raidÄ\97s, skaiÄ?iai ir Å¾enklas "_"'
202   });
203 }
204
205 if(Ext.form.HtmlEditor){
206   Ext.apply(Ext.form.HtmlEditor.prototype, {
207     createLinkText : 'Įveskite URL šiai nuorodai:',
208     buttonTips : {
209       bold : {
210         title: 'Bold (Ctrl+B)',
211         text: 'Teksto paryškinimas.',
212         cls: 'x-html-editor-tip'
213       },
214       italic : {
215         title: 'Italic (Ctrl+I)',
216         text: 'Kursyvinis tekstas.',
217         cls: 'x-html-editor-tip'
218       },
219       underline : {
220         title: 'Underline (Ctrl+U)',
221         text: 'Teksto pabraukimas.',
222         cls: 'x-html-editor-tip'
223       },
224       increasefontsize : {
225         title: 'Padidinti šriftą',
226         text: 'Padidinti šrifto dydį.',
227         cls: 'x-html-editor-tip'
228       },
229       decreasefontsize : {
230         title: 'Sumažinti šriftą',
231         text: 'Sumažinti šrifto dydį.',
232         cls: 'x-html-editor-tip'
233       },
234       backcolor : {
235         title: 'Nuspalvinti teksto foną',
236         text: 'Pakeisti teksto fono spalvą.',
237         cls: 'x-html-editor-tip'
238       },
239       forecolor : {
240         title: 'Teksto spalva',
241         text: 'Pakeisti pažymėto teksto spalvą.',
242         cls: 'x-html-editor-tip'
243       },
244       justifyleft : {
245         title: 'Išlyginti kairen',
246         text: 'Išlyginti tekstą į kairę.',
247         cls: 'x-html-editor-tip'
248       },
249       justifycenter : {
250         title: 'Centruoti tekstą',
251         text: 'Centruoti tektą redaktoriaus lange.',
252         cls: 'x-html-editor-tip'
253       },
254       justifyright : {
255         title: 'Išlyginti dešinėn',
256         text: 'Išlyginti tekstą į dešinę.',
257         cls: 'x-html-editor-tip'
258       },
259       insertunorderedlist : {
260         title: 'Paprastas sąrašas',
261         text: 'Pradėti neorganizuotą sąrašą.',
262         cls: 'x-html-editor-tip'
263       },
264       insertorderedlist : {
265         title: 'Numeruotas sąrašas',
266         text: 'Pradėti numeruotą sąrašą.',
267         cls: 'x-html-editor-tip'
268       },
269       createlink : {
270         title: 'Nuoroda',
271         text: 'Padaryti pažymėta tekstą nuoroda.',
272         cls: 'x-html-editor-tip'
273       },
274       sourceedit : {
275         title: 'Išeities tekstas',
276         text: 'Persijungti į išeities teksto koregavimo režimą.',
277         cls: 'x-html-editor-tip'
278       }
279     }
280   });
281 }
282
283 if(Ext.form.BasicForm){
284   Ext.form.BasicForm.prototype.waitTitle = "Palaukite...";
285 }
286   
287 if(Ext.grid.GridView){
288   Ext.apply(Ext.grid.GridView.prototype, {
289     sortAscText  : "RÅ«Å¡iuoti didÄ\97janÄ?ia tvarka",
290     sortDescText : "RÅ«Å¡iuoti mažÄ\97janÄ?ia tvarka",
291     lockText     : "Užfiksuoti stulpelį",
292     unlockText   : "Atlaisvinti stulpelį",
293     columnsText  : "Stulpeliai"
294   });
295 }
296
297 if(Ext.grid.GroupingView){
298   Ext.apply(Ext.grid.GroupingView.prototype, {
299     emptyGroupText : '(Nėra)',
300     groupByText    : 'Grupuoti pagal šį lauką',
301     showGroupsText : 'Rodyti grupėse'
302   });
303 }
304
305 if(Ext.grid.PropertyColumnModel){
306   Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
307     nameText   : "Pavadinimas",
308     valueText  : "Reikšmė",
309     dateFormat : "Y-m-d"
310   });
311 }
312
313 if(Ext.layout.BorderLayout && Ext.layout.BorderLayout.SplitRegion){
314   Ext.apply(Ext.layout.BorderLayout.SplitRegion.prototype, {
315     splitTip            : "Patraukite juostelę.",
316     collapsibleSplitTip : "Patraukite juostelę arba Paspauskite dvigubai kad paslėpti."
317   });
318 }
319
320 if(Ext.form.TimeField){
321   Ext.apply(Ext.form.TimeField.prototype, {
322     minText : "Laikas turi buti lygus arba vėlesnis už {0}",
323     maxText : "Laikas turi būti lygus arba ankstesnis už {0}",
324     invalidText : "{0} yra neteisingas laikas",
325     format : "H:i",
326     altFormats : "g:ia|g:iA|g:i a|g:i A|h:i|g:i|H:i|ga|ha|gA|h a|g a|g A|gi|hi|gia|hia|g|H"
327   });
328 }
329                         
330 if(Ext.form.CheckboxGroup){
331   Ext.apply(Ext.form.CheckboxGroup.prototype, {
332     blankText : "Jūs turite padaryti bent vieną pasirinkimą šioje grupėje"
333   });
334 }
335         
336 if(Ext.form.RadioGroup){
337   Ext.apply(Ext.form.RadioGroup.prototype, {
338       blankText : "Jūs turite padaryti bent vieną pasirinkimą šioje grupėje"
339   });
340 }
341 </pre>
342 </body>
343 </html>