diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2014-11-02 11:19:56 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2014-11-02 11:19:56 +0000 |
commit | 05de21be73940c2f058633e5e7866e6c5f3b3e2e (patch) | |
tree | 4d1ec0be52e0f1e452fa792f6208a7e28deec2c1 /tools/installer_ng | |
parent | 4fb42b711df5d8a9986d9587d7a1edc72f13eb0c (diff) |
script fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@10900 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'tools/installer_ng')
-rw-r--r-- | tools/installer_ng/MirandaNG.iss | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/installer_ng/MirandaNG.iss b/tools/installer_ng/MirandaNG.iss index 8cd3fa7111..810d79bba8 100644 --- a/tools/installer_ng/MirandaNG.iss +++ b/tools/installer_ng/MirandaNG.iss @@ -900,15 +900,15 @@ begin if CurPageID = wpSelectComponents then
begin
if ActiveLanguage = 'en' then
- WizardForm.ComponentsList.Checked[26]:= True
+ WizardForm.ComponentsList.Checked[25]:= True
else if ActiveLanguage = 'ru' then
- WizardForm.ComponentsList.Checked[22]:= True
+ WizardForm.ComponentsList.Checked[21]:= True
else if ActiveLanguage = 'cz' then
- WizardForm.ComponentsList.Checked[23]:= True
+ WizardForm.ComponentsList.Checked[22]:= True
else if ActiveLanguage = 'pl' then
- WizardForm.ComponentsList.Checked[24]:= True
+ WizardForm.ComponentsList.Checked[23]:= True
else if ActiveLanguage = 'de' then
- WizardForm.ComponentsList.Checked[25]:= True;
+ WizardForm.ComponentsList.Checked[24]:= True;
end;
end;
|