ext-lang-de.js
上传用户:shuoshiled
上传日期:2018-01-28
资源大小:10124k
文件大小:9k
源码类别:

中间件编程

开发平台:

JavaScript

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