3

Is there any way to change the message in downloading page?

At the place of "Downloading..." I want to include the file name like "Downloading exe".

Martin Prikryl
  • 188,800
  • 56
  • 490
  • 992

1 Answers1

3

To change Inno Download Plugin messages, use IDP_xxx custom messages.

Particularly for the "Downloading..." message, change the IDP_Downloading:

[CustomMessages]
IDP_Downloading=Downloading...

For other messages, look for {cm: string in the idp.iss.

Martin Prikryl
  • 188,800
  • 56
  • 490
  • 992
  • 1
    Note that some of the default message files have incomplete translations. I put some updated files on the IDP bitbucket repository in the Issues section but you have to adjust the language identifiers. – Andrew Truckle Jun 26 '20 at 04:30