mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-23 00:59:31 +02:00
IDE: added resourcestrings
git-svn-id: trunk@21423 -
This commit is contained in:
parent
d5a845d99d
commit
07f4f08699
@ -1050,6 +1050,7 @@ resourcestring
|
||||
lisAlways = 'Always';
|
||||
dlgAmbigWarn = 'Warn on compile';
|
||||
dlgIgnoreVerb = 'Ignore';
|
||||
lisAlwaysIgnore = 'Always ignore';
|
||||
// OI colors
|
||||
dlgBackColor = 'Background';
|
||||
dlgSubPropColor = 'SubProperties';
|
||||
@ -1688,6 +1689,10 @@ resourcestring
|
||||
+'abstract methods of the current class, because';
|
||||
lisCCOUnableToGetFileDate = 'Unable to get file date of %s.';
|
||||
lisCCOWarningCaption = 'Warning';
|
||||
lisTheProjectDoesNotUseTheLCLUnitInterfacesButItSeems = 'The project does '
|
||||
+'not use the LCL unit interfaces, but it seems it needs it.%sYou will '
|
||||
+'get strange linker errors if you use the LCL forms without interfaces.';
|
||||
lisAddUnitInterfaces = 'Add unit interfaces';
|
||||
lisCCODatesDiffer = 'The dates of the .ppu files of FPC'
|
||||
+' differ more than one hour.%s'
|
||||
+'This can mean, they are from two different installations.%s'
|
||||
|
@ -9500,11 +9500,10 @@ begin
|
||||
exit;
|
||||
// project uses lcl unit Forms, but not unit interfaces
|
||||
// this will result in strange linker error
|
||||
MsgResult:=IDEQuestionDialog('Warning',
|
||||
'The project does not use the LCL unit interfaces, but it seems it needs it.'#13
|
||||
+'You will get strange linker errors if you use the LCL forms without interfaces.'
|
||||
,mtWarning,[mrYes,'Add unit interfaces',mrNo,'Ignore',
|
||||
mrNoToAll,'Always ignore',mrCancel]);
|
||||
MsgResult:=IDEQuestionDialog(lisCCOWarningCaption,
|
||||
Format(lisTheProjectDoesNotUseTheLCLUnitInterfacesButItSeems, [#13])
|
||||
, mtWarning, [mrYes, lisAddUnitInterfaces, mrNo, dlgIgnoreVerb,
|
||||
mrNoToAll, lisAlwaysIgnore, mrCancel]);
|
||||
case MsgResult of
|
||||
mrNo: exit;
|
||||
mrNoToAll: begin Project1.SkipCheckLCLInterfaces:=true; exit; end;
|
||||
|
Loading…
Reference in New Issue
Block a user