Inno Setup-如何在Pascal脚本中更改语言?

时间:2018-12-03 04:37:37

标签: inno-setup

您好,我要在用户在设置中选择英语时更改英语

(“ Apoya a los desarrolladores de software。'+ 'Cômpralo的si gusta este juego。请勿浏览和推荐WWW.JUEGOSPARAWINDOWS.COM,请访问Web del entretenimiento。哥伦比亚比亚维森西奥市的PC上的GameSoft游戏,“代码是这样的:

SoundCtrlButton := TNewButton.Create(WizardForm);
SoundCtrlButton.Parent := WizardForm;
SoundCtrlButton.Left := 10;
SoundCtrlButton.Top := WizardForm.ClientHeight - 
  SoundCtrlButton.Height - 8;
SoundCtrlButton.Width := 105;
SoundCtrlButton.Caption :=
  ExpandConstant('{cm:SoundCtrlButtonCaptionSoundOff}');
SoundCtrlButton.OnClick := @SoundCtrlButtonClick;
MessageBoxTimeout(WizardForm.Handle, 'Apoya a los desarrolladores de software. ' +
'Si te gusta este juego, CÓMPRALO. No olvides visitar y recomendar WWW.JUEGOSPARAWINDOWS.COM tu sitio web del entretenimiento. GameSoft lo mejor en juegos y programas para PC, Villavicencio, Colombia', 'Setup', MB_OK or MB_ICONINFORMATION, 0, 0);

end;

0 个答案:

没有答案