ext-lang-lt.js
上传用户:qfccsy
上传日期:2022-03-27
资源大小:716k
文件大小:8k
源码类别:

ListView/ListBox

开发平台:

Java

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