TranslateApplicationString

Returns the translation of the string entered as a parameter, using the application (software) dictionary and referring to the current language in Qubes.

Syntax

TranslateApplicationString(element)
element = the character string you want to translate

Remarks

If the element cannot be found in the application dictionary, the string will be added to it.
If the element is preceded by a ! (exclamation point), then the character string will not be translated, and the function will return the string without the exclamation point.

If the string of characters needs to be translated by the configuration dictionary, use the TranslateConfigurationString function.

Examples

If you are using a French translation dictionary, in which the character string File is translated by Fichier.

TranslateApplicationString("File") = "Fichier"
TranslateApplicationString("!File") = "File"

Classification

Qubes