mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-15 00:59:21 +02:00
IDE, Initial Setup dialog: improved localization
git-svn-id: trunk@38121 -
This commit is contained in:
parent
e42bfb9668
commit
08c261482b
@ -1062,7 +1062,8 @@ begin
|
|||||||
if (GetDefaultSrcOSForTargetOS(GetCompiledTargetOS)='win') then begin
|
if (GetDefaultSrcOSForTargetOS(GetCompiledTargetOS)='win') then begin
|
||||||
// under Windows, make.exe is in the same directory as fpc.exe
|
// under Windows, make.exe is in the same directory as fpc.exe
|
||||||
if not FileExistsCached(ExtractFilePath(AFilename)+'fpc.exe') then begin
|
if not FileExistsCached(ExtractFilePath(AFilename)+'fpc.exe') then begin
|
||||||
Note:='There is no fpc.exe in the directory of '+ExtractFilename(AFilename)+'. Usually the make executable is installed together with the FPC compiler.';
|
Note:=Format(lisThereIsNoFpcExeInTheDirectoryOfUsuallyTheMakeExecu, [
|
||||||
|
ExtractFilename(AFilename)]);
|
||||||
Result:=sddqIncomplete;
|
Result:=sddqIncomplete;
|
||||||
exit;
|
exit;
|
||||||
end;
|
end;
|
||||||
|
@ -5464,6 +5464,9 @@ resourcestring
|
|||||||
lisFPCSources = 'FPC sources';
|
lisFPCSources = 'FPC sources';
|
||||||
lisConfigureLazarusIDE = 'Configure Lazarus IDE';
|
lisConfigureLazarusIDE = 'Configure Lazarus IDE';
|
||||||
lisFileIsNotAnExecutable = 'File is not an executable';
|
lisFileIsNotAnExecutable = 'File is not an executable';
|
||||||
|
lisThereIsNoFpcExeInTheDirectoryOfUsuallyTheMakeExecu = 'There is no fpc.exe'
|
||||||
|
+' in the directory of %s. Usually the make executable is installed '
|
||||||
|
+'together with the FPC compiler.';
|
||||||
lisUnusualCompilerFileNameUsuallyItStartsWithFpcPpcOr = 'Unusual compiler '
|
lisUnusualCompilerFileNameUsuallyItStartsWithFpcPpcOr = 'Unusual compiler '
|
||||||
+'file name. Usually it starts with fpc, ppc or ppcross.';
|
+'file name. Usually it starts with fpc, ppc or ppcross.';
|
||||||
lisFpcCfgIsMissing = 'fpc.cfg is missing.';
|
lisFpcCfgIsMissing = 'fpc.cfg is missing.';
|
||||||
|
Loading…
Reference in New Issue
Block a user