Closed mprins closed 12 years ago
The submit button (https://github.com/garlik-gag/dokuwiki-plugin-odt2dw/blob/master/odt2dw/action.php#L50) only has French text (Envoyer) , it should have English (Upload) and Dutch (Versturen) as well.
Envoyer
Upload
Versturen
In the action.php script, I modified the line 30 and 50 like this: L30: global $ID, $lang; L50: <input type="submit" value="'.$lang['btn_upload'].'"/>
global $ID, $lang;
<input type="submit" value="'.$lang['btn_upload'].'"/>
It will work now.
I update the git tonight.
The submit button (https://github.com/garlik-gag/dokuwiki-plugin-odt2dw/blob/master/odt2dw/action.php#L50) only has French text (
Envoyer
) , it should have English (Upload
) and Dutch (Versturen
) as well.