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