Upgrade to ExtJS 3.0.3 - Released 10/11/2009
[extjs.git] / docs / source / ext-lang-af.html
1 <html>
2 <head>
3   <title>The source code</title>
4     <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />
5     <script type="text/javascript" src="../resources/prettify/prettify.js"></script>
6 </head>
7 <body  onload="prettyPrint();">
8     <pre class="prettyprint lang-js">/*!
9  * Ext JS Library 3.0.3
10  * Copyright(c) 2006-2009 Ext JS, LLC
11  * licensing@extjs.com
12  * http://www.extjs.com/license
13  */
14 /*
15  * List compiled by mystix on the extjs.com forums.
16  * Thank you Mystix!
17  *
18  * Afrikaans Translations
19  * by Thys Meintjes (20 July 2007)
20  */
21
22 /* Ext Core translations */
23 Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">Besig om te laai...</div>';
24
25 /* Ext single string translations */
26 if(Ext.View){
27     Ext.View.prototype.emptyText = "";
28 }
29
30 if(Ext.grid.GridPanel){
31     Ext.grid.GridPanel.prototype.ddText = "{0} geselekteerde ry(e)";
32 }
33
34 if(Ext.TabPanelItem){
35     Ext.TabPanelItem.prototype.closeText = "Maak die oortjie toe";
36 }
37
38 if(Ext.form.Field){
39     Ext.form.Field.prototype.invalidText = "Die waarde in hierdie veld is foutief";
40 }
41
42 if(Ext.LoadMask){
43     Ext.LoadMask.prototype.msg = "Besig om te laai...";
44 }
45
46 /* Javascript month and days translations */
47 Date.monthNames = [
48    "Januarie",
49    "Februarie",
50    "Maart",
51    "April",
52    "Mei",
53    "Junie",
54    "Julie",
55    "Augustus",
56    "September",
57    "Oktober",
58    "November",
59    "Desember"
60 ];
61
62 Date.dayNames = [
63    "Sondag",
64    "Maandag",
65    "Dinsdag",
66    "Woensdag",
67    "Donderdag",
68    "Vrydag",
69    "Saterdag"
70 ];
71
72 /* Ext components translations */
73 if(Ext.MessageBox){
74     Ext.MessageBox.buttonText = {
75        ok     : "OK",
76        cancel : "Kanselleer",
77        yes    : "Ja",
78        no     : "Nee"
79     };
80 }
81
82 if(Ext.util.Format){
83     Ext.util.Format.date = function(v, format){
84        if(!v) return "";
85        if(!(v instanceof Date)) v = new Date(Date.parse(v));
86        return v.dateFormat(format || "d-m-y");
87     };
88 }
89
90 if(Ext.DatePicker){
91     Ext.apply(Ext.DatePicker.prototype, {
92        todayText         : "Vandag",
93        minText           : "Hierdie datum is vroĆ«r as die minimum datum",
94        maxText           : "Hierdie dataum is later as die maximum datum",
95        disabledDaysText  : "",
96        disabledDatesText : "",
97        monthNames        : Date.monthNames,
98        dayNames          : Date.dayNames,
99        nextText          : 'Volgende Maand (Beheer+Regs)',
100        prevText          : 'Vorige Maand (Beheer+Links)',
101        monthYearText     : "Kies 'n maand (Beheer+Op/Af volgende/vorige jaar)",
102        todayTip          : "{0} (Spasie)",
103        format            : "d-m-y",
104        startDay          : 0
105     });
106 }
107
108 if(Ext.PagingToolbar){
109     Ext.apply(Ext.PagingToolbar.prototype, {
110        beforePageText : "Bladsy",
111        afterPageText  : "van {0}",
112        firstText      : "Eerste Bladsy",
113        prevText       : "Vorige Bladsy",
114        nextText       : "Volgende Bladsy",
115        lastText       : "Laatste Bladsy",
116        refreshText    : "Verfris",
117        displayMsg     : "Wys {0} - {1} van {2}",
118        emptyMsg       : 'Geen data om te wys nie'
119     });
120 }
121
122 if(Ext.form.TextField){
123     Ext.apply(Ext.form.TextField.prototype, {
124        minLengthText : "Die minimum lengte van die veld is {0}",
125        maxLengthText : "Die maximum lengte van die veld is {0}",
126        blankText     : "Die veld is verpligtend",
127        regexText     : "",
128        emptyText     : null
129     });
130 }
131
132 if(Ext.form.NumberField){
133     Ext.apply(Ext.form.NumberField.prototype, {
134        minText : "Die minimum waarde vir die veld is {0}",
135        maxText : "Die maximum waarde vir die veld is {0}",
136        nanText : "{0} is nie 'n geldige waarde nie"
137     });
138 }
139
140 if(Ext.form.DateField){
141     Ext.apply(Ext.form.DateField.prototype, {
142        disabledDaysText  : "Afgeskakel",
143        disabledDatesText : "Afgeskakel",
144        minText           : "Die datum in hierdie veld moet na {0} wees",
145        maxText           : "Die datum in hierdie veld moet voor {0} wees",
146        invalidText       : "{0} is nie 'n geldige datum nie - datumformaat is {1}",
147        format            : "d/m/y",
148        altFormats        : "d/m/Y|d-m-y|d-m-Y|d/m|d-m|dm|dmy|dmY|d|Y-m-d"
149     });
150 }
151
152 if(Ext.form.ComboBox){
153     Ext.apply(Ext.form.ComboBox.prototype, {
154        loadingText       : "Besig om te laai...",
155        valueNotFoundText : undefined
156     });
157 }
158
159 if(Ext.form.VTypes){
160     Ext.apply(Ext.form.VTypes, {
161        emailText    : "Hierdie veld moet 'n e-pos adres wees met die formaat 'gebruiker@domein.za'",
162        urlText      : "Hierdie veld moet 'n URL wees me die formaat 'http:/'+'/www.domein.za'",
163        alphaText    : 'Die veld mag alleenlik letters en _ bevat',
164        alphanumText : 'Die veld mag alleenlik letters, syfers en _ bevat'
165     });
166 }
167
168 if(Ext.grid.GridView){
169     Ext.apply(Ext.grid.GridView.prototype, {
170        sortAscText  : "Sorteer Oplopend",
171        sortDescText : "Sorteer Aflopend",
172        lockText     : "Vries Kolom",
173        unlockText   : "Ontvries Kolom",
174        columnsText  : "Kolomme"
175     });
176 }
177
178 if(Ext.grid.PropertyColumnModel){
179     Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
180        nameText   : "Naam",
181        valueText  : "Waarde",
182        dateFormat : "Y-m-j"
183     });
184 }
185
186 if(Ext.layout.BorderLayout && Ext.layout.BorderLayout.SplitRegion){
187     Ext.apply(Ext.layout.BorderLayout.SplitRegion.prototype, {
188        splitTip            : "Trek om grootte aan te pas.",
189        collapsibleSplitTip : "Trek om grootte aan te pas. Dubbel-klik om weg te steek."
190     });
191 }</pre>
192 </body>
193 </html>