1 | /*! |
---|
2 | * Ext JS Library 3.4.0 |
---|
3 | * Copyright(c) 2006-2011 Sencha Inc. |
---|
4 | * licensing@sencha.com |
---|
5 | * http://www.sencha.com/license |
---|
6 | */ |
---|
7 | /* |
---|
8 | * German translation |
---|
9 | * 2007-Apr-07 update by schmidetzki and humpdi |
---|
10 | * 2007-Oct-31 update by wm003 |
---|
11 | * 2009-Jul-10 update by Patrick Matsumura and Rupert Quaderer |
---|
12 | * 2010-Mar-10 update by Volker Grabsch |
---|
13 | */ |
---|
14 | |
---|
15 | Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">Ãbertrage Daten ...</div>'; |
---|
16 | |
---|
17 | if(Ext.View){ |
---|
18 | Ext.View.prototype.emptyText = ""; |
---|
19 | } |
---|
20 | |
---|
21 | if(Ext.grid.GridPanel){ |
---|
22 | Ext.grid.GridPanel.prototype.ddText = "{0} Zeile(n) ausgewÀhlt"; |
---|
23 | } |
---|
24 | |
---|
25 | if(Ext.TabPanelItem){ |
---|
26 | Ext.TabPanelItem.prototype.closeText = "Diesen Tab schlieÃen"; |
---|
27 | } |
---|
28 | |
---|
29 | if(Ext.form.BasicForm){ |
---|
30 | Ext.form.BasicForm.prototype.waitTitle = "Bitte warten..."; |
---|
31 | } |
---|
32 | |
---|
33 | if(Ext.form.Field){ |
---|
34 | Ext.form.Field.prototype.invalidText = "Der Wert des Feldes ist nicht korrekt"; |
---|
35 | } |
---|
36 | |
---|
37 | if(Ext.LoadMask){ |
---|
38 | Ext.LoadMask.prototype.msg = "Ãbertrage Daten..."; |
---|
39 | } |
---|
40 | |
---|
41 | Date.monthNames = [ |
---|
42 | "Januar", |
---|
43 | "Februar", |
---|
44 | "MÀrz", |
---|
45 | "April", |
---|
46 | "Mai", |
---|
47 | "Juni", |
---|
48 | "Juli", |
---|
49 | "August", |
---|
50 | "September", |
---|
51 | "Oktober", |
---|
52 | "November", |
---|
53 | "Dezember" |
---|
54 | ]; |
---|
55 | |
---|
56 | Date.getShortMonthName = function(month) { |
---|
57 | return Date.monthNames[month].substring(0, 3); |
---|
58 | }; |
---|
59 | |
---|
60 | Date.monthNumbers = { |
---|
61 | Jan : 0, |
---|
62 | Feb : 1, |
---|
63 | "M\u00e4r" : 2, |
---|
64 | Apr : 3, |
---|
65 | Mai : 4, |
---|
66 | Jun : 5, |
---|
67 | Jul : 6, |
---|
68 | Aug : 7, |
---|
69 | Sep : 8, |
---|
70 | Okt : 9, |
---|
71 | Nov : 10, |
---|
72 | Dez : 11 |
---|
73 | }; |
---|
74 | |
---|
75 | Date.getMonthNumber = function(name) { |
---|
76 | return Date.monthNumbers[name.substring(0, 1).toUpperCase() + name.substring(1, 3).toLowerCase()]; |
---|
77 | }; |
---|
78 | |
---|
79 | Date.dayNames = [ |
---|
80 | "Sonntag", |
---|
81 | "Montag", |
---|
82 | "Dienstag", |
---|
83 | "Mittwoch", |
---|
84 | "Donnerstag", |
---|
85 | "Freitag", |
---|
86 | "Samstag" |
---|
87 | ]; |
---|
88 | |
---|
89 | Date.getShortDayName = function(day) { |
---|
90 | return Date.dayNames[day].substring(0, 3); |
---|
91 | }; |
---|
92 | |
---|
93 | if(Ext.MessageBox){ |
---|
94 | Ext.MessageBox.buttonText = { |
---|
95 | ok : "OK", |
---|
96 | cancel : "Abbrechen", |
---|
97 | yes : "Ja", |
---|
98 | no : "Nein" |
---|
99 | }; |
---|
100 | } |
---|
101 | |
---|
102 | if(Ext.util.Format){ |
---|
103 | Ext.util.Format.__number = Ext.util.Format.number; |
---|
104 | Ext.util.Format.number = function(v, format) { |
---|
105 | return Ext.util.Format.__number(v, format || "0.000,00/i"); |
---|
106 | }; |
---|
107 | |
---|
108 | Ext.util.Format.date = function(v, format) { |
---|
109 | if(!v) return ""; |
---|
110 | if(!(v instanceof Date)) v = new Date(Date.parse(v)); |
---|
111 | return v.dateFormat(format || "d.m.Y"); |
---|
112 | }; |
---|
113 | } |
---|
114 | |
---|
115 | if(Ext.DatePicker){ |
---|
116 | Ext.apply(Ext.DatePicker.prototype, { |
---|
117 | todayText : "Heute", |
---|
118 | minText : "Dieses Datum liegt von dem erstmöglichen Datum", |
---|
119 | maxText : "Dieses Datum liegt nach dem letztmöglichen Datum", |
---|
120 | disabledDaysText : "", |
---|
121 | disabledDatesText : "", |
---|
122 | monthNames : Date.monthNames, |
---|
123 | dayNames : Date.dayNames, |
---|
124 | nextText : "NÀchster Monat (Strg/Control + Rechts)", |
---|
125 | prevText : "Vorheriger Monat (Strg/Control + Links)", |
---|
126 | monthYearText : "Monat auswÀhlen (Strg/Control + Hoch/Runter, um ein Jahr auszuwÀhlen)", |
---|
127 | todayTip : "Heute ({0}) (Leertaste)", |
---|
128 | format : "d.m.Y", |
---|
129 | okText : " OK ", |
---|
130 | cancelText : "Abbrechen", |
---|
131 | startDay : 1 |
---|
132 | }); |
---|
133 | } |
---|
134 | |
---|
135 | if(Ext.PagingToolbar){ |
---|
136 | Ext.apply(Ext.PagingToolbar.prototype, { |
---|
137 | beforePageText : "Seite", |
---|
138 | afterPageText : "von {0}", |
---|
139 | firstText : "Erste Seite", |
---|
140 | prevText : "vorherige Seite", |
---|
141 | nextText : "nÀchste Seite", |
---|
142 | lastText : "letzte Seite", |
---|
143 | refreshText : "Aktualisieren", |
---|
144 | displayMsg : "Anzeige Eintrag {0} - {1} von {2}", |
---|
145 | emptyMsg : "Keine Daten vorhanden" |
---|
146 | }); |
---|
147 | } |
---|
148 | |
---|
149 | if(Ext.form.TextField){ |
---|
150 | Ext.apply(Ext.form.TextField.prototype, { |
---|
151 | minLengthText : "Bitte geben Sie mindestens {0} Zeichen ein", |
---|
152 | maxLengthText : "Bitte geben Sie maximal {0} Zeichen ein", |
---|
153 | blankText : "Dieses Feld darf nicht leer sein", |
---|
154 | regexText : "", |
---|
155 | emptyText : null |
---|
156 | }); |
---|
157 | } |
---|
158 | |
---|
159 | if(Ext.form.NumberField){ |
---|
160 | Ext.apply(Ext.form.NumberField.prototype, { |
---|
161 | minText : "Der Mindestwert fÃŒr dieses Feld ist {0}", |
---|
162 | maxText : "Der Maximalwert fÃŒr dieses Feld ist {0}", |
---|
163 | nanText : "{0} ist keine Zahl", |
---|
164 | decimalSeparator : "," |
---|
165 | }); |
---|
166 | } |
---|
167 | |
---|
168 | if(Ext.form.DateField){ |
---|
169 | Ext.apply(Ext.form.DateField.prototype, { |
---|
170 | disabledDaysText : "nicht erlaubt", |
---|
171 | disabledDatesText : "nicht erlaubt", |
---|
172 | minText : "Das Datum in diesem Feld muss nach dem {0} liegen", |
---|
173 | maxText : "Das Datum in diesem Feld muss vor dem {0} liegen", |
---|
174 | invalidText : "{0} ist kein gÃŒltiges Datum - es muss im Format {1} eingegeben werden", |
---|
175 | format : "d.m.Y", |
---|
176 | altFormats : "j.n.Y|j.n.y|j.n.|j.|j/n/Y|j/n/y|j-n-y|j-n-Y|j/n|j-n|dm|dmy|dmY|j|Y-n-j", |
---|
177 | startDay : 1 |
---|
178 | }); |
---|
179 | } |
---|
180 | |
---|
181 | if(Ext.form.ComboBox){ |
---|
182 | Ext.apply(Ext.form.ComboBox.prototype, { |
---|
183 | loadingText : "Lade Daten ...", |
---|
184 | valueNotFoundText : undefined |
---|
185 | }); |
---|
186 | } |
---|
187 | |
---|
188 | if(Ext.form.VTypes){ |
---|
189 | Ext.apply(Ext.form.VTypes, { |
---|
190 | emailText : 'Dieses Feld sollte eine E-Mail-Adresse enthalten. Format: "user@example.com"', |
---|
191 | urlText : 'Dieses Feld sollte eine URL enthalten. Format: "http:/'+'/www.example.com"', |
---|
192 | alphaText : 'Dieses Feld darf nur Buchstaben enthalten und _', |
---|
193 | alphanumText : 'Dieses Feld darf nur Buchstaben und Zahlen enthalten und _' |
---|
194 | }); |
---|
195 | } |
---|
196 | |
---|
197 | if(Ext.form.HtmlEditor){ |
---|
198 | Ext.apply(Ext.form.HtmlEditor.prototype, { |
---|
199 | createLinkText : 'Bitte geben Sie die URL fÃŒr den Link ein:', |
---|
200 | buttonTips : { |
---|
201 | bold : { |
---|
202 | title: 'Fett (Ctrl+B)', |
---|
203 | text: 'Erstellt den ausgewÀhlten Text in Fettschrift.', |
---|
204 | cls: 'x-html-editor-tip' |
---|
205 | }, |
---|
206 | italic : { |
---|
207 | title: 'Kursiv (Ctrl+I)', |
---|
208 | text: 'Erstellt den ausgewÀhlten Text in SchrÀgschrift.', |
---|
209 | cls: 'x-html-editor-tip' |
---|
210 | }, |
---|
211 | underline : { |
---|
212 | title: 'Unterstrichen (Ctrl+U)', |
---|
213 | text: 'Unterstreicht den ausgewÀhlten Text.', |
---|
214 | cls: 'x-html-editor-tip' |
---|
215 | }, |
---|
216 | increasefontsize : { |
---|
217 | title: 'Text vergöÃern', |
---|
218 | text: 'Erhöht die SchriftgröÃe.', |
---|
219 | cls: 'x-html-editor-tip' |
---|
220 | }, |
---|
221 | decreasefontsize : { |
---|
222 | title: 'Text verkleinern', |
---|
223 | text: 'Verringert die SchriftgröÃe.', |
---|
224 | cls: 'x-html-editor-tip' |
---|
225 | }, |
---|
226 | backcolor : { |
---|
227 | title: 'Text farblich hervorheben', |
---|
228 | text: 'Hintergrundfarbe des ausgewÀhlten Textes Àndern.', |
---|
229 | cls: 'x-html-editor-tip' |
---|
230 | }, |
---|
231 | forecolor : { |
---|
232 | title: 'Schriftfarbe', |
---|
233 | text: 'Farbe des ausgewÀhlten Textes Àndern.', |
---|
234 | cls: 'x-html-editor-tip' |
---|
235 | }, |
---|
236 | justifyleft : { |
---|
237 | title: 'LinksbÃŒndig', |
---|
238 | text: 'Setzt den Text linksbÃŒndig.', |
---|
239 | cls: 'x-html-editor-tip' |
---|
240 | }, |
---|
241 | justifycenter : { |
---|
242 | title: 'Zentrieren', |
---|
243 | text: 'Zentriert den Text in Editor.', |
---|
244 | cls: 'x-html-editor-tip' |
---|
245 | }, |
---|
246 | justifyright : { |
---|
247 | title: 'RechtsbÃŒndig', |
---|
248 | text: 'Setzt den Text rechtsbÃŒndig.', |
---|
249 | cls: 'x-html-editor-tip' |
---|
250 | }, |
---|
251 | insertunorderedlist : { |
---|
252 | title: 'AufzÀhlungsliste', |
---|
253 | text: 'Beginnt eine AufzÀhlungsliste mit Spiegelstrichen.', |
---|
254 | cls: 'x-html-editor-tip' |
---|
255 | }, |
---|
256 | insertorderedlist : { |
---|
257 | title: 'Numerierte Liste', |
---|
258 | text: 'Beginnt eine numerierte Liste.', |
---|
259 | cls: 'x-html-editor-tip' |
---|
260 | }, |
---|
261 | createlink : { |
---|
262 | title: 'Hyperlink', |
---|
263 | text: 'Erstellt einen Hyperlink aus dem ausgewÀhlten text.', |
---|
264 | cls: 'x-html-editor-tip' |
---|
265 | }, |
---|
266 | sourceedit : { |
---|
267 | title: 'Source bearbeiten', |
---|
268 | text: 'Zur Bearbeitung des Quelltextes wechseln.', |
---|
269 | cls: 'x-html-editor-tip' |
---|
270 | } |
---|
271 | } |
---|
272 | }); |
---|
273 | } |
---|
274 | |
---|
275 | if(Ext.grid.GridView){ |
---|
276 | Ext.apply(Ext.grid.GridView.prototype, { |
---|
277 | sortAscText : "Aufsteigend sortieren", |
---|
278 | sortDescText : "Absteigend sortieren", |
---|
279 | lockText : "Spalte sperren", |
---|
280 | unlockText : "Spalte freigeben (entsperren)", |
---|
281 | columnsText : "Spalten" |
---|
282 | }); |
---|
283 | } |
---|
284 | |
---|
285 | if(Ext.grid.GroupingView){ |
---|
286 | Ext.apply(Ext.grid.GroupingView.prototype, { |
---|
287 | emptyGroupText : '(Keine)', |
---|
288 | groupByText : 'Dieses Feld gruppieren', |
---|
289 | showGroupsText : 'In Gruppen anzeigen' |
---|
290 | }); |
---|
291 | } |
---|
292 | |
---|
293 | if(Ext.grid.PropertyColumnModel){ |
---|
294 | Ext.apply(Ext.grid.PropertyColumnModel.prototype, { |
---|
295 | nameText : "Name", |
---|
296 | valueText : "Wert", |
---|
297 | dateFormat : "d.m.Y" |
---|
298 | }); |
---|
299 | } |
---|
300 | |
---|
301 | if(Ext.grid.BooleanColumn){ |
---|
302 | Ext.apply(Ext.grid.BooleanColumn.prototype, { |
---|
303 | trueText : "wahr", |
---|
304 | falseText : "falsch" |
---|
305 | }); |
---|
306 | } |
---|
307 | |
---|
308 | if(Ext.grid.NumberColumn){ |
---|
309 | Ext.apply(Ext.grid.NumberColumn.prototype, { |
---|
310 | format : '0.000,00/i' |
---|
311 | }); |
---|
312 | } |
---|
313 | |
---|
314 | if(Ext.grid.DateColumn){ |
---|
315 | Ext.apply(Ext.grid.DateColumn.prototype, { |
---|
316 | format : 'd.m.Y' |
---|
317 | }); |
---|
318 | } |
---|
319 | |
---|
320 | if(Ext.layout.BorderLayout && Ext.layout.BorderLayout.SplitRegion){ |
---|
321 | Ext.apply(Ext.layout.BorderLayout.SplitRegion.prototype, { |
---|
322 | splitTip : "Ziehen, um GröÃe zu Àndern.", |
---|
323 | collapsibleSplitTip : "Ziehen, um GröÃe zu Àndern. Doppelklick um Panel auszublenden." |
---|
324 | }); |
---|
325 | } |
---|
326 | |
---|
327 | if(Ext.form.TimeField){ |
---|
328 | Ext.apply(Ext.form.TimeField.prototype, { |
---|
329 | minText : "Die Zeit muss gleich oder nach {0} liegen", |
---|
330 | maxText : "Die Zeit muss gleich oder vor {0} liegen", |
---|
331 | invalidText : "{0} ist keine gÃŒltige Zeit", |
---|
332 | format : "H:i" |
---|
333 | }); |
---|
334 | } |
---|
335 | |
---|
336 | if(Ext.form.CheckboxGroup){ |
---|
337 | Ext.apply(Ext.form.CheckboxGroup.prototype, { |
---|
338 | blankText : "Du muÃt mehr als einen Eintrag aus der Gruppe auswÀhlen" |
---|
339 | }); |
---|
340 | } |
---|
341 | |
---|
342 | if(Ext.form.RadioGroup){ |
---|
343 | Ext.apply(Ext.form.RadioGroup.prototype, { |
---|
344 | blankText : "Du muÃt einen Eintrag aus der Gruppe auswÀhlen" |
---|
345 | }); |
---|
346 | } |
---|