lazarus/components/editortoolbar/editortoolbar.pas
maxim 9570fff742 Components, editortoolbar:
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 -
2010-06-14 17:51:26 +00:00

23 lines
555 B
ObjectPascal
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{ Этот файл был автоматически создан 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.