Quote:
Originally Posted by YvaN
I found it! Putting buttons in English, it works now... I don't understand why, but it works !
Someone has a solution to bring them into french?
|
Maybe I've the trick, try this:
In template:
PHP Code:
<input type="submit" value="Envoyer" name="submit" style="font-family: Verdana; font-size: 10pt" class="button" />
<input type="submit" value="Pr?visualiser" name="submit" style="font-family: Verdana; font-size: 10pt" class="button" />
<input type="reset" value="Annuler" name="reset" style="font-family: Verdana; font-size: 10pt" class="button" />
And then in the plugin script find this:
PHP Code:
if ($_POST['submit'] == 'Submit')
and change to...
PHP Code:
if ($_POST['submit'] == 'Envoyer')
I hope that it works for you