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

1) Localized the component and added Portuguese translation from Marcelo B Paula, final part of bug #16726. 2) Added Russian translation. 3) Removed LRS file which is not needed anymore. git-svn-id: trunk@26116 -
23 lines
555 B
ObjectPascal
23 lines
555 B
ObjectPascal
{ Этот файл был автоматически создан Lazarus. Не редактировать!
|
||
Исходный код используется только для компиляции и установки пакета.
|
||
}
|
||
|
||
unit editortoolbar;
|
||
|
||
interface
|
||
|
||
uses
|
||
jumpto_impl, editortoolbar_impl, EdtTbConfigFrm, editortoolbar_str,
|
||
LazarusPackageIntf;
|
||
|
||
implementation
|
||
|
||
procedure Register;
|
||
begin
|
||
RegisterUnit('editortoolbar_impl',@editortoolbar_impl.Register);
|
||
end;
|
||
|
||
initialization
|
||
RegisterPackage('editortoolbar',@Register);
|
||
end.
|