Hello, everybody,
on my multilanguage project the standard SAVE/RESET buttons on the AddPage work correctly in the default language German (SAVE=Speichern). When you switch to English, however, the SAVE button remains as "Speichern".
When you look at the HTML it looks like this:
[codebox]<INPUT class=button id=submit1 type=submit value=Speichern name=submit1>
<input class=button type=reset value="{mlang_message tag="RESET"}"> <input type=hidden name="a" value="added">[/codebox]
The problem is that the value of the first button is hardcoded in German, not with a mlang_message tag.
When you change the relevant code to
[codebox]value="{mlang_message tag="SAVE"}" [/codebox]
and rebuild the project, it works fine. But after the next build it goes back to the above described error.
What must I do to correct this?
Thank you in advance,
Wilfried