Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

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}} Description'
SET @labelDK = N'{languageId, select, 1 {Dansk} 3 {Engelsk}} 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}} Description'
SET@labelDK=N'{languageId, select, 1 {Dansk} 2 {Tysk} 3 {Engelsk}} Beskrivelse'
The same applies for the titel label.
  • No labels