Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Version published after converting to the new editor

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

...

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
EXECUTEUpdateLanguageConstant@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'

...