ng:translation

ng:translation

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.

Function Parameters

Resource

  • This is the path to the main translate file from the translation directory (without the extension).

  • Example: If you have the following translate files:

          NG2BuiltInTranslate0001

 
You need to refer to the translate.properties file as:
/Demo/translate
as the translation files are placed in the Demo directory.

Key

  • This is the key for the lookup in the translation files.

Locale

  • The language/locale, that you want to use.

If this parameter is null or an empty string and the next parameter, Fallback_value is not defined, then the locale setting from the template properties is used.
That can be helpful if you are using this function a lot in your template as you can then simply change the local once and it will have effect on all ng:translation functions used in the template.
This simulates the functionality of the translation element and the translation option on the text element.
The alternative is to use a common Xpath function for all these functions - you can e.g. define a variable with the locale and refer to this variable.

Fallback_value (Optional Parameter)

  • 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.

Notes
Please notice, that the expression might not be executed in the result view in the designer. You need to preview to see the final result.

Handling Missing Keys in Translation Files

The ng:translation function will fail with an error if the key is not found in the translation file.
To prevent this, you can insert the special key named:
*OTHERWISE*
in the root/default translation file to specify a default value when no match is found.

Examples

1) Looking Up a Key in a Specific Translation File

This function refers to the translation file:
/Demo/translate_da_DK.properties
and looks up the key "AMOUNT":
ng:translation('/Demo/translate','AMOUNT','da_DK')

2) Looking Up a Key Using the Default Translation File

This function refers to:
/Demo/translate.properties
and looks up the key "AMOUNT":
ng:translation('/Demo/translate','AMOUNT','')

3) Returning a Fallback Value if the Translation File is Not Found

This function returns null since the translation file does not exist:
ng:translation('/Demo/NotFound','AMOUNT','','')

Example for the *OTHERWISE* option

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.

For setups like that you might also need to be able to handle the situation, where no matching key is found.

If you e.g. have setup the root/default translate file like so:

  NG2TranslateExample01

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:

  NG2TranslateExample02 

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.


    • Related Articles

    • Translation element

      A translation can be inserted in the designer either by clicking this icon: - or by referring to a translation in a text element. A similar XPath function is the built-in function, ng:translate. The translations can be used if you e.g. want to create ...
    • ng:resourceExist

      This function checks, if a resource in InterFormNG2 exists or not. The function returns a boolean: true or false. The ng:resourceExist Xpath function has this format: ng:resourceExist(resource,path) where: resource Resource is the type of resource in ...
    • ng:dateTimeFormat

      This section desribes the built-in function ng:dateTimeFormat(xmlDateTime, dateFormat, part, locale, customErrorMessage) The function converts an XML date and time (timestamp) into the format of your choice. An alternative to this function is ...
    • ng:dateFormat

      This section explains the built-in XPath function: ng:dateFormat(dateString, inputPattern, outputPattern, locale, customErrorMessage) This function returns a formatted date string, formatted using the Java SimpleDateFormat function (like InterFormNG ...
    • ng:numberFormat

      This section describes the built-in function: ng:numberFormat(number, locale, mask, customErrorMessage) The function can be used for presenting/formatting a number as you want. Important note regarding rounding of numbers in InterFormNG2 versions ...