This commit is contained in:
João Moreno
2020-07-08 16:16:56 +02:00
parent 622b55ab2b
commit 8c8db45d5a
2 changed files with 2 additions and 11 deletions

View File

@@ -1308,11 +1308,7 @@ function createIslFile(originalFilePath: string, messages: Map<string>, language
if (line.length > 0) {
let firstChar = line.charAt(0);
if (firstChar === '[' || firstChar === ';') {
if (line === '; *** Inno Setup version 5.5.3+ English messages ***') {
content.push(`; *** Inno Setup version 5.5.3+ ${innoSetup.defaultInfo!.name} messages ***`);
} else {
content.push(line);
}
content.push(line);
} else {
let sections: string[] = line.split('=');
let key = sections[0];