Upgrade to ExtJS 3.0.0 - Released 07/06/2009
[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     <link rel="stylesheet" type="text/css" href="../../resources/css/ext-all.css" />
7
8     <!-- GC -->
9         <!-- LIBS -->
10         <script type="text/javascript" src="../../adapter/ext/ext-base.js"></script>
11         <!-- ENDLIBS -->
12
13     <script type="text/javascript" src="../../ext-all.js"></script>
14
15     <!-- include the locale file -->
16     <script type="text/javascript" src="../../source/locale/ext-lang-nl.js"></script>
17
18     <script type="text/javascript" src="dutch-provinces.js"></script>
19     <script type="text/javascript" src="ContactForm.js"></script>
20     <script type="text/javascript" src="ContactForm-nl.js"></script>
21     
22     <!-- Common Styles for the examples -->
23     <link rel="stylesheet" type="text/css" href="../shared/examples.css" />
24 </head>
25 <body>
26 <script type="text/javascript" src="../shared/examples.js"></script><!-- EXAMPLES -->
27 <h1>Localization with Ext</h1>
28 <p>
29     This demonstrates a dutch location of Ext using the form component. It includes the localization
30     file "ext-lang-nl.js" from the source/locale folder of the Ext download. By placing all language 
31     text such as field labels and button labels and date formats in the prototype, we can easily 
32     localize our components by overriding these values. View 
33     <a href="ContactForm.js" target="_blank">ContactForm.js</a>and 
34     <a href="ContactForm-nl.js" target="_blank">ContactForm-nl.js</a> to learn how Ext applies 
35     internationalization to JavaScript.
36 </p>
37
38 <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>
39
40 </body>
41 </html>