mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-13 06:59:56 +02:00
IDE: improved package manager and project inspector localization
git-svn-id: trunk@45919 -
This commit is contained in:
parent
99ed2e37e0
commit
d0fac12b69
@ -426,6 +426,7 @@ resourcestring
|
||||
lisMenuPublishProject = 'Publish Project ...';
|
||||
lisPublishProject = 'Publish Project';
|
||||
lisMenuProjectInspector = 'Project Inspector';
|
||||
lisProject3 = 'project';
|
||||
lisKMRemoveActiveFileFromProject = 'Remove Active File from Project';
|
||||
lisKMViewProjectSource = 'View Project Source';
|
||||
lisMenuAddToProject = 'Add Editor File to Project';
|
||||
@ -4275,8 +4276,8 @@ resourcestring
|
||||
lisTargetIsReadOnly = 'Target is read only';
|
||||
lisTheTargetIsNotWritable = 'The target %s is not writable.';
|
||||
lisMoveOrCopyFileSFromToTheDirectoryOfPackage = 'Move or copy %s file'
|
||||
+'(s) from %s to the directory%s%s%sof %s.';
|
||||
lisMoveFileSFromToTheDirectoryOf = 'Move %s file(s) from %s to the directory%s%s%sof %s.';
|
||||
+'(s) from %s to the directory%s%s%sof %s?';
|
||||
lisMoveFileSFromToTheDirectoryOf = 'Move %s file(s) from %s to the directory%s%s%sof %s?';
|
||||
lisMove = 'Move';
|
||||
lisPkgEditDoYouReallyWantToForgetAllChangesToPackageAnd = 'Do you really '
|
||||
+'want to forget all changes to package %s and reload it from file?';
|
||||
|
@ -1197,7 +1197,7 @@ end;
|
||||
|
||||
function TProjectInspectorForm.FilesOwnerName: string;
|
||||
begin
|
||||
Result:='project';
|
||||
Result:=lisProject3;
|
||||
end;
|
||||
|
||||
function TProjectInspectorForm.FilesOwnerReadOnly: boolean;
|
||||
|
@ -2957,7 +2957,7 @@ end;
|
||||
|
||||
function TPackageEditorForm.FilesOwnerName: string;
|
||||
begin
|
||||
Result:='package '+LazPackage.Name;
|
||||
Result:=Format(lisPackage2, [LazPackage.Name]);
|
||||
end;
|
||||
|
||||
function TPackageEditorForm.TVNodeFiles: TTreeNode;
|
||||
|
Loading…
Reference in New Issue
Block a user