This topic is locked

{mlang_message tag='SAVE'} on AddPage does not work

8/21/2007 10:47:42 AM
PHPRunner General questions
W
wrjost author

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

Sergey Kornilov admin 8/21/2007

Wilfried,
thank you, I'm looking into this.