Forked mumble-django project from https://bitbucket.org/Svedrin/mumble-django
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
301 lines
8.2 KiB
301 lines
8.2 KiB
/*
|
|
* German translation
|
|
* By schmidetzki and humpdi
|
|
* 04-07-2007
|
|
* Updated by wm003 10-31-2007
|
|
*/
|
|
|
|
Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">Übertrage Daten ...</div>';
|
|
|
|
if(Ext.View){
|
|
Ext.View.prototype.emptyText = "";
|
|
}
|
|
|
|
if(Ext.grid.GridPanel){
|
|
Ext.grid.GridPanel.prototype.ddText = "{0} Zeile(n) ausgewählt";
|
|
}
|
|
|
|
if(Ext.TabPanelItem){
|
|
Ext.TabPanelItem.prototype.closeText = "Diesen Tab schließen";
|
|
}
|
|
|
|
if(Ext.form.BasicForm){
|
|
Ext.form.BasicForm.prototype.waitTitle = "Bitte warten...";
|
|
}
|
|
|
|
if(Ext.form.Field){
|
|
Ext.form.Field.prototype.invalidText = "Der Wert des Feldes ist nicht korrekt";
|
|
}
|
|
|
|
if(Ext.LoadMask){
|
|
Ext.LoadMask.prototype.msg = "Übertrage Daten...";
|
|
}
|
|
|
|
Date.monthNames = [
|
|
"Januar",
|
|
"Februar",
|
|
"März",
|
|
"April",
|
|
"Mai",
|
|
"Juni",
|
|
"Juli",
|
|
"August",
|
|
"September",
|
|
"Oktober",
|
|
"November",
|
|
"Dezember"
|
|
];
|
|
|
|
Date.getShortMonthName = function(month) {
|
|
return Date.monthNames[month].substring(0, 3);
|
|
};
|
|
|
|
Date.monthNumbers = {
|
|
Jan : 0,
|
|
Feb : 1,
|
|
Mar : 2,
|
|
Apr : 3,
|
|
May : 4,
|
|
Jun : 5,
|
|
Jul : 6,
|
|
Aug : 7,
|
|
Sep : 8,
|
|
Oct : 9,
|
|
Nov : 10,
|
|
Dec : 11
|
|
};
|
|
|
|
Date.getMonthNumber = function(name) {
|
|
return Date.monthNumbers[name.substring(0, 1).toUpperCase() + name.substring(1, 3).toLowerCase()];
|
|
};
|
|
|
|
Date.dayNames = [
|
|
"Sonntag",
|
|
"Montag",
|
|
"Dienstag",
|
|
"Mittwoch",
|
|
"Donnerstag",
|
|
"Freitag",
|
|
"Samstag"
|
|
];
|
|
|
|
Date.getShortDayName = function(day) {
|
|
return Date.dayNames[day].substring(0, 3);
|
|
};
|
|
|
|
if(Ext.MessageBox){
|
|
Ext.MessageBox.buttonText = {
|
|
ok : "OK",
|
|
cancel : "Abbrechen",
|
|
yes : "Ja",
|
|
no : "Nein"
|
|
};
|
|
}
|
|
|
|
if(Ext.util.Format){
|
|
Ext.util.Format.date = function(v, format){
|
|
if(!v) return "";
|
|
if(!(v instanceof Date)) v = new Date(Date.parse(v));
|
|
return v.dateFormat(format || "d.m.Y");
|
|
};
|
|
}
|
|
|
|
if(Ext.DatePicker){
|
|
Ext.apply(Ext.DatePicker.prototype, {
|
|
todayText : "Heute",
|
|
minText : "Dieses Datum liegt von dem erstmöglichen Datum",
|
|
maxText : "Dieses Datum liegt nach dem letztmöglichen Datum",
|
|
disabledDaysText : "",
|
|
disabledDatesText : "",
|
|
monthNames : Date.monthNames,
|
|
dayNames : Date.dayNames,
|
|
nextText : "Nächster Monat (Strg/Control + Rechts)",
|
|
prevText : "Vorheriger Monat (Strg/Control + Links)",
|
|
monthYearText : "Monat auswählen (Strg/Control + Hoch/Runter, um ein Jahr auszuwählen)",
|
|
todayTip : "Heute ({0}) (Leertaste)",
|
|
format : "d.m.Y",
|
|
okText : " OK ",
|
|
cancelText : "Abbrechen",
|
|
startDay : 1
|
|
});
|
|
}
|
|
|
|
if(Ext.PagingToolbar){
|
|
Ext.apply(Ext.PagingToolbar.prototype, {
|
|
beforePageText : "Seite",
|
|
afterPageText : "von {0}",
|
|
firstText : "Erste Seite",
|
|
prevText : "vorherige Seite",
|
|
nextText : "nächste Seite",
|
|
lastText : "letzte Seite",
|
|
refreshText : "Aktualisieren",
|
|
displayMsg : "Anzeige Eintrag {0} - {1} von {2}",
|
|
emptyMsg : "Keine Daten vorhanden"
|
|
});
|
|
}
|
|
|
|
if(Ext.form.TextField){
|
|
Ext.apply(Ext.form.TextField.prototype, {
|
|
minLengthText : "Bitte geben Sie mindestens {0} Zeichen ein",
|
|
maxLengthText : "Bitte geben Sie maximal {0} Zeichen ein",
|
|
blankText : "Dieses Feld darf nicht leer sein",
|
|
regexText : "",
|
|
emptyText : null
|
|
});
|
|
}
|
|
|
|
if(Ext.form.NumberField){
|
|
Ext.apply(Ext.form.NumberField.prototype, {
|
|
minText : "Der Mindestwert für dieses Feld ist {0}",
|
|
maxText : "Der Maximalwert für dieses Feld ist {0}",
|
|
nanText : "{0} ist keine Zahl"
|
|
});
|
|
}
|
|
|
|
if(Ext.form.DateField){
|
|
Ext.apply(Ext.form.DateField.prototype, {
|
|
disabledDaysText : "nicht erlaubt",
|
|
disabledDatesText : "nicht erlaubt",
|
|
minText : "Das Datum in diesem Feld muß nach dem {0} liegen",
|
|
maxText : "Das Datum in diesem Feld muß vor dem {0} liegen",
|
|
invalidText : "{0} ist kein valides Datum - es muß im Format {1} eingegeben werden",
|
|
format : "d.m.Y",
|
|
altFormats : "d.m.Y|d/m/Y|d-m-y|d-m-Y|d/m|d-m|dm|dmy|dmY|d|Y-m-d"
|
|
});
|
|
}
|
|
|
|
if(Ext.form.ComboBox){
|
|
Ext.apply(Ext.form.ComboBox.prototype, {
|
|
loadingText : "Lade Daten ...",
|
|
valueNotFoundText : undefined
|
|
});
|
|
}
|
|
|
|
if(Ext.form.VTypes){
|
|
Ext.apply(Ext.form.VTypes, {
|
|
emailText : 'Dieses Feld sollte eine E-Mail-Adresse enthalten. Format: "user@domain.com"',
|
|
urlText : 'Dieses Feld sollte eine URL enthalten. Format: "http:/'+'/www.domain.com"',
|
|
alphaText : 'Dieses Feld darf nur Buchstaben enthalten und _',
|
|
alphanumText : 'Dieses Feld darf nur Buchstaben und Zahlen enthalten und _'
|
|
});
|
|
}
|
|
|
|
if(Ext.form.HtmlEditor){
|
|
Ext.apply(Ext.form.HtmlEditor.prototype, {
|
|
createLinkText : 'Bitte geben Sie die URL für den Link ein:',
|
|
buttonTips : {
|
|
bold : {
|
|
title: 'Fett (Ctrl+B)',
|
|
text: 'Erstellt den ausgewählten Text in Fettschrift.',
|
|
cls: 'x-html-editor-tip'
|
|
},
|
|
italic : {
|
|
title: 'Kursiv (Ctrl+I)',
|
|
text: 'Erstellt den ausgewählten Text in Schrägschrift.',
|
|
cls: 'x-html-editor-tip'
|
|
},
|
|
underline : {
|
|
title: 'Unterstrichen (Ctrl+U)',
|
|
text: 'Unterstreicht den ausgewählten Text.',
|
|
cls: 'x-html-editor-tip'
|
|
},
|
|
increasefontsize : {
|
|
title: 'Text vergößern',
|
|
text: 'Erhöht die Schriftgröße.',
|
|
cls: 'x-html-editor-tip'
|
|
},
|
|
decreasefontsize : {
|
|
title: 'Text verkleinern',
|
|
text: 'Verringert die Schriftgröße.',
|
|
cls: 'x-html-editor-tip'
|
|
},
|
|
backcolor : {
|
|
title: 'Text farblich hervorheben',
|
|
text: 'Hintergrundfarbe des ausgewählten Textes ändern.',
|
|
cls: 'x-html-editor-tip'
|
|
},
|
|
forecolor : {
|
|
title: 'Schriftfarbe',
|
|
text: 'Farbe des ausgewählten Textes ändern.',
|
|
cls: 'x-html-editor-tip'
|
|
},
|
|
justifyleft : {
|
|
title: 'Linksbündig',
|
|
text: 'Setzt den Text linksbündig.',
|
|
cls: 'x-html-editor-tip'
|
|
},
|
|
justifycenter : {
|
|
title: 'Zentrieren',
|
|
text: 'Zentriert den Text in Editor.',
|
|
cls: 'x-html-editor-tip'
|
|
},
|
|
justifyright : {
|
|
title: 'Rechtsbündig',
|
|
text: 'Setzt den Text rechtsbündig.',
|
|
cls: 'x-html-editor-tip'
|
|
},
|
|
insertunorderedlist : {
|
|
title: 'Aufzählungsliste',
|
|
text: 'Beginnt eine Aufzählungsliste mit Spiegelstrichen.',
|
|
cls: 'x-html-editor-tip'
|
|
},
|
|
insertorderedlist : {
|
|
title: 'Numerierte Liste',
|
|
text: 'Beginnt eine numerierte Liste.',
|
|
cls: 'x-html-editor-tip'
|
|
},
|
|
createlink : {
|
|
title: 'Hyperlink',
|
|
text: 'Erstellt einen Hyperlink aus dem ausgewählten text.',
|
|
cls: 'x-html-editor-tip'
|
|
},
|
|
sourceedit : {
|
|
title: 'Source bearbeiten',
|
|
text: 'Zur Bearbeitung des Quelltextes wechseln.',
|
|
cls: 'x-html-editor-tip'
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
if(Ext.grid.GridView){
|
|
Ext.apply(Ext.grid.GridView.prototype, {
|
|
sortAscText : "Aufsteigend sortieren",
|
|
sortDescText : "Absteigend sortieren",
|
|
lockText : "Spalte sperren",
|
|
unlockText : "Spalte freigeben (entsperren)",
|
|
columnsText : "Spalten"
|
|
});
|
|
}
|
|
|
|
if(Ext.grid.GroupingView){
|
|
Ext.apply(Ext.grid.GroupingView.prototype, {
|
|
emptyGroupText : '(Keine)',
|
|
groupByText : 'Dieses Feld gruppieren',
|
|
showGroupsText : 'In Gruppen anzeigen'
|
|
});
|
|
}
|
|
|
|
if(Ext.grid.PropertyColumnModel){
|
|
Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
|
|
nameText : "Name",
|
|
valueText : "Wert",
|
|
dateFormat : "d.m.Y"
|
|
});
|
|
}
|
|
|
|
if(Ext.layout.BorderLayout && Ext.layout.BorderLayout.SplitRegion){
|
|
Ext.apply(Ext.layout.BorderLayout.SplitRegion.prototype, {
|
|
splitTip : "Ziehen, um Größe zu ändern.",
|
|
collapsibleSplitTip : "Ziehen, um Größe zu ändern. Doppelklick um Panel auszublenden."
|
|
});
|
|
}
|
|
|
|
if(Ext.form.TimeField){
|
|
Ext.apply(Ext.form.TimeField.prototype, {
|
|
minText : "Die Zeit muss gleich oder nach {0} liegen",
|
|
maxText : "Die Zeit muss gleich oder vor {0} liegen",
|
|
invalidText : "{0} ist keine gültige Zeit",
|
|
format : "H:i"
|
|
});
|
|
}
|