Don't translate program name directive in Pascal file template

Pascal code only accepts an identifier in the program name directive,
but {untitled} wildcard gets replaced with a translated string that may
not be a valid Pascal identifier.  Moreover, the directive being part
of the source of the program it's good practice for it to be in English
anyway.

Closes #3602314.
This commit is contained in:
Colomban Wendling 2013-03-08 18:32:47 +01:00
parent e5e697e5c3
commit 771934ae29

View File

@ -1,6 +1,6 @@
{fileheader}
program {untitled};
program untitled;
uses crt;
var i : byte;