This section describes the built-in function:
ng:translation(resource, key, locale,fallback_value)
The function can be used, if you e.g. want to create a multi-language template. The function refers to one or more translate files. Another way to use translate files is in the translation element in the designer. Details of translations are covered in the description of the translation element. The rules for identifying the value to return is explained in the section, Which value is returned.
Advantages of Using ng:translation() vs. the Translate Element in the Designer
You can use the ng:translate built-in function in the workflow components, where the translation element cannot be used.
You can use the ng:translate function in xpath expressions and even assign the result of the ng:translate function to variables and workflow variables.
This is the path to the main translate file from the translation directory (without the extension).
Example: If you have the following translate files:
/Demo/translate
This is the key for the lookup in the translation files.
The language/locale, that you want to use.
If used, the function will return the fallback value if:
The translation file is not found.
The specified key is not found, and no *OTHERWISE* key is specified in the root translation file.
*OTHERWISE*
/Demo/translate_da_DK.properties
ng:translation('/Demo/translate','AMOUNT','da_DK')
/Demo/translate.properties
ng:translation('/Demo/translate','AMOUNT','')
ng:translation('/Demo/NotFound','AMOUNT','','')
You can use a translation file as a user friendly way to configure the way that InterFormNG2 works e.g. to configure the preferred output per customer or per customer groups.
If you e.g. have setup the root/default translate file like so:
Then you will get the value back, **Translation key not found**, if there was no matching key.
So you could setup a select..when like below to branch out depending on if the key was found or not:
Alternatively you can build it all into a single text element with a condition like so:
if (
ng:translation('/Demo/translate', $key, '') = '**Translation key not found**'
)
then
'No matching key could be found'
else
ng:translation('/Demo/translate', $key, '')
Or of course the other way around:
if (
ng:translation('/Demo/translate', $key, '') != '**Translation key not found**'
)
then
ng:translation('/Demo/translate', $key, '')
else
'No matching key could be found'
In the example above the text 'No matching key could be found' will be printed out, if the variable, key does not contain a key, that is found in the translation file. If there is a match then the value is printed out.