Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

There are a hook that allows a customer to override translations for a specific languages without altering the binary build. This feature is meant to allow a customer to enable a specific terminology to increase the user terminology recognition from other systems.
Custom text files can be created and uploaded as packages in Meridix containing lines in the format defined below, each of these files (packages) is then loaded and used as overrides to the build built in (compiled) translations.

...

Format:
"{langauge-code}";"{resourcepath}";"{key}";"{value}"

Info
Note that the delimiter needs to be semicolons ;

Example of file content:
"sv";"Login.aspx";"lbnLoginResource1.Text";"I want to log in"
"sv";"Login.aspx";"lbnLoginResource1.ToolTip";"I want to log in right now"

This would override the values for the Swedish translation for the login button on the login page.
Naming:
The packages of the type package_translation_overrides_text can be named to anything you prefer to keep the files structured. The package names is not used by the system.

...