ext-lang-ro.js
上传用户:dawnssy
上传日期:2022-08-06
资源大小:9345k
文件大小:8k
源码类别:

JavaScript

开发平台:

JavaScript

  1. /*!
  2.  * Ext JS Library 3.1.0
  3.  * Copyright(c) 2006-2009 Ext JS, LLC
  4.  * licensing@extjs.com
  5.  * http://www.extjs.com/license
  6.  */
  7. /**
  8.  * Romanian translations for ExtJS 2.1
  9.  * First released by Lucian Lature on 2007-04-24
  10.  * Changed locale for Romania (date formats) as suggested by keypoint
  11.  * on ExtJS forums: http://www.extjs.com/forum/showthread.php?p=129524#post129524
  12.  * Removed some useless parts
  13.  * Changed by: Emil Cazamir, 2008-04-24
  14.  * Fixed some errors left behind
  15.  * Changed by: Emil Cazamir, 2008-09-01
  16.  */
  17. Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">Încărcare...</div>';
  18. if(Ext.grid.GridPanel){
  19.    Ext.grid.GridPanel.prototype.ddText = "{0} rând(uri) selectate";
  20. }
  21. if(Ext.TabPanelItem){
  22.    Ext.TabPanelItem.prototype.closeText = "Închide acest tab";
  23. }
  24. if(Ext.form.Field){
  25.    Ext.form.Field.prototype.invalidText = "Valoarea acestui câmp este invalidă";
  26. }
  27. if(Ext.LoadMask){
  28.     Ext.LoadMask.prototype.msg = "Încărcare...";
  29. }
  30. Date.monthNames = [
  31.    "Ianuarie",
  32.    "Februarie",
  33.    "Martie",
  34.    "Aprilie",
  35.    "Mai",
  36.    "Iunie",
  37.    "Iulie",
  38.    "August",
  39.    "Septembrie",
  40.    "Octombrie",
  41.    "Noiembrie",
  42.    "Decembrie"
  43. ];
  44. Date.getShortMonthName = function(month) {
  45.   return Date.monthNames[month].substring(0, 3);
  46. };
  47. Date.monthNumbers = {
  48.   Ian : 0,
  49.   Feb : 1,
  50.   Mar : 2,
  51.   Apr : 3,
  52.   Mai : 4,
  53.   Iun : 5,
  54.   Iul : 6,
  55.   Aug : 7,
  56.   Sep : 8,
  57.   Oct : 9,
  58.   Noi : 10,
  59.   Dec : 11
  60. };
  61. Date.getMonthNumber = function(name) {
  62.   return Date.monthNumbers[name.substring(0, 1).toUpperCase() + name.substring(1, 3).toLowerCase()];
  63. };
  64. Date.dayNames = [
  65.    "Duminică",
  66.    "Luni",
  67.    "Marţi",
  68.    "Miercuri",
  69.    "Joi",
  70.    "Vineri",
  71.    "Sâmbătă"
  72. ];
  73. Date.getShortDayName = function(day) {
  74.   return Date.dayNames[day].substring(0, 3);
  75. };
  76. if(Ext.MessageBox){
  77.    Ext.MessageBox.buttonText = {
  78.       ok     : "OK",
  79.       cancel : "Renunţă",
  80.       yes    : "Da",
  81.       no     : "Nu"
  82.    };
  83. }
  84. if(Ext.util.Format){
  85.    Ext.util.Format.date = function(v, format){
  86.       if(!v) return "";
  87.       if(!(v instanceof Date)) v = new Date(Date.parse(v));
  88.       return v.dateFormat(format || "d.m.Y");
  89.    };
  90. }
  91. if(Ext.DatePicker){
  92.   Ext.apply(Ext.DatePicker.prototype, {
  93.     todayText         : "Astăzi",
  94.     minText           : "Această dată este anterioară datei minime",
  95.     maxText           : "Această dată este ulterioară datei maxime",
  96.     disabledDaysText  : "",
  97.     disabledDatesText : "",
  98.     monthNames        : Date.monthNames,
  99.     dayNames          : Date.dayNames,
  100.     nextText          : 'Luna următoare (Control+Dreapta)',
  101.     prevText          : 'Luna precedentă (Control+Stânga)',
  102.     monthYearText     : 'Alege o lună (Control+Sus/Jos pentru a parcurge anii)',
  103.     todayTip          : "{0} (Bara spațiu)",
  104.     format            : "d.m.Y",
  105.     okText            : "&#160;OK&#160;",
  106.     cancelText        : "Renunță",
  107.     startDay          : 0
  108.   });
  109. }
  110. if(Ext.PagingToolbar){
  111.   Ext.apply(Ext.PagingToolbar.prototype, {
  112.     beforePageText : "Pagina",
  113.     afterPageText  : "din {0}",
  114.     firstText      : "Prima pagină",
  115.     prevText       : "Pagina anterioară",
  116.     nextText       : "Pagina următoare",
  117.     lastText       : "Ultima pagină",
  118.     refreshText    : "Împrospătează",
  119.     displayMsg     : "Afișare înregistrările {0} - {1} din {2}",
  120.     emptyMsg       : 'Nu sunt date de afișat'
  121.   });
  122. }
  123. if(Ext.form.TextField){
  124.    Ext.apply(Ext.form.TextField.prototype, {
  125.       minLengthText : "Lungimea minimă pentru acest câmp este de {0}",
  126.       maxLengthText : "Lungimea maximă pentru acest câmp este {0}",
  127.       blankText     : "Acest câmp este obligatoriu",
  128.       regexText     : "",
  129.       emptyText     : null
  130.    });
  131. }
  132. if(Ext.form.NumberField){
  133.    Ext.apply(Ext.form.NumberField.prototype, {
  134.       minText : "Valoarea minimă permisă a acestui câmp este {0}",
  135.       maxText : "Valaorea maximă permisă a acestui câmp este {0}",
  136.       nanText : "{0} nu este un număr valid"
  137.    });
  138. }
  139. if(Ext.form.DateField){
  140.   Ext.apply(Ext.form.DateField.prototype, {
  141.     disabledDaysText  : "Indisponibil",
  142.     disabledDatesText : "Indisponibil",
  143.     minText           : "Data din această casetă trebuie să fie după {0}",
  144.     maxText           : "Data din această casetă trebuie să fie inainte de {0}",
  145.     invalidText       : "{0} nu este o dată validă, trebuie să fie în formatul {1}",
  146.     format            : "d.m.Y",
  147.     altFormats        : "d-m-Y|d.m.y|d-m-y|d.m|d-m|dm|d|Y-m-d"
  148.   });
  149. }
  150. if(Ext.form.ComboBox){
  151.   Ext.apply(Ext.form.ComboBox.prototype, {
  152.     loadingText       : "Încărcare...",
  153.     valueNotFoundText : undefined
  154.   });
  155. }
  156. if(Ext.form.VTypes){
  157.    Ext.apply(Ext.form.VTypes, {
  158.       emailText    : 'Acest câmp trebuie să conţină o adresă de e-mail în formatul "user@domeniu.com"',
  159.       urlText      : 'Acest câmp trebuie să conţină o adresă URL în formatul "http:/'+'/www.domeniu.com"',
  160.       alphaText    : 'Acest câmp trebuie să conţină doar litere şi _',
  161.       alphanumText : 'Acest câmp trebuie să conţină doar litere, cifre şi _'
  162.    });
  163. }
  164. if(Ext.form.HtmlEditor){
  165.   Ext.apply(Ext.form.HtmlEditor.prototype, {
  166.     createLinkText : 'Vă rugăm introduceti un URL pentru această legătură web:',
  167.     buttonTips : {
  168.       bold : {
  169.         title: 'Îngroşat (Ctrl+B)',
  170.         text: 'Îngroşati caracterele textului selectat.',
  171.         cls: 'x-html-editor-tip'
  172.       },
  173.       italic : {
  174.         title: 'Înclinat (Ctrl+I)',
  175.         text: 'Înclinaţi caracterele textului selectat.',
  176.         cls: 'x-html-editor-tip'
  177.       },
  178.       underline : {
  179.         title: 'Subliniat (Ctrl+U)',
  180.         text: 'Subliniaţi caracterele textului selectat.',
  181.         cls: 'x-html-editor-tip'
  182.       },
  183.       increasefontsize : {
  184.         title: 'Mărit',
  185.         text: 'Măreşte dimensiunea fontului.',
  186.         cls: 'x-html-editor-tip'
  187.       },
  188.       decreasefontsize : {
  189.         title: 'Micşorat',
  190.         text: 'Micşorează dimensiunea textului.',
  191.         cls: 'x-html-editor-tip'
  192.       },
  193.       backcolor : {
  194.         title: 'Culoarea fundalului',
  195.         text: 'Schimbă culoarea fundalului pentru textul selectat.',
  196.         cls: 'x-html-editor-tip'
  197.       },
  198.       forecolor : {
  199.         title: 'Culoarea textului',
  200.         text: 'Schimbă culoarea textului selectat.',
  201.         cls: 'x-html-editor-tip'
  202.       },
  203.       justifyleft : {
  204.         title: 'Aliniat la stânga',
  205.         text: 'Aliniază textul la stânga.',
  206.         cls: 'x-html-editor-tip'
  207.       },
  208.       justifycenter : {
  209.         title: 'Centrat',
  210.         text: 'Centrează textul în editor.',
  211.         cls: 'x-html-editor-tip'
  212.       },
  213.       justifyright : {
  214.         title: 'Aliniat la dreapta',
  215.         text: 'Aliniază textul la dreapta.',
  216.         cls: 'x-html-editor-tip'
  217.       },
  218.       insertunorderedlist : {
  219.         title: 'Listă cu puncte',
  220.         text: 'Inserează listă cu puncte.',
  221.         cls: 'x-html-editor-tip'
  222.       },
  223.       insertorderedlist : {
  224.         title: 'Listă numerotată',
  225.         text: 'Inserează o listă numerotată.',
  226.         cls: 'x-html-editor-tip'
  227.       },
  228.       createlink : {
  229.         title: 'Legătură web',
  230.         text: 'Transformă textul selectat în legătură web.',
  231.         cls: 'x-html-editor-tip'
  232.       },
  233.       sourceedit : {
  234.         title: 'Editare sursă',
  235.         text: 'Schimbă pe modul de editare al codului HTML.',
  236.         cls: 'x-html-editor-tip'
  237.       }
  238.     }
  239.   });
  240. }
  241. if(Ext.grid.GridView){
  242.    Ext.apply(Ext.grid.GridView.prototype, {
  243.       sortAscText  : "Sortare ascendentă",
  244.       sortDescText : "Sortare descendentă",
  245.       lockText     : "Blochează coloana",
  246.       unlockText   : "Deblochează coloana",
  247.       columnsText  : "Coloane"
  248.    });
  249. }
  250. if(Ext.grid.GroupingView){
  251.   Ext.apply(Ext.grid.GroupingView.prototype, {
  252.     emptyGroupText : '(Fără)',
  253.     groupByText    : 'Grupează după această coloană',
  254.     showGroupsText : 'Afișează grupat'
  255.   });
  256. }
  257. if(Ext.grid.PropertyColumnModel){
  258.   Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
  259.     nameText   : "Nume",
  260.     valueText  : "Valoare",
  261.     dateFormat : "d.m.Y"
  262.   });
  263. }
  264. if(Ext.layout.BorderLayout && Ext.layout.BorderLayout.SplitRegion){
  265.    Ext.apply(Ext.layout.BorderLayout.SplitRegion.prototype, {
  266.       splitTip            : "Trage pentru redimensionare.",
  267.       collapsibleSplitTip : "Trage pentru redimensionare. Dublu-click pentru ascundere."
  268.    });
  269. }