Is there a way to configure HM7 to make all variables (existing and newly created ones) translate=false?
Thank you

Moderators: Alexander Halser, Tim Green
You can't do this from within Help+Manual itself. You need to use the uncompressed HMXP format and then edit the .hmxp file in a text editor like Notepad++. Close the project in Help+Manual before doing this! You will find the list of variable definitions in the lower portion of the file. The variable defintions look like this:Is there a way to configure HM7 to make all variables (existing and newly created ones) translate=false?
Code: Select all
<variable id="BTNTEXT_HOMETIP" type="text" translate="true">Go to top topic</variable>
<variable id="BTNTEXT_LTABLE" type="text" translate="true">Tap to View Table</variable>
<variable id="BTNTEXT_NEXT" type="text" translate="true">Next</variable>
<variable id="BTNTEXT_NEXTNO" type="text" translate="true">This is the last topic</variable>
Code: Select all
<variable id="BTNTEXT_HOMETIP" type="text">Go to top topic</variable>
<variable id="BTNTEXT_LTABLE" type="text">Tap to View Table</variable>
<variable id="BTNTEXT_NEXT" type="text">Next</variable>
<variable id="BTNTEXT_NEXTNO" type="text">This is the last topic</variable>