Bug 12658: Wording of link text and translatability inside JavaScript
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / installer / step1.tt
1 [% INCLUDE 'doc-head-open.inc' %]
2 <title>Koha &rsaquo; Web installer &rsaquo; Step 1</title>
3 [% INCLUDE 'installer-doc-head-close.inc' %]
4 <div>
5 <h1 id="logo"><img alt="Koha" src="[% interface %]/[% theme %]/img/koha.org-logo.gif" /> Web installer &rsaquo; Step 1</h1>
6 [% UNLESS ( language ) %]
7 <p>You are about to install Koha.</p>
8
9 <p>Please pick your language from the following list. If your language is not
10 listed, please inform your systems administrator.</p>
11 <form name="language" method="post">
12 <select name="language">
13 [% IF ( installer_languages_loop ) %]
14         [% FOREACH installer_languages_loo IN installer_languages_loop %]
15             [% IF ( installer_languages_loo.plural ) %]
16             <optgroup label="[% installer_languages_loo.language %]">
17             [% FOREACH sublanguages_loo IN installer_languages_loo.sublanguages_loop %]
18                 <option value="[% sublanguages_loo.rfc4646_subtag %]">[% IF ( sublanguages_loo.native_description ) %][% sublanguages_loo.native_description %][% ELSE %][% sublanguages_loo.rfc4646_subtag %][% END %]</option>
19             [% END %]
20             </optgroup>
21             [% ELSE %]
22                 <option value="[% installer_languages_loo.rfc4646_subtag %]">[% IF ( installer_languages_loo.native_description ) %][% installer_languages_loo.native_description %][% ELSE %][% installer_languages_loo.rfc4646_subtag %][% END %]</option>
23             [% END %]
24         [% END %]
25 [% END %]
26 </select>
27 </p>
28
29 <p> Click 'Next' to continue <input value="Next &gt;&gt;" type="submit" /></p>
30 </form>
31 [% END %]
32 [% IF ( language ) %]
33   [% UNLESS ( checkmodule ) %]
34   [% IF ( missing_modules ) %]
35   <p>Some Perl modules are missing. Modules in red <b>must</b> be installed before you may continue.<br />
36   <ul>
37   [% FOREACH missing_module IN missing_modules %]
38     [% IF ( missing_module.require ) %]
39     <li style="color:#FF0000;font-weight:bold;">[% missing_module.name %]
40     [% ELSE %]
41     <li>[% missing_module.name %]
42     [% END %]
43       <br /> Version: [% missing_module.version %]
44       <br /> Usage: [% missing_module.usage %]
45     </li>
46   [% END %]
47   [% END %]
48   [% IF ( problems ) %]
49   <p>I encountered some problems.</p>
50    <ul>
51     [% IF ( perlversion ) %]
52     <li>Your Perl version seems to be obsolete.
53       Please upgrade to a newer version of Perl (at least Version 5.10).</li>
54     [% END %]
55    </ul>
56   [% END %]
57   [% END %]
58 <form name="checkmodules" action="install.pl">
59 [% IF ( checkmodule ) %]
60 <input type="hidden" name="step" value="2" />
61 <p> All dependencies installed.</p>
62 <p>Please click 'Next' to continue <input value="Next &gt;&gt;" type="submit" /></p>
63 [% ELSE %]
64 <input type="hidden" name="step" value="1" />
65 <p>Click to recheck dependencies <input value="Recheck" type="submit" /></p>
66 [% END %]
67 </form>
68 [% END %]
69 [% INCLUDE 'intranet-bottom.inc' %]