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