Programming Reference Manual
 
Syntax
 
Trans[$](sNative$ [, param[, ...]])
 
Description
Return a translated string, using TRADIUM's internal translation database, optionally added with one or more variable parameters. To embed variables in sNative , use the %s literal for each successive param.
 
If no translation could be done, because the string has not yet been translated, the string will be added to a list of literals that eventually will be sent to the supportdesk of KeeminK Design, to be translated. In that case, the native string will return, with replaced parameters.
 
Parameter
Description
sNative$ 
The string that needs to be translated
Param(s)
One of more parameters to replace %s literals in success.
See Also
Example
 
Sub Main
 
         Debug.Print Trans$("Nieuw %s voor %s", "ABC", "123")  'New ABC before 123
 
End Sub