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