mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-02 19:23:40 +02:00

1) improved localization of FPCUnitIDE. Patch from Marcelo B Paula. Part of bug #16484. 2) Added FPCUnitIDE translations: Portuguese (from Marcelo B Paula) and Russian. git-svn-id: trunk@25468 -
22 lines
412 B
ObjectPascal
22 lines
412 B
ObjectPascal
{ Este arquivo foi automaticamente criado pelo Lazarus. Não edite!
|
|
Este fonte é usado apenas para compilar e instalar o pacote.
|
|
}
|
|
|
|
unit fpcunitide;
|
|
|
|
interface
|
|
|
|
uses
|
|
FPCUnitLazIDEIntf, strtestcaseopts, LazarusPackageIntf;
|
|
|
|
implementation
|
|
|
|
procedure Register;
|
|
begin
|
|
RegisterUnit('FPCUnitLazIDEIntf', @FPCUnitLazIDEIntf.Register);
|
|
end;
|
|
|
|
initialization
|
|
RegisterPackage('fpcunitide', @Register);
|
|
end.
|