Update setup.iss.in with Swedish (#3367)

This commit is contained in:
Daniel Nylander 2024-12-12 11:35:14 +01:00 committed by GitHub
parent edaa27796b
commit 3c32fd867b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 0 deletions

View File

@ -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);