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