IDE: fixed text, FPC 2.4 is not new

git-svn-id: trunk@56080 -
This commit is contained in:
mattias 2017-10-16 12:38:13 +00:00
parent 08c246a342
commit 6e4539b4b4
3 changed files with 3 additions and 3 deletions

Binary file not shown.

View File

@ -1024,8 +1024,8 @@ resourcestring
lisStopTheDebugging = 'Stop the debugging?';
lisCannotFindLazarusStarter = 'Cannot find Lazarus starter:%s%s';
lisFPCTooOld = 'FPC too old';
lisTheProjectUsesTheNewFPCResourcesWhichRequiresAtLea = 'The project uses '
+'the new FPC resources, which requires at least FPC 2.4';
lisTheProjectUsesFPCResourcesWhichRequireAtLeast = 'The project uses '
+'FPC resources, which require at least FPC 2.4';
lisCreateDirectory = 'Create directory?';
lisTheOutputDirectoryIsMissing = 'The output directory "%s" is missing.';
lisCreateIt = 'Create it';

View File

@ -6631,7 +6631,7 @@ begin
ExtractFilePath(Project1.MainFilename),FPCVersion,FPCRelease,FPCPatch);
if (FPCVersion=2) and (FPCRelease<4) then begin
IDEMessageDialog(lisFPCTooOld,
lisTheProjectUsesTheNewFPCResourcesWhichRequiresAtLea,
lisTheProjectUsesFPCResourcesWhichRequireAtLeast,
mtError,[mbCancel]);
exit(mrCancel);
end;