altocompta/include/template/forecast_cat.php
Dany De Bontridder 38311bd212 Translation:add gettext function, improve extract_text
Add everywhere the missing gettext function and improve
the script for extracting string
2014-02-14 23:42:28 +01:00

30 lines
No EOL
578 B
PHP

<?php
//This file is part of NOALYSS and is under GPL
//see licence.txt
?><fieldset>
<legend>
<?php echo $str_action;?></legend>
<?php echo $str_name;?>
<?php echo _("Date de début")?> <?php echo $str_start_date?>
<?php echo _("Date de fin")?> <?php echo $str_end_date ?>
<h2> <?php echo _('Catégories');?></h2>
<table>
<tr>
<th><?php echo _('Ordre');?></th>
<th><?php echo _('Nom');?></th>
</tr>
<?php for ($i=0;$i<count($aCat);$i++):?>
<tr>
<td>
<?php echo $aCat[$i]['order'];?>
</td>
<td>
<?php echo $aCat[$i]['name'];?>
</td>
</tr>
<?php endfor;?>
</table>
</fieldset>