mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-07 17:33:03 +02:00

a) made it localizable; b) slightly improved dialogs; c) added Russian translation. git-svn-id: trunk@36198 -
23 lines
428 B
ObjectPascal
23 lines
428 B
ObjectPascal
{ This file was automatically created by Lazarus. Do not edit!
|
|
This source is only used to compile and install the package.
|
|
}
|
|
|
|
unit PoChecker;
|
|
|
|
interface
|
|
|
|
uses
|
|
ResultDlg, PoFamilies, pocheckermain, SimplePoFiles, pocheckerconsts,
|
|
LazarusPackageIntf;
|
|
|
|
implementation
|
|
|
|
procedure Register;
|
|
begin
|
|
RegisterUnit('pocheckermain', @pocheckermain.Register);
|
|
end;
|
|
|
|
initialization
|
|
RegisterPackage('PoChecker', @Register);
|
|
end.
|