Upgrade to ExtJS 4.0.7 - Released 10/19/2011
[extjs.git] / examples / locale / dutch-form.html
1 <!--<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">-->
2 <html lang="nl">
3 <head>
4     <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
5     <title>Dutch Form</title>
6     <!-- Ext -->
7     <link rel="stylesheet" type="text/css" href="../../resources/css/ext-all.css" />
8     <script type="text/javascript" src="../../bootstrap.js"></script>
9     
10     <!-- Example  -->
11     <link rel="stylesheet" type="text/css" href="../shared/example.css" />
12     <script type="text/javascript" src="../shared/examples.js"></script>
13     
14     <script type="text/javascript" src="../../locale/ext-lang-nl.js"></script>
15
16     <script type="text/javascript" src="dutch-provinces.js"></script>
17     <script type="text/javascript" src="ContactForm.js"></script>
18     <script type="text/javascript" src="ContactForm-nl.js"></script>
19 </head>
20 <body>
21
22 <h1>Localization with Ext</h1>
23 <p>
24     This demonstrates a dutch location of Ext using the form component. It includes the localization
25     file "ext-lang-nl.js" from the source/locale folder of the Ext download. By placing all language 
26     text such as field labels and button labels and date formats in the prototype, we can easily 
27     localize our components by overriding these values. View 
28     <a href="ContactForm.js" target="_blank">ContactForm.js</a>and 
29     <a href="ContactForm-nl.js" target="_blank">ContactForm-nl.js</a> to learn how Ext applies 
30     internationalization to JavaScript.
31 </p>
32
33 <p>The js is not minified so it is readable. See <a href="ContactForm.js">ContactForm.js</a> and <a href="ContactForm-nl.js">ContactForm-nl.js</a>.</p>
34
35 </body>
36 </html>