|
How can I customize the language used in custom installer pages? |
|
You can customize the language used in custom installer page messages using the
myapp_de.lng should be a text file with a format similar to this:
and myapp_en.lng:
and so on with the rest of custom language files. Then, you can for example create a
How do you parameterize the externalized string? Are there parameter arguments to the "msg" function?
(13 Feb, 11:29)
briedog
It is not possible to pass arguments to ${msg()} but if the external string contains variables, they will be resolved. So, if you have defined: database.title=Database ${name} You could use it as: <setinstallervariable name="name" value="foo"/> <showinfo text="${msg(database.title)}"/>
(13 Feb, 11:58)
juanjo ♦♦
|