Archive: section titles in MUI


section titles in MUI
Okay I'm trying to make a multi lingual installer.
I have most everything translating based on the language selected but I cant figure out how to get the section titles to use a variable. I've tried setting a variable based on the language but I just get the variable name for the section title and not what it should be.

ex.
Section Section3_Title Section3
Section $Section3_Title Section3
Section "$Section3_Title" Section3

all give this warning and result in the variable name not value being used.

1 warning:
unknown variable/constant "Section3_Title" detected, ignoring

and yes I am defining it with all my other language strings.


Use a LangString

LangString Section3_Title ${LANG_ENGLISH} "blah blah"

Section $(Section3_Title) Section3

-Stu


thanks. I had been defining a language string but didn't have the (). Its working now.