mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-06-02 20:18:15 +02:00
improve localization by Maxim
git-svn-id: trunk@23697 -
This commit is contained in:
parent
4d3f0d5fe8
commit
b87f87e8af
@ -964,6 +964,7 @@ resourcestring
|
||||
lisPEUnitnameAndFilenameDoNotMatchExampleUnit1PasAndUni = 'Unitname and '
|
||||
+'Filename do not match.%sExample: unit1.pas and Unit1';
|
||||
lisOk = '&OK';
|
||||
lisCancel = 'Cancel';
|
||||
lisCMParameter = 'Parameter';
|
||||
lisCTPleaseSelectAMacro = 'please select a macro';
|
||||
lisA2PCreateNewFile = 'Create new file';
|
||||
@ -1157,8 +1158,8 @@ resourcestring
|
||||
lisRemove = 'remove';
|
||||
lisKeep = 'keep';
|
||||
lisConfirmNewPackageSetForTheIDE = 'Confirm new package set for the IDE';
|
||||
lisConfirmPackageNewPackage = 'New package';
|
||||
lisConfirmPackageOldPackage = 'Old package';
|
||||
lisConfirmPackageNewPackageSet = 'New package set';
|
||||
lisConfirmPackageOldPackageSet = 'Old package set';
|
||||
lisConfirmPackageAction = 'Action';
|
||||
lisSaveFileAs = 'Save file as';
|
||||
lisOpenExistingFile = 'Open existing file';
|
||||
|
@ -70,9 +70,9 @@ var
|
||||
begin
|
||||
with PackagesGrid do begin
|
||||
RowCount := AChangesReport.Count + 1;
|
||||
Cells[0, 0] := 'Install package';
|
||||
Cells[1, 0] := 'State';
|
||||
Cells[2, 0] := lisConfirmPackageOldPackage;
|
||||
Cells[0, 0] := lisConfirmPackageNewPackageSet;
|
||||
Cells[1, 0] := lisConfirmPackageAction;
|
||||
Cells[2, 0] := lisConfirmPackageOldPackageSet;
|
||||
d := RowCount * DefaultRowHeight + GridLineWidth - Height;
|
||||
end;
|
||||
// Auto-grow dialog up to 3/4 of the screen height.
|
||||
@ -80,6 +80,7 @@ begin
|
||||
Height := Height + d;
|
||||
Caption := lisConfirmNewPackageSetForTheIDE;
|
||||
OkButton.Caption := lisContinue;
|
||||
CancelButton.Caption := lisCancel;
|
||||
|
||||
for i := 1 to AChangesReport.Count do begin
|
||||
s := AChangesReport[i - 1];
|
||||
|
Loading…
Reference in New Issue
Block a user