diff --git a/src/platform/windows/setup/setup.iss.in b/src/platform/windows/setup/setup.iss.in index 7fdda053e..157cca63e 100644 --- a/src/platform/windows/setup/setup.iss.in +++ b/src/platform/windows/setup/setup.iss.in @@ -75,6 +75,7 @@ Name: "korean"; MessagesFile: "compiler:Languages\Korean.isl" Name: "dutch"; MessagesFile: "compiler:Languages\Dutch.isl" Name: "brazilianportuguese"; MessagesFile: "compiler:Languages\BrazilianPortuguese.isl" Name: "russian"; MessagesFile: "compiler:Languages\Russian.isl" +Name: "swedish"; MessagesFile: "compiler:Languages\Swedish.isl" Name: "turkish"; MessagesFile: "compiler:Languages\Turkish.isl" Name: "chinesesimplified"; MessagesFile: "compiler:Languages\ChineseSimplified.isl" @@ -118,6 +119,7 @@ korean.FileAssoc=Register file associations dutch.FileAssoc=Register file associations brazilianportuguese.FileAssoc=Register file associations russian.FileAssoc=Register file associations +swedish.FileAssoc=Registrera filassociationer turkish.FileAssoc=Register file associations chinesesimplified.FileAssoc=Register file associations @@ -153,6 +155,7 @@ procedure InitializeWizard(); if ExpandConstant('{language}') = 'dutch' then noReleaseWarning := 'You are about to install a development build of {#AppName}.' + #13#10#13#10 + 'Development builds may contain bugs that are not yet discovered. Please report any issues you can find to the GitHub project page.'; if ExpandConstant('{language}') = 'brazilianportuguese' then noReleaseWarning := 'You are about to install a development build of {#AppName}.' + #13#10#13#10 + 'Development builds may contain bugs that are not yet discovered. Please report any issues you can find to the GitHub project page.'; if ExpandConstant('{language}') = 'russian' then noReleaseWarning := 'You are about to install a development build of {#AppName}.' + #13#10#13#10 + 'Development builds may contain bugs that are not yet discovered. Please report any issues you can find to the GitHub project page.'; + if ExpandConstant('{language}') = 'swedish' then noReleaseWarning := 'Du är på väg att installera en utvecklingsversion av {#AppName}.' + #13#10#13#10 + 'Utvecklingsversioner kan innehålla buggar som ännu inte hittats. Rapportera alla problem som du hittar på projektsidan på GitHub.'; if ExpandConstant('{language}') = 'turkish' then noReleaseWarning := 'You are about to install a development build of {#AppName}.' + #13#10#13#10 + 'Development builds may contain bugs that are not yet discovered. Please report any issues you can find to the GitHub project page.'; if ExpandConstant('{language}') = 'chinesesimplified' then noReleaseWarning := 'You are about to install a development build of {#AppName}.' + #13#10#13#10 + 'Development builds may contain bugs that are not yet discovered. Please report any issues you can find to the GitHub project page.'; MsgBox(noReleaseWarning, mbInformation, MB_OK);