IDE: fixed typos, removed unused and duplicate strings

git-svn-id: trunk@45871 -
This commit is contained in:
maxim 2014-07-14 22:58:16 +00:00
parent 098d534471
commit 93ded208bc
3 changed files with 8 additions and 16 deletions

View File

@ -3629,11 +3629,6 @@ resourcestring
lisKMOpenPackageFile = 'Open package file';
lisCPOpenPackage = 'Open Package %s';
lisFilterAllMessagesOfType = 'Filter all messages of type %s';
lisExecutable3 = 'Executable: ';
lisCurrentDirectory2 = 'CurrentDirectory: ';
lisDesktop = 'Desktop: ';
lisExecutable2 = 'Executable: %s';
lisCurrentDirectory = 'CurrentDirectory: %s';
lisCPOpenUnit = 'Open Unit %s';
lisCompPalOpenUnit = 'Open unit';
lisCompPalComponentList = 'View All';
@ -4250,16 +4245,15 @@ resourcestring
lisPETheFileIsCurrentlyNotInTheIncludePathOfThePackageA = 'The file "%s" is '
+'currently not in the include path of the package.%sAdd "%s" to the '
+'include path?';
lisExtendUnitPath2 = 'Extend Unit Path?';
lisExtendUnitSearchPathOfProjectWith = 'Extend unit search path of project '
+'with%s"%s"?';
lisExtendUnitSearchPathOfPackageWith = 'Extend unit search path of package "'
+'%s" with"%s"?';
lisExtendIncludePath = 'Extend Include Path?';
+'%s" with%s"%s"?';
lisExtendIncludePath = 'Extend include path?';
lisExtendIncludeFilesSearchPathOfProjectWith = 'Extend include files search '
+'path of project with%s"%s"?';
lisExtendIncludeFileSearchPathOfPackageWith = 'Extend include file search '
+'path of package "%s" with"%s"?';
+'path of package "%s" with%s"%s"?';
lisConflictDetected = 'Conflict detected';
lisThereIsAlreadyAFileIn = 'There is already a file%s%s%sin %s';
lisDuplicateUnit = 'Duplicate Unit';
@ -5745,7 +5739,7 @@ resourcestring
lisCanTFindAValidPpu = 'Can''t find a valid %s.ppu';
lisCannotFind = 'Cannot find %s';
lisUsedBy = ' used by %s';
lisCheckSearchPathPackageTryACleanRebuildCheckImpleme = '. Check search path'
lisCheckSearchPathPackageTryACleanRebuildCheckImpleme = '. Check search path of'
+' package %s, try a clean rebuild, check implementation uses sections.';
lisCheckIfPackageIsInTheDependencies = '. Check if package %s is in the '
+'dependencies';
@ -5757,8 +5751,6 @@ resourcestring
lisOfPackage = ' of package %s';
lisCompileWithVdForMoreDetailsCheckForDuplicates = '%s -> Compile with -vd '
+'for more details. Check for duplicates.';
lisMaybePackageNeedsACleanRebuild = '. Maybe package %s needs a clean '
+'rebuild.';
lisCannotFindUnit = 'Cannot find unit %s';
lisIncompatiblePpu = ', incompatible ppu=%s';
lisPackage3 = ', package %s';

View File

@ -371,7 +371,7 @@ begin
NewUnitPaths:=RemoveSearchPaths(NewUnitPaths,CurUnitPaths);
if NewUnitPaths<>'' then begin
NewUnitPaths:=CreateRelativeSearchPath(NewUnitPaths,AProject.ProjectDirectory);
r:=IDEMessageDialog(lisExtendUnitPath2,
r:=IDEMessageDialog(lisExtendUnitPath,
Format(lisExtendUnitSearchPathOfProjectWith, [#13, NewUnitPaths]),
mtConfirmation, [mbYes, mbNo, mbCancel]);
case r of

View File

@ -2906,8 +2906,8 @@ begin
NewUnitPaths:=RemoveSearchPaths(NewUnitPaths,CurUnitPaths);
if NewUnitPaths<>'' then begin
NewUnitPaths:=CreateRelativeSearchPath(NewUnitPaths,LazPackage.Directory);
r:=IDEMessageDialog(lisExtendUnitPath2,
Format(lisExtendUnitSearchPathOfPackageWith, [LazPackage.Name,
r:=IDEMessageDialog(lisExtendUnitPath,
Format(lisExtendUnitSearchPathOfPackageWith, [LazPackage.Name, #13,
NewUnitPaths]), mtConfirmation, [mbYes, mbNo, mbCancel]);
case r of
mrYes: LazPackage.CompilerOptions.OtherUnitFiles:=
@ -2929,7 +2929,7 @@ begin
if NewIncPaths<>'' then begin
NewIncPaths:=CreateRelativeSearchPath(NewIncPaths,LazPackage.Directory);
r:=IDEMessageDialog(lisExtendIncludePath,
Format(lisExtendIncludeFileSearchPathOfPackageWith, [LazPackage.Name,
Format(lisExtendIncludeFileSearchPathOfPackageWith, [LazPackage.Name, #13,
NewIncPaths]), mtConfirmation, [mbYes, mbNo, mbCancel]);
case r of
mrYes: LazPackage.CompilerOptions.IncludePath:=