mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-17 19:19:19 +02:00
IDE: fixed text, FPC 2.4 is not new
git-svn-id: trunk@56080 -
This commit is contained in:
parent
08c246a342
commit
6e4539b4b4
BIN
ide/lazarus.res
BIN
ide/lazarus.res
Binary file not shown.
@ -1024,8 +1024,8 @@ resourcestring
|
|||||||
lisStopTheDebugging = 'Stop the debugging?';
|
lisStopTheDebugging = 'Stop the debugging?';
|
||||||
lisCannotFindLazarusStarter = 'Cannot find Lazarus starter:%s%s';
|
lisCannotFindLazarusStarter = 'Cannot find Lazarus starter:%s%s';
|
||||||
lisFPCTooOld = 'FPC too old';
|
lisFPCTooOld = 'FPC too old';
|
||||||
lisTheProjectUsesTheNewFPCResourcesWhichRequiresAtLea = 'The project uses '
|
lisTheProjectUsesFPCResourcesWhichRequireAtLeast = 'The project uses '
|
||||||
+'the new FPC resources, which requires at least FPC 2.4';
|
+'FPC resources, which require at least FPC 2.4';
|
||||||
lisCreateDirectory = 'Create directory?';
|
lisCreateDirectory = 'Create directory?';
|
||||||
lisTheOutputDirectoryIsMissing = 'The output directory "%s" is missing.';
|
lisTheOutputDirectoryIsMissing = 'The output directory "%s" is missing.';
|
||||||
lisCreateIt = 'Create it';
|
lisCreateIt = 'Create it';
|
||||||
|
@ -6631,7 +6631,7 @@ begin
|
|||||||
ExtractFilePath(Project1.MainFilename),FPCVersion,FPCRelease,FPCPatch);
|
ExtractFilePath(Project1.MainFilename),FPCVersion,FPCRelease,FPCPatch);
|
||||||
if (FPCVersion=2) and (FPCRelease<4) then begin
|
if (FPCVersion=2) and (FPCRelease<4) then begin
|
||||||
IDEMessageDialog(lisFPCTooOld,
|
IDEMessageDialog(lisFPCTooOld,
|
||||||
lisTheProjectUsesTheNewFPCResourcesWhichRequiresAtLea,
|
lisTheProjectUsesFPCResourcesWhichRequireAtLeast,
|
||||||
mtError,[mbCancel]);
|
mtError,[mbCancel]);
|
||||||
exit(mrCancel);
|
exit(mrCancel);
|
||||||
end;
|
end;
|
||||||
|
Loading…
Reference in New Issue
Block a user