- "2"><?php echo
- t
- ('Jirafeau is internationalised. Choose a specific langage or ' .
- 'choose Automatic (langage is provided by user\'s browser).');
- ?></td> </tr> <tr> <td class = "label"><label for = "select_lang"
- ><?php echo t('Choose the default language') . ':';
- ?></label></td>
- <td class = "field">
- <select name = "lang" id = "select_lang">
- <?php foreach ($languages_list as $key => $item)
- {
- echo '<option value="'.$key.'"'.($key ==
- $cfg['lang'] ? ' selected="selected"'
- : '').'>'.$item.'</option>'.NL;
- }
- ?></select>
- </td>
- </tr>
- <tr class = "nav">
- <td></td>
- <td class = "nav next"><input type = "submit" name = "next" value =
- "<?php echo t('Next step'); ?>" /></td> </tr> </table>
- </fieldset> </form> </div> <?php
-break;
-
-case 2:
- ?><h2><?php printf (t('Installation of Jirafeau') . ' - ' . t('step') .
- ' %d ' . t('out of') . ' %d', 2, 4);
- ?></h2> <div id = "install"> <form action =
- "<?php echo basename(__FILE__); ?>" method = "post"> <input type =
- "hidden" name = "jirafeau" value =
- "<?php echo JIRAFEAU_VERSION; ?>" /><input type = "hidden" name =
- "step" value = "2" /><fieldset> <legend><?php
- echo t('Administration password');
- ?></legend> <table> <tr> <td class = "info" colspan =
- "2"><?php echo
- t
- ('Jirafeau has an administration interface (through admin.php). ' .
- 'You can set a password to access the interface or leave it empty ' .
- 'to disable the interface.');