Translation:add gettext function, improve extract_text

Add everywhere the missing gettext function and improve
the script for extracting string
This commit is contained in:
Dany De Bontridder 2014-02-14 23:42:28 +01:00
parent b87f987c73
commit 38311bd212
97 changed files with 13993 additions and 15415 deletions

View file

@ -30,19 +30,19 @@
?>
<table>
<tr>
<td>Nom</td>
<td><?php echo _("Nom")?></td>
<td><?php echo $name->input();?></td>
</tr>
<tr>
<td>Description</td>
<td><?php echo _("Description")?></td>
<td><?php echo $desc->input()?></td>
</tr>
<tr>
<td>Avec Calculatrice</td>
<td><?php echo _("Avec Calculatrice")?></td>
<td><?php echo $with_calc->input()?></td>
</tr>
<tr>
<td>Avec Direct Form</td>
<td><?php echo _("Avec Direct Form")?></td>
<td><?php echo $with_direct_form->input()?></td>
</tr>
</table>