Upgrade to ExtJS 4.0.7 - Released 10/19/2011
[extjs.git] / locale / ext-lang-hu.js
1 /*
2
3 This file is part of Ext JS 4
4
5 Copyright (c) 2011 Sencha Inc
6
7 Contact:  http://www.sencha.com/contact
8
9 GNU General Public License Usage
10 This file may be used under the terms of the GNU General Public License version 3.0 as published by the Free Software Foundation and appearing in the file LICENSE included in the packaging of this file.  Please review the following information to ensure the GNU General Public License version 3.0 requirements will be met: http://www.gnu.org/copyleft/gpl.html.
11
12 If you are unsure which license is appropriate for your use, please contact the sales department at http://www.sencha.com/contact.
13
14 */
15 /**
16  * List compiled by mystix on the extjs.com forums.
17  * Thank you Mystix!
18  *
19  * Hungarian Translations (utf-8 encoded)
20  * by Amon <amon@theba.hu> (27 Apr 2008)
21  * encoding fixed by Vili (17 Feb 2009)
22  */
23 Ext.onReady(function() {
24     if(Ext.Updater) {
25         Ext.Updater.defaults.indicatorText = '<div class="loading-indicator">Betöltés...</div>';
26     }
27
28     if(Ext.view.View){
29       Ext.view.View.prototype.emptyText = "";
30     }
31
32     if(Ext.grid.Panel){
33       Ext.grid.Panel.prototype.ddText = "{0} kiválasztott sor";
34     }
35
36     if(Ext.TabPanelItem){
37       Ext.TabPanelItem.prototype.closeText = "Fül bezárása";
38     }
39
40     if(Ext.form.field.Base){
41       Ext.form.field.Base.prototype.invalidText = "Hibás érték!";
42     }
43
44     if(Ext.LoadMask){
45       Ext.LoadMask.prototype.msg = "Betöltés...";
46     }
47
48     if (Ext.Date) {
49         Ext.Date.monthNames = [
50           "Január",
51           "Február",
52           "Március",
53           "Április",
54           "Május",
55           "Június",
56           "Július",
57           "Augusztus",
58           "Szeptember",
59           "Október",
60           "November",
61           "December"
62         ];
63
64         Ext.Date.getShortMonthName = function(month) {
65           return Ext.Date.monthNames[month].substring(0, 3);
66         };
67
68         Ext.Date.monthNumbers = {
69           'Jan' : 0,
70           'Feb' : 1,
71           'Már' : 2,
72           'Ápr' : 3,
73           'Máj' : 4,
74           'Jún' : 5,
75           'Júl' : 6,
76           'Aug' : 7,
77           'Sze' : 8,
78           'Okt' : 9,
79           'Nov' : 10,
80           'Dec' : 11
81         };
82
83         Ext.Date.getMonthNumber = function(name) {
84           return Ext.Date.monthNumbers[name.substring(0, 1).toUpperCase() + name.substring(1, 3).toLowerCase()];
85         };
86
87         Ext.Date.dayNames = [
88           "Vasárnap",
89           "Hétfő",
90           "Kedd",
91           "Szerda",
92           "Csütörtök",
93           "Péntek",
94           "Szombat"
95         ];
96
97         Ext.Date.getShortDayName = function(day) {
98           return Ext.Date.dayNames[day].substring(0, 3);
99         };
100     }
101     
102     if(Ext.MessageBox){
103       Ext.MessageBox.buttonText = {
104         ok     : "OK",
105         cancel : "Mégsem",
106         yes    : "Igen",
107         no     : "Nem"
108       };
109     }
110
111     if(Ext.util.Format){
112         Ext.apply(Ext.util.Format, {
113             thousandSeparator: '.',
114             decimalSeparator: ',',
115             currencySign: 'Ft',  // Hungarian Forint
116             dateFormat: 'Y m d'
117         });
118     }
119
120     if(Ext.picker.Date){
121       Ext.apply(Ext.picker.Date.prototype, {
122         todayText         : "Mai nap",
123         minText           : "A dátum korábbi a megengedettnél",
124         maxText           : "A dátum későbbi a megengedettnél",
125         disabledDaysText  : "",
126         disabledDatesText : "",
127         monthNames        : Ext.Date.monthNames,
128         dayNames          : Ext.Date.dayNames,
129         nextText          : 'Köv. hónap (CTRL+Jobbra)',
130         prevText          : 'Előző hónap (CTRL+Balra)',
131         monthYearText     : 'Válassz hónapot (Évválasztás: CTRL+Fel/Le)',
132         todayTip          : "{0} (Szóköz)",
133         format            : "y-m-d",
134         startDay          : 0
135       });
136     }
137
138     if(Ext.picker.Month) {
139       Ext.apply(Ext.picker.Month.prototype, {
140           okText            : "&#160;OK&#160;",
141           cancelText        : "Mégsem"
142       });
143     }
144
145     if(Ext.toolbar.Paging){
146       Ext.apply(Ext.PagingToolbar.prototype, {
147         beforePageText : "Oldal",
148         afterPageText  : "a {0}-ból/ből",
149         firstText      : "Első oldal",
150         prevText       : "Előző oldal",
151         nextText       : "Következő oldal",
152         lastText       : "Utolsó oldal",
153         refreshText    : "Frissítés",
154         displayMsg     : "{0} - {1} sorok láthatók a {2}-ból/ből",
155         emptyMsg       : 'Nincs megjeleníthető adat'
156       });
157     }
158
159     if(Ext.form.field.Text){
160       Ext.apply(Ext.form.field.Text.prototype, {
161         minLengthText : "A mező tartalma legalább {0} hosszú kell legyen",
162         maxLengthText : "A mező tartalma legfeljebb {0} hosszú lehet",
163         blankText     : "Kötelezően kitöltendő mező",
164         regexText     : "",
165         emptyText     : null
166       });
167     }
168
169     if(Ext.form.field.Number){
170       Ext.apply(Ext.form.field.Number.prototype, {
171         minText : "A mező tartalma nem lehet kissebb, mint {0}",
172         maxText : "A mező tartalma nem lehet nagyobb, mint {0}",
173         nanText : "{0} nem szám"
174       });
175     }
176
177     if(Ext.form.field.Date){
178       Ext.apply(Ext.form.field.Date.prototype, {
179         disabledDaysText  : "Nem választható",
180         disabledDatesText : "Nem választható",
181         minText           : "A dátum nem lehet korábbi, mint {0}",
182         maxText           : "A dátum nem lehet későbbi, mint {0}",
183         invalidText       : "{0} nem megfelelő dátum - a helyes formátum: {1}",
184         format            : "Y m d",
185         altFormats        : "Y-m-d|y-m-d|y/m/d|m/d|m-d|md|ymd|Ymd|d"
186       });
187     }
188
189     if(Ext.form.field.ComboBox){
190       Ext.apply(Ext.form.field.ComboBox.prototype, {
191         valueNotFoundText : undefined
192       });
193         Ext.apply(Ext.form.field.ComboBox.prototype.defaultListConfig, {
194             loadingText       : "Betöltés..."
195         });
196     }
197
198     if(Ext.form.field.VTypes){
199       Ext.apply(Ext.form.field.VTypes, {
200         emailText    : 'A mező email címet tartalmazhat, melynek formátuma "felhasználó@szolgáltató.hu"',
201         urlText      : 'A mező webcímet tartalmazhat, melynek formátuma "http:/'+'/www.weboldal.hu"',
202         alphaText    : 'A mező csak betűket és aláhúzást (_) tartalmazhat',
203         alphanumText : 'A mező csak betűket, számokat és aláhúzást (_) tartalmazhat'
204       });
205     }
206
207     if(Ext.form.field.HtmlEditor){
208       Ext.apply(Ext.form.field.HtmlEditor.prototype, {
209         createLinkText : 'Add meg a webcímet:',
210         buttonTips : {
211           bold : {
212             title: 'Félkövér (Ctrl+B)',
213             text: 'Félkövérré teszi a kijelölt szöveget.',
214             cls: Ext.baseCSSPrefix + 'html-editor-tip'
215           },
216           italic : {
217             title: 'Dőlt (Ctrl+I)',
218             text: 'Dőlté teszi a kijelölt szöveget.',
219             cls: Ext.baseCSSPrefix + 'html-editor-tip'
220           },
221           underline : {
222             title: 'Aláhúzás (Ctrl+U)',
223             text: 'Aláhúzza a kijelölt szöveget.',
224             cls: Ext.baseCSSPrefix + 'html-editor-tip'
225           },
226           increasefontsize : {
227             title: 'Szöveg nagyítás',
228             text: 'Növeli a szövegméretet.',
229             cls: Ext.baseCSSPrefix + 'html-editor-tip'
230           },
231           decreasefontsize : {
232             title: 'Szöveg kicsinyítés',
233             text: 'Csökkenti a szövegméretet.',
234             cls: Ext.baseCSSPrefix + 'html-editor-tip'
235           },
236           backcolor : {
237             title: 'Háttérszín',
238             text: 'A kijelölt szöveg háttérszínét módosítja.',
239             cls: Ext.baseCSSPrefix + 'html-editor-tip'
240           },
241           forecolor : {
242             title: 'Szövegszín',
243             text: 'A kijelölt szöveg színét módosítja.',
244             cls: Ext.baseCSSPrefix + 'html-editor-tip'
245           },
246           justifyleft : {
247             title: 'Balra zárt',
248             text: 'Balra zárja a szöveget.',
249             cls: Ext.baseCSSPrefix + 'html-editor-tip'
250           },
251           justifycenter : {
252             title: 'Középre zárt',
253             text: 'Középre zárja a szöveget.',
254             cls: Ext.baseCSSPrefix + 'html-editor-tip'
255           },
256           justifyright : {
257             title: 'Jobbra zárt',
258             text: 'Jobbra zárja a szöveget.',
259             cls: Ext.baseCSSPrefix + 'html-editor-tip'
260           },
261           insertunorderedlist : {
262             title: 'Felsorolás',
263             text: 'Felsorolást kezd.',
264             cls: Ext.baseCSSPrefix + 'html-editor-tip'
265           },
266           insertorderedlist : {
267             title: 'Számozás',
268             text: 'Számozott listát kezd.',
269             cls: Ext.baseCSSPrefix + 'html-editor-tip'
270           },
271           createlink : {
272             title: 'Hiperlink',
273             text: 'A kijelölt szöveget linkké teszi.',
274             cls: Ext.baseCSSPrefix + 'html-editor-tip'
275           },
276           sourceedit : {
277             title: 'Forrás nézet',
278             text: 'Forrás nézetbe kapcsol.',
279             cls: Ext.baseCSSPrefix + 'html-editor-tip'
280           }
281         }
282       });
283     }
284
285     if(Ext.grid.header.Container){
286       Ext.apply(Ext.grid.header.Container.prototype, {
287         sortAscText  : "Növekvő rendezés",
288         sortDescText : "Csökkenő rendezés",
289         lockText     : "Oszlop zárolás",
290         unlockText   : "Oszlop feloldás",
291         columnsText  : "Oszlopok"
292       });
293     }
294
295     if(Ext.grid.GroupingFeature){
296       Ext.apply(Ext.grid.GroupingFeature.prototype, {
297         emptyGroupText : '(Nincs)',
298         groupByText    : 'Oszlop szerint csoportosítás',
299         showGroupsText : 'Csoportos nézet'
300       });
301     }
302
303     if(Ext.grid.PropertyColumnModel){
304       Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
305         nameText   : "Név",
306         valueText  : "Érték",
307         dateFormat : "Y m j"
308       });
309     }
310
311     if(Ext.layout.BorderLayout && Ext.layout.BorderLayout.SplitRegion){
312       Ext.apply(Ext.layout.BorderLayout.SplitRegion.prototype, {
313         splitTip            : "Átméretezés húzásra.",
314         collapsibleSplitTip : "Átméretezés húzásra. Eltüntetés duplaklikk."
315       });
316     }
317 });