X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/c930e9176a5a85509c5b0230e2bff5c22a591432..7a654f8d43fdb43d78b63d90528bed6e86b608cc:/src/locale/ext-lang-lt.js
diff --git a/src/locale/ext-lang-lt.js b/src/locale/ext-lang-lt.js
deleted file mode 100644
index f34de0c4..00000000
--- a/src/locale/ext-lang-lt.js
+++ /dev/null
@@ -1,333 +0,0 @@
-/*!
- * Ext JS Library 3.0.0
- * Copyright(c) 2006-2009 Ext JS, LLC
- * licensing@extjs.com
- * http://www.extjs.com/license
- */
-/**
- * Lithuanian Translations (UTF-8)
- * Vladas Saulis (vladas at prodata dot lt), 03-29-2009
- * Vladas Saulis (vladas at prodata dot lt), 10-18-2007
- */
-
-Ext.UpdateManager.defaults.indicatorText = '
Kraunasi...
';
-
-if(Ext.View){
- Ext.View.prototype.emptyText = "";
-}
-
-if(Ext.DataView){
- Ext.DataView.prototype.emptyText = "";
-}
-if(Ext.grid.GridPanel){
- Ext.grid.GridPanel.prototype.ddText = "{0} pažymÄtų eiluÄių";
-}
-
-if(Ext.TabPanelItem){
- Ext.TabPanelItem.prototype.closeText = "Uždaryti Å¡iÄ
užsklandÄ
";
-}
-
-if(Ext.form.Field){
- Ext.form.Field.prototype.invalidText = "Å io lauko reikÅ¡mÄ neteisinga";
-}
-
-if(Ext.LoadMask){
- Ext.LoadMask.prototype.msg = "Kraunasi...";
-}
-
-Date.monthNames = [
- "Sausis",
- "Vasaris",
- "Kovas",
- "Balandis",
- "GegužÄ",
- "Birželis",
- "Liepa",
- "Rugpjūtis",
- "RugsÄjis",
- "Spalis",
- "Lapkritis",
- "Gruodis"
-];
-
-Date.getShortMonthName = function(month) {
- // Uncommons
- if (month == 7) return "Rgp";
- if (month == 8) return "Rgs";
- if (month == 11) return "Grd";
- return Date.monthNames[month].substring(0, 3);
-};
-
-Date.monthNumbers = {
- Sau : 0,
- Vas : 1,
- Kov : 2,
- Bal : 3,
- Geg : 4,
- Bir : 5,
- Lie : 6,
- Rgp : 7,
- Rgs : 8,
- Spa : 9,
- Lap : 10,
- Grd : 11
-};
-
-Date.getMonthNumber = function(name) {
-
- // Some uncommons
- if (name == "Rugpjūtis") return 7;
- if (name == "RugsÄjis") return 8;
- if (name == "Gruodis") return 11;
- return Date.monthNumbers[name.substring(0, 1).toUpperCase() + name.substring(1, 3).toLowerCase()];
-};
-
-Date.dayNames = [
- "Sekmadienis",
- "Pirmadienis",
- "Antradienis",
- "TreÄiadienis",
- "Ketvirtadienis",
- "Penktadienis",
- "Šeštadienis"
-];
-
-Date.parseCodes.S.s = "(?:as|as|as|as)";
-
-Date.getShortDayName = function(day) {
- return Date.dayNames[day].substring(0, 3);
-};
-
-if(Ext.MessageBox){
- Ext.MessageBox.buttonText = {
- ok : "Gerai",
- cancel : "Atsisakyti",
- yes : "Taip",
- no : "Ne"
- };
-}
-
-if(Ext.util.Format){
- Ext.util.Format.date = function(v, format){
- if(!v) return "";
- if(!(v instanceof Date)) v = new Date(Date.parse(v));
- return v.dateFormat(format || "Y-m-d");
- };
-}
-
-if(Ext.DatePicker){
- Ext.apply(Ext.DatePicker.prototype, {
- todayText : "Å iandien",
- minText : "Å i data yra mažesnÄ už leistinÄ
",
- maxText : "Å i data yra didesnÄ už leistinÄ
",
- disabledDaysText : "",
- disabledDatesText : "",
- monthNames : Date.monthNames,
- dayNames : Date.dayNames,
- nextText : 'Kitas mÄnuo (Control+Right)',
- prevText : 'Ankstesnis mÄnuo (Control+Left)',
- monthYearText : 'Pasirinkti mÄnesį (Control+Up/Down perÄjimui tarp metų)',
- todayTip : "{0} (Tarpas)",
- format : "y-m-d",
- okText : " Gerai ",
- cancelText : "Atsisaktyi",
- startDay : 1
- });
-}
-
-if(Ext.PagingToolbar){
- Ext.apply(Ext.PagingToolbar.prototype, {
- beforePageText : "Puslapis",
- afterPageText : "iš {0}",
- firstText : "Pirmas puslapis",
- prevText : "Ankstesnis pusl.",
- nextText : "Kitas puslapis",
- lastText : "Pakutinis pusl.",
- refreshText : "Atnaujinti",
- displayMsg : "Rodomi įrašai {0} - {1} iš {2}",
- emptyMsg : 'NÄra duomenų'
- });
-}
-
-if(Ext.form.TextField){
- Ext.apply(Ext.form.TextField.prototype, {
- minLengthText : "Minimalus Å¡io lauko ilgis yra {0}",
- maxLengthText : "Maksimalus Å¡io lauko ilgis yra {0}",
- blankText : "Å is laukas yra privalomas",
- regexText : "",
- emptyText : null
- });
-}
-
-if(Ext.form.NumberField){
- Ext.apply(Ext.form.NumberField.prototype, {
- minText : "Minimalus Å¡io lauko ilgis yra {0}",
- maxText : "Maksimalus Å¡io lauko ilgis yra {0}",
- nanText : "{0} yra neleistina reikÅ¡mÄ"
- });
-}
-
-if(Ext.form.DateField){
- Ext.apply(Ext.form.DateField.prototype, {
- disabledDaysText : "Neprieinama",
- disabledDatesText : "Neprieinama",
- minText : "Å iame lauke data turi bÅ«ti didesnÄ už {0}",
- maxText : "Å iame lauke data turi bÅ«ti mažesnÄÄ už {0}",
- invalidText : "{0} yra neteisinga data - ji turi būti įvesta formatu {1}",
- format : "y-m-d",
- altFormats : "y-m-d|y/m/d|Y-m-d|m/d|m-d|md|ymd|Ymd|d|Y-m-d"
- });
-}
-
-if(Ext.form.ComboBox){
- Ext.apply(Ext.form.ComboBox.prototype, {
- loadingText : "Kraunasi...",
- valueNotFoundText : undefined
- });
-}
-
-if(Ext.form.VTypes){
- Ext.apply(Ext.form.VTypes, {
- emailText : 'Šiame lauke turi būti el.pašto adresas formatu "user@example.com"',
- urlText : 'Šiame lauke turi būti nuoroda (URL) formatu "http:/'+'/www.example.com"',
- alphaText : 'Å iame lauke gali bÅ«ti tik raidÄs ir ženklas "_"',
- alphanumText : 'Å iame lauke gali bÅ«ti tik raidÄs, skaiÄiai ir ženklas "_"'
- });
-}
-
-if(Ext.form.HtmlEditor){
- Ext.apply(Ext.form.HtmlEditor.prototype, {
- createLinkText : 'Įveskite URL šiai nuorodai:',
- buttonTips : {
- bold : {
- title: 'Bold (Ctrl+B)',
- text: 'Teksto paryškinimas.',
- cls: 'x-html-editor-tip'
- },
- italic : {
- title: 'Italic (Ctrl+I)',
- text: 'Kursyvinis tekstas.',
- cls: 'x-html-editor-tip'
- },
- underline : {
- title: 'Underline (Ctrl+U)',
- text: 'Teksto pabraukimas.',
- cls: 'x-html-editor-tip'
- },
- increasefontsize : {
- title: 'Padidinti Å¡riftÄ
',
- text: 'Padidinti šrifto dydį.',
- cls: 'x-html-editor-tip'
- },
- decreasefontsize : {
- title: 'Sumažinti Å¡riftÄ
',
- text: 'Sumažinti šrifto dydį.',
- cls: 'x-html-editor-tip'
- },
- backcolor : {
- title: 'Nuspalvinti teksto fonÄ
',
- text: 'Pakeisti teksto fono spalvÄ
.',
- cls: 'x-html-editor-tip'
- },
- forecolor : {
- title: 'Teksto spalva',
- text: 'Pakeisti pažymÄto teksto spalvÄ
.',
- cls: 'x-html-editor-tip'
- },
- justifyleft : {
- title: 'IÅ¡lyginti kairen',
- text: 'IÅ¡lyginti tekstÄ
į kairÄ.',
- cls: 'x-html-editor-tip'
- },
- justifycenter : {
- title: 'Centruoti tekstÄ
',
- text: 'Centruoti tektÄ
redaktoriaus lange.',
- cls: 'x-html-editor-tip'
- },
- justifyright : {
- title: 'IÅ¡lyginti deÅ¡inÄn',
- text: 'IÅ¡lyginti tekstÄ
į deÅ¡inÄ.',
- cls: 'x-html-editor-tip'
- },
- insertunorderedlist : {
- title: 'Paprastas sÄ
rašas',
- text: 'PradÄti neorganizuotÄ
sÄ
raÅ¡Ä
.',
- cls: 'x-html-editor-tip'
- },
- insertorderedlist : {
- title: 'Numeruotas sÄ
rašas',
- text: 'PradÄti numeruotÄ
sÄ
raÅ¡Ä
.',
- cls: 'x-html-editor-tip'
- },
- createlink : {
- title: 'Nuoroda',
- text: 'Padaryti pažymÄta tekstÄ
nuoroda.',
- cls: 'x-html-editor-tip'
- },
- sourceedit : {
- title: 'IÅ¡eities tekstas',
- text: 'Persijungti į iÅ¡eities teksto koregavimo režimÄ
.',
- cls: 'x-html-editor-tip'
- }
- }
- });
-}
-
-if(Ext.form.BasicForm){
- Ext.form.BasicForm.prototype.waitTitle = "Palaukite...";
-}
-
-if(Ext.grid.GridView){
- Ext.apply(Ext.grid.GridView.prototype, {
- sortAscText : "RÅ«Å¡iuoti didÄjanÄia tvarka",
- sortDescText : "RÅ«Å¡iuoti mažÄjanÄia tvarka",
- lockText : "Užfiksuoti stulpelį",
- unlockText : "Atlaisvinti stulpelį",
- columnsText : "Stulpeliai"
- });
-}
-
-if(Ext.grid.GroupingView){
- Ext.apply(Ext.grid.GroupingView.prototype, {
- emptyGroupText : '(NÄra)',
- groupByText : 'Grupuoti pagal šį laukÄ
',
- showGroupsText : 'Rodyti grupÄse'
- });
-}
-
-if(Ext.grid.PropertyColumnModel){
- Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
- nameText : "Pavadinimas",
- valueText : "ReikÅ¡mÄ",
- dateFormat : "Y-m-d"
- });
-}
-
-if(Ext.layout.BorderLayout && Ext.layout.BorderLayout.SplitRegion){
- Ext.apply(Ext.layout.BorderLayout.SplitRegion.prototype, {
- splitTip : "Patraukite juostelÄ.",
- collapsibleSplitTip : "Patraukite juostelÄ arba Paspauskite dvigubai kad paslÄpti."
- });
-}
-
-if(Ext.form.TimeField){
- Ext.apply(Ext.form.TimeField.prototype, {
- minText : "Laikas turi buti lygus arba vÄlesnis už {0}",
- maxText : "Laikas turi būti lygus arba ankstesnis už {0}",
- invalidText : "{0} yra neteisingas laikas",
- format : "H:i",
- 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"
- });
-}
-
-if(Ext.form.CheckboxGroup){
- Ext.apply(Ext.form.CheckboxGroup.prototype, {
- blankText : "JÅ«s turite padaryti bent vienÄ
pasirinkimÄ
Å¡ioje grupÄje"
- });
-}
-
-if(Ext.form.RadioGroup){
- Ext.apply(Ext.form.RadioGroup.prototype, {
- blankText : "JÅ«s turite padaryti bent vienÄ
pasirinkimÄ
Å¡ioje grupÄje"
- });
-}