ext-lang-nl.js
上传用户:qfccsy
上传日期:2022-03-27
资源大小:716k
文件大小:8k
源码类别:

ListView/ListBox

开发平台:

Java

  1. /*
  2.  * List compiled by mystix on the extjs.com forums.
  3.  * Thank you Mystix!
  4.  *
  5.  * Dutch Translations
  6.  * by Ido Sebastiaan Bas van Oostveen (12 Oct 2007)
  7.  */
  8. /* Ext Core translations */
  9. Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">Bezig met laden...</div>';
  10. /* Ext single string translations */
  11. if(Ext.View){
  12.     Ext.View.prototype.emptyText = "";
  13. }
  14. if(Ext.grid.Grid){
  15.     Ext.grid.Grid.prototype.ddText = "{0} geselecteerde rij(en)";
  16. }
  17. if(Ext.TabPanelItem){
  18.     Ext.TabPanelItem.prototype.closeText = "Sluit dit tabblad";
  19. }
  20. if(Ext.form.Field){
  21.     Ext.form.Field.prototype.invalidText = "De waarde in dit veld is onjuist";
  22. }
  23. if(Ext.LoadMask){
  24.     Ext.LoadMask.prototype.msg = "Bezig met laden...";
  25. }
  26. /* Javascript month and days translations */
  27. Date.monthNames = [
  28.    "Januari",
  29.    "Februari",
  30.    "Maart",
  31.    "April",
  32.    "Mei",
  33.    "Juni",
  34.    "Juli",
  35.    "Augustus",
  36.    "September",
  37.    "Oktober",
  38.    "November",
  39.    "December"
  40. ];
  41. Date.getShortMonthName = function(month) {
  42.   return Date.monthNames[month].substring(0, 3);
  43. };
  44. Date.monthNumbers = {
  45.   Jan : 0,
  46.   Feb : 1,
  47.   Maa : 2,
  48.   Apr : 3,
  49.   Mei : 4,
  50.   Jun : 5,
  51.   Jul : 6,
  52.   Aug : 7,
  53.   Sep : 8,
  54.   Okt : 9,
  55.   Nov : 10,
  56.   Dec : 11
  57. };
  58. Date.getMonthNumber = function(name) {
  59.   return Date.monthNumbers[name.substring(0, 1).toUpperCase() + name.substring(1, 3).toLowerCase()];
  60. };
  61. Date.dayNames = [
  62.    "Zondag",
  63.    "Maandag",
  64.    "Dinsdag",
  65.    "Woensdag",
  66.    "Donderdag",
  67.    "Vrijdag",
  68.    "Zaterdag"
  69. ];
  70. Date.getShortDayName = function(day) {
  71.   return Date.dayNames[day].substring(0, 3);
  72. };
  73. if(Ext.MessageBox){
  74.     Ext.MessageBox.buttonText = {
  75.        ok     : "OK",
  76.        cancel : "Annuleren",
  77.        yes    : "Ja",
  78.        no     : "Nee"
  79.     };
  80. }
  81. if(Ext.util.Format){
  82.     Ext.util.Format.date = function(v, format){
  83.        if(!v) return "";
  84.        if(!(v instanceof Date)) v = new Date(Date.parse(v));
  85.        return v.dateFormat(format || "d-m-y");
  86.     };
  87. }
  88. if(Ext.DatePicker){
  89.     Ext.apply(Ext.DatePicker.prototype, {
  90.        todayText         : "Vandaag",
  91.        minText           : "Deze datum is eerder dan de minimum datum",
  92.        maxText           : "Deze datum is later dan de maximum datum",
  93.        disabledDaysText  : "",
  94.        disabledDatesText : "",
  95.        monthNames  : Date.monthNames,
  96.        dayNames  : Date.dayNames,
  97.        nextText          : 'Volgende Maand (Control+Rechts)',
  98.        prevText          : 'Vorige Maand (Control+Links)',
  99.        monthYearText     : 'Kies een maand (Control+Omhoog/Beneden volgend/vorige jaar)',
  100.        todayTip          : "{0} (Spatie)",
  101.        format            : "d-m-y",
  102.        okText  : "&#160;OK&#160;",
  103.        cancelText  : "Annuleren",
  104.        startDay          : 1
  105.     });
  106. }
  107. if(Ext.PagingToolbar){
  108.     Ext.apply(Ext.PagingToolbar.prototype, {
  109.        beforePageText : "Pagina",
  110.        afterPageText  : "van {0}",
  111.        firstText      : "Eerste Pagina",
  112.        prevText       : "Vorige Pagina",
  113.        nextText       : "Volgende Pagina",
  114.        lastText       : "Laatste Pagina",
  115.        refreshText    : "Ververs",
  116.        displayMsg     : "Getoond {0} - {1} van {2}",
  117.        emptyMsg       : 'Geen gegeven om weer te geven'
  118.     });
  119. }
  120. if(Ext.form.TextField){
  121.     Ext.apply(Ext.form.TextField.prototype, {
  122.        minLengthText : "De minimale lengte voor dit veld is {0}",
  123.        maxLengthText : "De maximale lengte voor dit veld is {0}",
  124.        blankText     : "Dit veld is verplicht",
  125.        regexText     : "",
  126.        emptyText     : null
  127.     });
  128. }
  129. if(Ext.form.NumberField){
  130.     Ext.apply(Ext.form.NumberField.prototype, {
  131.        minText : "De minimale waarde voor dit veld is {0}",
  132.        maxText : "De maximale waarde voor dit veld is {0}",
  133.        nanText : "{0} is geen geldig getal"
  134.     });
  135. }
  136. if(Ext.form.DateField){
  137.     Ext.apply(Ext.form.DateField.prototype, {
  138.        disabledDaysText  : "Uitgeschakeld",
  139.        disabledDatesText : "Uitgeschakeld",
  140.        minText           : "De datum in dit veld moet na {0} liggen",
  141.        maxText           : "De datum in dit veld moet voor {0} liggen",
  142.        invalidText       : "{0} is geen geldige datum - formaat voor datum is {1}",
  143.        format            : "d-m-y",
  144.        altFormats        : "d/m/Y|d-m-y|d-m-Y|d/m|d-m|dm|dmy|dmY|d|Y-m-d"
  145.     });
  146. }
  147. if(Ext.form.ComboBox){
  148.     Ext.apply(Ext.form.ComboBox.prototype, {
  149.        loadingText       : "Bezig met laden...",
  150.        valueNotFoundText : undefined
  151.     });
  152. }
  153. if(Ext.form.VTypes){
  154.     Ext.apply(Ext.form.VTypes, {
  155.        emailText    : 'Dit veld moet een e-mail adres zijn in het formaat "gebruiker@domein.nl"',
  156.        urlText      : 'Dit veld moet een URL zijn in het formaat "http:/'+'/www.domein.nl"',
  157.        alphaText    : 'Dit veld mag alleen letters en _ bevatten',
  158.        alphanumText : 'Dit veld mag alleen letters, cijfers en _ bevatten'
  159.     });
  160. }
  161. if(Ext.form.HtmlEditor){
  162.    Ext.apply(Ext.form.HtmlEditor.prototype, {
  163. createLinkText : 'Vul hier het Internet adres voor de link in:',
  164. buttonTips : {
  165.             bold : {
  166.                 title: 'Vet (Ctrl+B)',
  167.                 text: 'Maak de geselecteerde tekst vet gedrukt.',
  168.                 cls: 'x-html-editor-tip'
  169.             },
  170.             italic : {
  171.                 title: 'Cursief (Ctrl+I)',
  172.                 text: 'Maak de geselecteerde tekst cursief.',
  173.                 cls: 'x-html-editor-tip'
  174.             },
  175.             underline : {
  176.                 title: 'Onderstrepen (Ctrl+U)',
  177.                 text: 'Onderstreep de geselecteerde tekst.',
  178.                 cls: 'x-html-editor-tip'
  179.             },
  180.             increasefontsize : {
  181.                 title: 'Tekst Vergroten',
  182.                 text: 'Vergroot het lettertype.',
  183.                 cls: 'x-html-editor-tip'
  184.             },
  185.             decreasefontsize : {
  186.                 title: 'Tekst Verkleinen',
  187.                 text: 'Verklein het lettertype.',
  188.                 cls: 'x-html-editor-tip'
  189.             },
  190.             backcolor : {
  191.                 title: 'Tekst Achtergrond Kleur',
  192.                 text: 'Verander de achtergrond kleur van de geselecteerde tekst.',
  193.                 cls: 'x-html-editor-tip'
  194.             },
  195.             forecolor : {
  196.                 title: 'Lettertype Kleur',
  197.                 text: 'Verander de kleur van de geselecteerde tekst.',
  198.                 cls: 'x-html-editor-tip'
  199.             },
  200.             justifyleft : {
  201.                 title: 'Tekst Links Uitlijnen',
  202.                 text: 'Lijn de tekst links uit.',
  203.                 cls: 'x-html-editor-tip'
  204.             },
  205.             justifycenter : {
  206.                 title: 'Tekst Centreren',
  207.                 text: 'Centreer de tekst in de editor.',
  208.                 cls: 'x-html-editor-tip'
  209.             },
  210.             justifyright : {
  211.                 title: 'Tekst Richts Uitlijnen',
  212.                 text: 'Lijn de tekst rechts uit.',
  213.                 cls: 'x-html-editor-tip'
  214.             },
  215.             insertunorderedlist : {
  216.                 title: 'Punten Lijst',
  217.                 text: 'Begin een ongenummerde lijst.',
  218.                 cls: 'x-html-editor-tip'
  219.             },
  220.             insertorderedlist : {
  221.                 title: 'Genummerde Lijst',
  222.                 text: 'Begin een genummerde lijst.',
  223.                 cls: 'x-html-editor-tip'
  224.             },
  225.             createlink : {
  226.                 title: 'Hyperlink',
  227.                 text: 'Maak van de geselecteerde tekst een hyperlink.',
  228.                 cls: 'x-html-editor-tip'
  229.             },
  230.             sourceedit : {
  231.                 title: 'Bron Aanpassen',
  232.                 text: 'Schakel modus over naar bron aanpassen.',
  233.                 cls: 'x-html-editor-tip'
  234.             }
  235.         }
  236.     });
  237. }
  238. if(Ext.grid.GridView){
  239.     Ext.apply(Ext.grid.GridView.prototype, {
  240.        sortAscText  : "Sorteer Oplopend",
  241.        sortDescText : "Sorteer Aflopend",
  242.        lockText     : "Kolom Vastzetten",
  243.        unlockText   : "Kolom Vrijgeven",
  244.        columnsText  : "Kolommen"
  245.     });
  246. }
  247. if(Ext.grid.GroupingView){
  248.   Ext.apply(Ext.grid.GroupingView.prototype, {
  249.     emptyGroupText : '(Geen)',
  250.     groupByText    : 'Dit veld groeperen',
  251.     showGroupsText : 'Zien als groepen'
  252.   });
  253. }
  254. if(Ext.grid.PropertyColumnModel){
  255.     Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
  256.        nameText   : "Naam",
  257.        valueText  : "Waarde",
  258.        dateFormat : "Y-m-j"
  259.     });
  260. }
  261. if(Ext.layout.BorderLayout.SplitRegion){
  262.     Ext.apply(Ext.layout.BorderLayout.SplitRegion.prototype, {
  263.        splitTip            : "Sleep om grootte aan te passen.",
  264.        collapsibleSplitTip : "Sleep om grootte aan te passen. Dubbel klikken om te verbergen."
  265.     });
  266. }