Upgrade to ExtJS 3.2.1 - Released 04/27/2010
[extjs.git] / src / locale / ext-lang-de.js
1 /*!
2  * Ext JS Library 3.2.1
3  * Copyright(c) 2006-2010 Ext JS, Inc.
4  * licensing@extjs.com
5  * http://www.extjs.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            : "&#160;OK&#160;",
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    });
178 }
179
180 if(Ext.form.ComboBox){
181    Ext.apply(Ext.form.ComboBox.prototype, {
182       loadingText       : "Lade Daten ...",
183       valueNotFoundText : undefined
184    });
185 }
186
187 if(Ext.form.VTypes){
188    Ext.apply(Ext.form.VTypes, {
189       emailText    : 'Dieses Feld sollte eine E-Mail-Adresse enthalten. Format: "user@example.com"',
190       urlText      : 'Dieses Feld sollte eine URL enthalten. Format: "http:/'+'/www.example.com"',
191       alphaText    : 'Dieses Feld darf nur Buchstaben enthalten und _',
192       alphanumText : 'Dieses Feld darf nur Buchstaben und Zahlen enthalten und _'
193    });
194 }
195
196 if(Ext.form.HtmlEditor){
197   Ext.apply(Ext.form.HtmlEditor.prototype, {
198     createLinkText : 'Bitte geben Sie die URL für den Link ein:',
199     buttonTips : {
200       bold : {
201         title: 'Fett (Ctrl+B)',
202         text: 'Erstellt den ausgewählten Text in Fettschrift.',
203         cls: 'x-html-editor-tip'
204       },
205       italic : {
206         title: 'Kursiv (Ctrl+I)',
207         text: 'Erstellt den ausgewählten Text in Schrägschrift.',
208         cls: 'x-html-editor-tip'
209       },
210       underline : {
211         title: 'Unterstrichen (Ctrl+U)',
212         text: 'Unterstreicht den ausgewählten Text.',
213         cls: 'x-html-editor-tip'
214       },
215       increasefontsize : {
216         title: 'Text vergößern',
217         text: 'Erhöht die Schriftgröße.',
218         cls: 'x-html-editor-tip'
219       },
220       decreasefontsize : {
221         title: 'Text verkleinern',
222         text: 'Verringert die Schriftgröße.',
223         cls: 'x-html-editor-tip'
224       },
225       backcolor : {
226         title: 'Text farblich hervorheben',
227         text: 'Hintergrundfarbe des ausgewählten Textes ändern.',
228         cls: 'x-html-editor-tip'
229       },
230       forecolor : {
231         title: 'Schriftfarbe',
232         text: 'Farbe des ausgewählten Textes ändern.',
233         cls: 'x-html-editor-tip'
234       },
235       justifyleft : {
236         title: 'Linksbündig',
237         text: 'Setzt den Text linksbündig.',
238         cls: 'x-html-editor-tip'
239       },
240       justifycenter : {
241         title: 'Zentrieren',
242         text: 'Zentriert den Text in Editor.',
243         cls: 'x-html-editor-tip'
244       },
245       justifyright : {
246         title: 'Rechtsbündig',
247         text: 'Setzt den Text rechtsbündig.',
248         cls: 'x-html-editor-tip'
249       },
250       insertunorderedlist : {
251         title: 'Aufzählungsliste',
252         text: 'Beginnt eine Aufzählungsliste mit Spiegelstrichen.',
253         cls: 'x-html-editor-tip'
254       },
255       insertorderedlist : {
256         title: 'Numerierte Liste',
257         text: 'Beginnt eine numerierte Liste.',
258         cls: 'x-html-editor-tip'
259       },
260       createlink : {
261         title: 'Hyperlink',
262         text: 'Erstellt einen Hyperlink aus dem ausgewählten text.',
263         cls: 'x-html-editor-tip'
264       },
265       sourceedit : {
266         title: 'Source bearbeiten',
267         text: 'Zur Bearbeitung des Quelltextes wechseln.',
268         cls: 'x-html-editor-tip'
269       }
270     }
271   });
272 }
273
274 if(Ext.grid.GridView){
275    Ext.apply(Ext.grid.GridView.prototype, {
276       sortAscText  : "Aufsteigend sortieren",
277       sortDescText : "Absteigend sortieren",
278       lockText     : "Spalte sperren",
279       unlockText   : "Spalte freigeben (entsperren)",
280       columnsText  : "Spalten"
281    });
282 }
283
284 if(Ext.grid.GroupingView){
285   Ext.apply(Ext.grid.GroupingView.prototype, {
286     emptyGroupText : '(Keine)',
287     groupByText    : 'Dieses Feld gruppieren',
288     showGroupsText : 'In Gruppen anzeigen'
289   });
290 }
291
292 if(Ext.grid.PropertyColumnModel){
293   Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
294       nameText   : "Name",
295       valueText  : "Wert",
296       dateFormat : "d.m.Y"
297   });
298 }
299
300 if(Ext.grid.BooleanColumn){
301    Ext.apply(Ext.grid.BooleanColumn.prototype, {
302       trueText  : "wahr",
303       falseText : "falsch"
304    });
305 }
306
307 if(Ext.grid.NumberColumn){
308     Ext.apply(Ext.grid.NumberColumn.prototype, {
309         format : '0.000,00/i'
310     });
311 }
312
313 if(Ext.grid.DateColumn){
314     Ext.apply(Ext.grid.DateColumn.prototype, {
315         format : 'd.m.Y'
316     });
317 }
318
319 if(Ext.layout.BorderLayout && Ext.layout.BorderLayout.SplitRegion){
320   Ext.apply(Ext.layout.BorderLayout.SplitRegion.prototype, {
321     splitTip            : "Ziehen, um Größe zu ändern.",
322     collapsibleSplitTip : "Ziehen, um Größe zu ändern. Doppelklick um Panel auszublenden."
323   });
324 }
325
326 if(Ext.form.TimeField){
327    Ext.apply(Ext.form.TimeField.prototype, {
328     minText : "Die Zeit muss gleich oder nach {0} liegen",
329     maxText : "Die Zeit muss gleich oder vor {0} liegen",
330     invalidText : "{0} ist keine gültige Zeit",
331     format : "H:i"
332    });
333 }