Subversion Repositories eFlore/Applications.cel

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

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