3 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
\r
4 <title>The source code</title>
\r
5 <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />
\r
6 <script type="text/javascript" src="../resources/prettify/prettify.js"></script>
\r
8 <body onload="prettyPrint();">
\r
9 <pre class="prettyprint lang-js"><div id="prop-Ext.Direct.Transaction-indicatorText"></div>/**
10 * Romanian translations for ExtJS 2.1
11 * First released by Lucian Lature on 2007-04-24
12 * Changed locale for Romania (date formats) as suggested by keypoint
13 * on ExtJS forums: http://www.extjs.com/forum/showthread.php?p=129524#post129524
14 * Removed some useless parts
15 * Changed by: Emil Cazamir, 2008-04-24
16 * Fixed some errors left behind
17 * Changed by: Emil Cazamir, 2008-09-01
20 Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">Încărcare...</div>';
22 if(Ext.grid.GridPanel){
23 Ext.grid.GridPanel.prototype.ddText = "{0} rând(uri) selectate";
27 Ext.TabPanelItem.prototype.closeText = "Închide acest tab";
31 Ext.form.Field.prototype.invalidText = "Valoarea acestui câmp este invalidă";
35 Ext.LoadMask.prototype.msg = "Încărcare...";
53 Date.getShortMonthName = function(month) {
54 return Date.monthNames[month].substring(0, 3);
72 Date.getMonthNumber = function(name) {
73 return Date.monthNumbers[name.substring(0, 1).toUpperCase() + name.substring(1, 3).toLowerCase()];
86 Date.getShortDayName = function(day) {
87 return Date.dayNames[day].substring(0, 3);
91 Ext.MessageBox.buttonText = {
100 Ext.util.Format.date = function(v, format){
102 if(!(v instanceof Date)) v = new Date(Date.parse(v));
103 return v.dateFormat(format || "d.m.Y");
108 Ext.apply(Ext.DatePicker.prototype, {
109 todayText : "Astăzi",
110 minText : "Această dată este anterioară datei minime",
111 maxText : "Această dată este ulterioară datei maxime",
112 disabledDaysText : "",
113 disabledDatesText : "",
114 monthNames : Date.monthNames,
115 dayNames : Date.dayNames,
116 nextText : 'Luna următoare (Control+Dreapta)',
117 prevText : 'Luna precedentă (Control+Stânga)',
118 monthYearText : 'Alege o lună (Control+Sus/Jos pentru a parcurge anii)',
119 todayTip : "{0} (Bara spațiu)",
121 okText : " OK ",
122 cancelText : "Renunță",
127 if(Ext.PagingToolbar){
128 Ext.apply(Ext.PagingToolbar.prototype, {
129 beforePageText : "Pagina",
130 afterPageText : "din {0}",
131 firstText : "Prima pagină",
132 prevText : "Pagina anterioară",
133 nextText : "Pagina următoare",
134 lastText : "Ultima pagină",
135 refreshText : "Împrospătează",
136 displayMsg : "Afișare înregistrările {0} - {1} din {2}",
137 emptyMsg : 'Nu sunt date de afișat'
141 if(Ext.form.TextField){
142 Ext.apply(Ext.form.TextField.prototype, {
143 minLengthText : "Lungimea minimă pentru acest câmp este de {0}",
144 maxLengthText : "Lungimea maximă pentru acest câmp este {0}",
145 blankText : "Acest câmp este obligatoriu",
151 if(Ext.form.NumberField){
152 Ext.apply(Ext.form.NumberField.prototype, {
153 minText : "Valoarea minimă permisă a acestui câmp este {0}",
154 maxText : "Valaorea maximă permisă a acestui câmp este {0}",
155 nanText : "{0} nu este un număr valid"
159 if(Ext.form.DateField){
160 Ext.apply(Ext.form.DateField.prototype, {
161 disabledDaysText : "Indisponibil",
162 disabledDatesText : "Indisponibil",
163 minText : "Data din această casetă trebuie să fie după {0}",
164 maxText : "Data din această casetă trebuie să fie inainte de {0}",
165 invalidText : "{0} nu este o dată validă, trebuie să fie în formatul {1}",
167 altFormats : "d-m-Y|d.m.y|d-m-y|d.m|d-m|dm|d|Y-m-d"
171 if(Ext.form.ComboBox){
172 Ext.apply(Ext.form.ComboBox.prototype, {
173 loadingText : "Încărcare...",
174 valueNotFoundText : undefined
179 Ext.apply(Ext.form.VTypes, {
180 emailText : 'Acest câmp trebuie să conţină o adresă de e-mail în formatul "user@domeniu.com"',
181 urlText : 'Acest câmp trebuie să conţină o adresă URL în formatul "http:/'+'/www.domeniu.com"',
182 alphaText : 'Acest câmp trebuie să conţină doar litere şi _',
183 alphanumText : 'Acest câmp trebuie să conţină doar litere, cifre şi _'
187 if(Ext.form.HtmlEditor){
188 Ext.apply(Ext.form.HtmlEditor.prototype, {
189 createLinkText : 'Vă rugăm introduceti un URL pentru această legătură web:',
192 title: 'Îngroşat (Ctrl+B)',
193 text: 'Îngroşati caracterele textului selectat.',
194 cls: 'x-html-editor-tip'
197 title: 'Înclinat (Ctrl+I)',
198 text: 'Înclinaţi caracterele textului selectat.',
199 cls: 'x-html-editor-tip'
202 title: 'Subliniat (Ctrl+U)',
203 text: 'Subliniaţi caracterele textului selectat.',
204 cls: 'x-html-editor-tip'
208 text: 'Măreşte dimensiunea fontului.',
209 cls: 'x-html-editor-tip'
213 text: 'Micşorează dimensiunea textului.',
214 cls: 'x-html-editor-tip'
217 title: 'Culoarea fundalului',
218 text: 'Schimbă culoarea fundalului pentru textul selectat.',
219 cls: 'x-html-editor-tip'
222 title: 'Culoarea textului',
223 text: 'Schimbă culoarea textului selectat.',
224 cls: 'x-html-editor-tip'
227 title: 'Aliniat la stânga',
228 text: 'Aliniază textul la stânga.',
229 cls: 'x-html-editor-tip'
233 text: 'Centrează textul în editor.',
234 cls: 'x-html-editor-tip'
237 title: 'Aliniat la dreapta',
238 text: 'Aliniază textul la dreapta.',
239 cls: 'x-html-editor-tip'
241 insertunorderedlist : {
242 title: 'Listă cu puncte',
243 text: 'Inserează listă cu puncte.',
244 cls: 'x-html-editor-tip'
246 insertorderedlist : {
247 title: 'Listă numerotată',
248 text: 'Inserează o listă numerotată.',
249 cls: 'x-html-editor-tip'
252 title: 'Legătură web',
253 text: 'Transformă textul selectat în legătură web.',
254 cls: 'x-html-editor-tip'
257 title: 'Editare sursă',
258 text: 'Schimbă pe modul de editare al codului HTML.',
259 cls: 'x-html-editor-tip'
266 if(Ext.grid.GridView){
267 Ext.apply(Ext.grid.GridView.prototype, {
268 sortAscText : "Sortare ascendentă",
269 sortDescText : "Sortare descendentă",
270 lockText : "Blochează coloana",
271 unlockText : "Deblochează coloana",
272 columnsText : "Coloane"
276 if(Ext.grid.GroupingView){
277 Ext.apply(Ext.grid.GroupingView.prototype, {
278 emptyGroupText : '(Fără)',
279 groupByText : 'Grupează după această coloană',
280 showGroupsText : 'Afișează grupat'
284 if(Ext.grid.PropertyColumnModel){
285 Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
287 valueText : "Valoare",
292 if(Ext.layout.BorderLayout && Ext.layout.BorderLayout.SplitRegion){
293 Ext.apply(Ext.layout.BorderLayout.SplitRegion.prototype, {
294 splitTip : "Trage pentru redimensionare.",
295 collapsibleSplitTip : "Trage pentru redimensionare. Dublu-click pentru ascundere."