jQuery updated:
[mailer.git] / templates / de / html / install / install_selector.tpl
1 <div class="install_header">
2         <strong>: : : {--INSTALLER_MAIN_TITLE--} : : :</strong>
3 </div>
4
5 <div id="install_error" class="ajax_error">
6         <div class="ajax_error_title">
7                 <strong>{--INSTALLER_AJAX_ERROR_TITLE--}</strong>
8         </div>
9         <div class="ajax_error_close">
10                 <strong id="install_error_close" style="padding-left:1.5px;cursor:pointer">X</strong>
11         </div>
12         <div style="clear:both"></div>
13         <div class="ajax_error_content" id="install_error_content">
14                 <!-- Content will be inserted here by AJAX //-->
15         </div>
16 </div>
17
18 <div id="install_warning" class="ajax_warning">
19         <div class="ajax_warning_title">
20                 <strong>{--INSTALLER_AJAX_TEST_TITLE--}</strong>
21         </div>
22         <div class="ajax_warning_close">
23                 <strong id="install_warning_close" style="padding-left:1.5px;cursor:pointer">X</strong>
24         </div>
25         <div style="clear:both"></div>
26         <div class="ajax_warning_content" id="install_warning_content">
27                 <!-- Content will be inserted here by AJAX //-->
28         </div>
29 </div>
30
31 <div align="center" style="margin-bottom:10px">
32 <div class="install_content">
33         <div class="install_title">
34                 {--INSTALLER_SELECTOR_TITLE--}
35         </div>
36
37         <div class="para">
38                 Sie k&ouml;nnen jetzt zwischen zwei Installationsvarrianten
39                 entscheiden. Die erste ist eine moderne, interaktive und auf dem
40                 AJAX-Framework <a href="http://jquery.com" rel="external"
41                  target="_blank">jQuery</a> basierend. Die zweite ist mit jedem Browser
42                 kompatibel und funktioniert vollst&auml;ndig ohne JavaScript.
43         </div>
44
45         <div class="para">
46                 Ersteres k&ouml;nnen Sie nur verwenden, wenn auch Ihr Browser aktuelles
47                 JavaScript versteht, letzteres funktioniert auf jedem Browser. Ihr
48                 Browser wird nun auf AJAX-Kompatiblit&auml;t getestet. Sollte ein
49                 kleines Fenster nach 3 Sekunden erscheinen, funktioniert jquery bei
50                 Ihnen. Anderfalls sollten Sie die Standardversion ausw&auml;hlen.
51         </div>
52
53         <div align="center">
54                 <div style="float:left; width:38%">
55                         {%form,formMethodGet=install.php%}
56                                 <input type="hidden" name="installer" value="ajax" />
57                                 <input type="submit" id="ajax_installer" class="form_submit big disabled" disabled="disabled" value="Interaktive Version" />
58                         {%form_close%}
59                 </div>
60                 <div style="float:left; width:23%; text-align:center">
61                         <span id="counter">3</span> Sekunde(n)
62                 </div>
63                 <div style="float:left; width:38%">
64                         {%form,formMethodGet=install.php%}
65                                 <input type="hidden" name="installer" value="plain" />
66                                 <input type="submit" id="plain_installer" class="form_submit big" value="Kompatiblit&auml;tsmodus" />
67                         {%form_close%}
68                 </div>
69                 <div style="clear:both"></div>
70         </div>
71 </div>
72 </div>
73
74 <script type="text/javascript" src="{%url=js/ajax-loader.js%}"></script>
75 <script type="text/javascript">
76 <!--
77 // These scripts shall be loaded
78 var scripts = new Array();
79 scripts[0] = '{%url,js=js/ajax-common.js%}';
80 scripts[1] = '{%url,js=js/ajax-test.js%}';
81 scripts[2] = '{%jquery,js=ui%}';
82
83 // Do this only when all loaders are finished
84 if (loadScripts(scripts) == true) {
85         // Wait for loadScripts() finishing loading all scripts
86         $().ready(function () {
87                 // Warning window
88                 $("#install_warning").draggable({opacity: 0.85});
89
90                 // Error window
91                 $("#install_error").draggable({opacity: 0.85});
92         });
93 } // END - if
94
95 //-->
96 </script>