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

ListView/ListBox

开发平台:

Java

  1. /**
  2.  * Translation by Lucian Lature 04-24-2007
  3.  * Romanian Translations
  4.  */
  5. Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">Încărcare...</div>';
  6. if(Ext.View){
  7.    Ext.View.prototype.emptyText = "";
  8. }
  9. if(Ext.grid.Grid){
  10.    Ext.grid.Grid.prototype.ddText = "{0} rând(uri) selectate";
  11. }
  12. if(Ext.TabPanelItem){
  13.    Ext.TabPanelItem.prototype.closeText = "Închide acest tab";
  14. }
  15. if(Ext.form.Field){
  16.    Ext.form.Field.prototype.invalidText = "Valoarea acestui câmp este invalidă";
  17. }
  18. if(Ext.LoadMask){
  19.     Ext.LoadMask.prototype.msg = "Încărcare...";
  20. }
  21. Date.monthNames = [
  22.    "Ianuarie",
  23.    "Februarie",
  24.    "Martie",
  25.    "Aprilie",
  26.    "Mai",
  27.    "Iunie",
  28.    "Iulie",
  29.    "August",
  30.    "Septembrie",
  31.    "Octombrie",
  32.    "Noiembrie",
  33.    "Decembrie"
  34. ];
  35. Date.dayNames = [
  36.    "Duminică",
  37.    "Luni",
  38.    "Marţi",
  39.    "Miercuri",
  40.    "Joi",
  41.    "Vineri",
  42.    "Sâmbătă"
  43. ];
  44. if(Ext.MessageBox){
  45.    Ext.MessageBox.buttonText = {
  46.       ok     : "OK",
  47.       cancel : "Renunţă",
  48.       yes    : "Da",
  49.       no     : "Nu"
  50.    };
  51. }
  52. if(Ext.util.Format){
  53.    Ext.util.Format.date = function(v, format){
  54.       if(!v) return "";
  55.       if(!(v instanceof Date)) v = new Date(Date.parse(v));
  56.       return v.dateFormat(format || "d-m-Y");
  57.    };
  58. }
  59. if(Ext.DatePicker){
  60.    Ext.apply(Ext.DatePicker.prototype, {
  61.       todayText         : "Astăzi",
  62.       minText           : "Această zi este înaintea datei de început",
  63.       maxText           : "Această zi este după ultimul termen",
  64.       disabledDaysText  : "",
  65.       disabledDatesText : "",
  66.       monthNames : Date.monthNames,
  67.       dayNames : Date.dayNames,
  68.       nextText          : 'Următoarea lună (Control+Right)',
  69.       prevText          : 'Luna anterioară (Control+Left)',
  70.       monthYearText     : 'Alege o lună (Control+Up/Down pentru a parcurge anii)',
  71.       todayTip          : "{0} (Spacebar)",
  72.       format            : "d-m-y"
  73.    });
  74. }
  75. if(Ext.PagingToolbar){
  76.    Ext.apply(Ext.PagingToolbar.prototype, {
  77.       beforePageText : "Pagina",
  78.       afterPageText  : "din {0}",
  79.       firstText      : "Prima pagină",
  80.       prevText       : "Pagina precedentă",
  81.       nextText       : "Următoarea pagină",
  82.       lastText       : "Ultima pagină",
  83.       refreshText    : "Reîmprospătare",
  84.       displayMsg     : "Afişează {0} - {1} din {2}",
  85.       emptyMsg       : 'Nu sunt date de afişat'
  86.    });
  87. }
  88. if(Ext.form.TextField){
  89.    Ext.apply(Ext.form.TextField.prototype, {
  90.       minLengthText : "Lungimea minimă pentru acest câmp este de {0}",
  91.       maxLengthText : "Lungimea maximă pentru acest câmp este {0}",
  92.       blankText     : "Acest câmp este obligatoriu",
  93.       regexText     : "",
  94.       emptyText     : null
  95.    });
  96. }
  97. if(Ext.form.NumberField){
  98.    Ext.apply(Ext.form.NumberField.prototype, {
  99.       minText : "Valoarea minimă permisă a acestui câmp este {0}",
  100.       maxText : "Valaorea maximă permisă a acestui câmp este {0}",
  101.       nanText : "{0} nu este un număr valid"
  102.    });
  103. }
  104. if(Ext.form.DateField){
  105.    Ext.apply(Ext.form.DateField.prototype, {
  106.       disabledDaysText  : "Inactiv",
  107.       disabledDatesText : "Inactiv",
  108.       minText           : "Data acestui câmp trebuie să fie după {0}",
  109.       maxText           : "Data acestui câmp trebuie sa fie înainte de {0}",
  110.       invalidText       : "{0} nu este o dată validă - trebuie să fie în formatul {1}",
  111.       format            : "d-m-y"
  112.    });
  113. }
  114. if(Ext.form.ComboBox){
  115.    Ext.apply(Ext.form.ComboBox.prototype, {
  116.       loadingText       : "Încărcare...",
  117.       valueNotFoundText : undefined
  118.    });
  119. }
  120. if(Ext.form.VTypes){
  121.    Ext.apply(Ext.form.VTypes, {
  122.       emailText    : 'Acest câmp trebuie să conţină o adresă de e-mail în formatul "user@domain.com"',
  123.       urlText      : 'Acest câmp trebuie să conţină o adresă URL în formatul "http:/'+'/www.domain.com"',
  124.       alphaText    : 'Acest câmp trebuie să conţină doar litere şi _',
  125.       alphanumText : 'Acest câmp trebuie să conţină doar litere, cifre şi _'
  126.    });
  127. }
  128. if(Ext.grid.GridView){
  129.    Ext.apply(Ext.grid.GridView.prototype, {
  130.       sortAscText  : "Sortare ascendentă",
  131.       sortDescText : "Sortare descendentă",
  132.       lockText     : "Blochează coloana",
  133.       unlockText   : "Deblochează coloana",
  134.       columnsText  : "Coloane"
  135.    });
  136. }
  137. if(Ext.grid.PropertyColumnModel){
  138.    Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
  139.       nameText   : "Nume",
  140.       valueText  : "Valoare",
  141.       dateFormat : "m/j/Y"
  142.    });
  143. }
  144. if(Ext.layout.BorderLayout.SplitRegion){
  145.    Ext.apply(Ext.layout.BorderLayout.SplitRegion.prototype, {
  146.       splitTip            : "Trage pentru redimensionare.",
  147.       collapsibleSplitTip : "Trage pentru redimensionare. Dublu-click pentru ascundere."
  148.    });
  149. }