MM5.6 Adding a new language

When adding a new system language the following labels must be edited:

  • SETTINGS_SPLASHSCREEN_SETTINGS_TITLE
  • SETTINGS_SPLASHSCREEN_SETTINGS_DESCRIPTION

The default value of the description label is:

SET @const = N'SETTINGS_SPLASHSCREEN_SETTINGS_DESCRIPTION'
SET @labelEN = N'{languageId, select, 1 {Danish } 3 {English } other {}}Description'
SET @labelDK = N'{languageId, select, 1 {Dansk } 3 {Engelsk } other {}}Beskrivelse'
SET @fID = 50028
EXECUTE UpdateLanguageConstant @const, @labelDK, @labelEN, @labelEN, @labelEN, @fId, @versionid, @changesetid


When adding a new language, the danish and english labels must be changed appropriately. If german is added as a new language, the labels would have to be changed in the following way:

SET @labelEN = N'{languageId, select, 1 {Danish } 2 {German } 3 {English } other {}}Description'
SET @labelDK = N'{languageId, select, 1 {Dansk } 2 {Tysk } 3 {Engelsk } other {}}Beskrivelse'
The same applies for the title label.