]> git.proxmox.com Git - extjs.git/blob - extjs/build/classic/locale/locale-pl-debug.js
add extjs 6.0.1 sources
[extjs.git] / extjs / build / classic / locale / locale-pl-debug.js
1 /**
2 * Polish Translations
3 * By vbert 17-April-2007
4 * Updated by mmar 16-November-2007
5 * Encoding: utf-8
6 */
7 Ext.onReady(function() {
8
9 if (Ext.Date) {
10 Ext.Date.monthNames = ["Styczeń", "Luty", "Marzec", "Kwiecień", "Maj", "Czerwiec", "Lipiec", "Sierpień", "Wrzesień", "Październik", "Listopad", "Grudzień"];
11
12 Ext.Date.getShortMonthName = function(month) {
13 return Ext.Date.monthNames[month].substring(0, 3);
14 };
15
16 Ext.Date.monthNumbers = {
17 Sty: 0,
18 Lut: 1,
19 Mar: 2,
20 Kwi: 3,
21 Maj: 4,
22 Cze: 5,
23 Lip: 6,
24 Sie: 7,
25 Wrz: 8,
26 Paź: 9,
27 Lis: 10,
28 Gru: 11
29 };
30
31 Ext.Date.getMonthNumber = function(name) {
32 return Ext.Date.monthNumbers[name.substring(0, 1).toUpperCase() + name.substring(1, 3).toLowerCase()];
33 };
34
35 Ext.Date.dayNames = ["Niedziela", "Poniedziałek", "Wtorek", "Środa", "Czwartek", "Piątek", "Sobota"];
36
37 Ext.Date.getShortDayName = function(day) {
38 switch (day) {
39 case 0:
40 return 'ndz';
41 case 1:
42 return 'pon';
43 case 2:
44 return 'wt';
45 case 3:
46 return 'śr';
47 case 4:
48 return 'czw';
49 case 5:
50 return 'pt';
51 case 6:
52 return 'sob';
53 default:
54 return '';
55 }
56 };
57 }
58
59 if (Ext.util && Ext.util.Format) {
60 Ext.apply(Ext.util.Format, {
61 thousandSeparator: '.',
62 decimalSeparator: ',',
63 currencySign: '\u007a\u0142',
64 // Polish Zloty
65 dateFormat: 'Y-m-d'
66 });
67 }
68 });
69
70 Ext.define("Ext.locale.pl.view.View", {
71 override: "Ext.view.View",
72 emptyText: ""
73 });
74
75 Ext.define("Ext.locale.pl.grid.plugin.DragDrop", {
76 override: "Ext.grid.plugin.DragDrop",
77 dragText: "{0} wybrano wiersze(y)"
78 });
79
80 Ext.define("Ext.locale.pl.tab.Tab", {
81 override: "Ext.tab.Tab",
82 closeText: "Zamknij zakładkę"
83 });
84
85 Ext.define("Ext.locale.pl.form.field.Base", {
86 override: "Ext.form.field.Base",
87 invalidText: "Wartość tego pola jest niewłaściwa"
88 });
89
90 // changing the msg text below will affect the LoadMask
91 Ext.define("Ext.locale.pl.view.AbstractView", {
92 override: "Ext.view.AbstractView",
93 loadingText: "Wczytywanie danych..."
94 });
95
96 Ext.define("Ext.locale.pl.picker.Date", {
97 override: "Ext.picker.Date",
98 startDay: 1,
99 todayText: "Dzisiaj",
100 minText: "Data jest wcześniejsza od daty minimalnej",
101 maxText: "Data jest późniejsza od daty maksymalnej",
102 disabledDaysText: "",
103 disabledDatesText: "",
104 nextText: "Następny miesiąc (Control+StrzałkaWPrawo)",
105 prevText: "Poprzedni miesiąc (Control+StrzałkaWLewo)",
106 monthYearText: "Wybierz miesiąc (Control+Up/Down aby zmienić rok)",
107 todayTip: "{0} (Spacja)",
108 format: "Y-m-d",
109 startDay: 1
110 });
111
112 Ext.define("Ext.locale.pl.picker.Month", {
113 override: "Ext.picker.Month",
114 okText: " OK ",
115 cancelText: "Anuluj"
116 });
117
118 Ext.define("Ext.locale.pl.toolbar.Paging", {
119 override: "Ext.PagingToolbar",
120 beforePageText: "Strona",
121 afterPageText: "z {0}",
122 firstText: "Pierwsza strona",
123 prevText: "Poprzednia strona",
124 nextText: "Następna strona",
125 lastText: "Ostatnia strona",
126 refreshText: "Odśwież",
127 displayMsg: "Wyświetlono {0} - {1} z {2}",
128 emptyMsg: "Brak danych do wyświetlenia"
129 });
130
131 Ext.define("Ext.locale.pl.form.field.Text", {
132 override: "Ext.form.field.Text",
133 minLengthText: "Minimalna ilość znaków dla tego pola to {0}",
134 maxLengthText: "Maksymalna ilość znaków dla tego pola to {0}",
135 blankText: "To pole jest wymagane",
136 regexText: "",
137 emptyText: null
138 });
139
140 Ext.define("Ext.locale.pl.form.field.Number", {
141 override: "Ext.form.field.Number",
142 minText: "Minimalna wartość dla tego pola to {0}",
143 maxText: "Maksymalna wartość dla tego pola to {0}",
144 nanText: "{0} to nie jest właściwa wartość"
145 });
146
147 Ext.define("Ext.locale.pl.form.field.Date", {
148 override: "Ext.form.field.Date",
149 disabledDaysText: "Wyłączony",
150 disabledDatesText: "Wyłączony",
151 minText: "Data w tym polu musi być późniejsza od {0}",
152 maxText: "Data w tym polu musi być wcześniejsza od {0}",
153 invalidText: "{0} to nie jest prawidłowa data - prawidłowy format daty {1}",
154 format: "Y-m-d",
155 altFormats: "m/d/Y|m-d-y|m-d-Y|m/d|m-d|md|mdy|mdY|d|Y-m-d"
156 });
157
158 Ext.define("Ext.locale.pl.form.field.ComboBox", {
159 override: "Ext.form.field.ComboBox",
160 valueNotFoundText: undefined
161 }, function() {
162 Ext.apply(Ext.form.field.ComboBox.prototype.defaultListConfig, {
163 loadingText: "Wczytuję..."
164 });
165 });
166
167 Ext.define("Ext.locale.pl.form.field.VTypes", {
168 override: "Ext.form.field.VTypes",
169 emailText: 'To pole wymaga podania adresu e-mail w formacie: "nazwa@domena.pl"',
170 urlText: 'To pole wymaga podania adresu strony www w formacie: "http:/' + '/www.domena.pl"',
171 alphaText: 'To pole wymaga podania tylko liter i _',
172 alphanumText: 'To pole wymaga podania tylko liter, cyfr i _'
173 });
174
175 Ext.define("Ext.locale.pl.form.field.HtmlEditor", {
176 override: "Ext.form.field.HtmlEditor",
177 createLinkText: 'Wprowadź adres URL strony:'
178 }, function() {
179 Ext.apply(Ext.form.field.HtmlEditor.prototype, {
180 buttonTips: {
181 bold: {
182 title: 'Pogrubienie (Ctrl+B)',
183 text: 'Ustaw styl zaznaczonego tekstu na pogrubiony.',
184 cls: Ext.baseCSSPrefix + 'html-editor-tip'
185 },
186 italic: {
187 title: 'Kursywa (Ctrl+I)',
188 text: 'Ustaw styl zaznaczonego tekstu na kursywę.',
189 cls: Ext.baseCSSPrefix + 'html-editor-tip'
190 },
191 underline: {
192 title: 'Podkreślenie (Ctrl+U)',
193 text: 'Podkreśl zaznaczony tekst.',
194 cls: Ext.baseCSSPrefix + 'html-editor-tip'
195 },
196 increasefontsize: {
197 title: 'Zwiększ czcionkę',
198 text: 'Zwiększ rozmiar czcionki.',
199 cls: Ext.baseCSSPrefix + 'html-editor-tip'
200 },
201 decreasefontsize: {
202 title: 'Zmniejsz czcionkę',
203 text: 'Zmniejsz rozmiar czcionki.',
204 cls: Ext.baseCSSPrefix + 'html-editor-tip'
205 },
206 backcolor: {
207 title: 'Wyróżnienie',
208 text: 'Zmień kolor wyróżnienia zaznaczonego tekstu.',
209 cls: Ext.baseCSSPrefix + 'html-editor-tip'
210 },
211 forecolor: {
212 title: 'Kolor czcionki',
213 text: 'Zmień kolor zaznaczonego tekstu.',
214 cls: Ext.baseCSSPrefix + 'html-editor-tip'
215 },
216 justifyleft: {
217 title: 'Do lewej',
218 text: 'Wyrównaj tekst do lewej.',
219 cls: Ext.baseCSSPrefix + 'html-editor-tip'
220 },
221 justifycenter: {
222 title: 'Wyśrodkuj',
223 text: 'Wyrównaj tekst do środka.',
224 cls: Ext.baseCSSPrefix + 'html-editor-tip'
225 },
226 justifyright: {
227 title: 'Do prawej',
228 text: 'Wyrównaj tekst do prawej.',
229 cls: Ext.baseCSSPrefix + 'html-editor-tip'
230 },
231 insertunorderedlist: {
232 title: 'Lista wypunktowana',
233 text: 'Rozpocznij listę wypunktowaną.',
234 cls: Ext.baseCSSPrefix + 'html-editor-tip'
235 },
236 insertorderedlist: {
237 title: 'Lista numerowana',
238 text: 'Rozpocznij listę numerowaną.',
239 cls: Ext.baseCSSPrefix + 'html-editor-tip'
240 },
241 createlink: {
242 title: 'Hiperłącze',
243 text: 'Przekształć zaznaczony tekst w hiperłącze.',
244 cls: Ext.baseCSSPrefix + 'html-editor-tip'
245 },
246 sourceedit: {
247 title: 'Edycja źródła',
248 text: 'Przełącz w tryb edycji źródła.',
249 cls: Ext.baseCSSPrefix + 'html-editor-tip'
250 }
251 }
252 });
253 });
254
255 Ext.define("Ext.locale.pl.grid.header.Container", {
256 override: "Ext.grid.header.Container",
257 sortAscText: "Sortuj rosnąco",
258 sortDescText: "Sortuj malejąco",
259 lockText: "Zablokuj kolumnę",
260 unlockText: "Odblokuj kolumnę",
261 columnsText: "Kolumny"
262 });
263
264 Ext.define("Ext.locale.pl.grid.GroupingFeature", {
265 override: "Ext.grid.feature.Grouping",
266 emptyGroupText: '(None)',
267 groupByText: 'Grupuj po tym polu',
268 showGroupsText: 'Pokaż w grupach'
269 });
270
271 Ext.define("Ext.locale.pl.grid.PropertyColumnModel", {
272 override: "Ext.grid.PropertyColumnModel",
273 nameText: "Nazwa",
274 valueText: "Wartość",
275 dateFormat: "Y-m-d"
276 });
277
278 Ext.define("Ext.locale.pl.window.MessageBox", {
279 override: "Ext.window.MessageBox",
280 buttonText: {
281 ok: "OK",
282 cancel: "Anuluj",
283 yes: "Tak",
284 no: "Nie"
285 }
286 });
287
288 // This is needed until we can refactor all of the locales into individual files
289 Ext.define("Ext.locale.pl.Component", {
290 override: "Ext.Component"
291 });