mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-04 21:04:04 +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 -
25 lines
498 B
ObjectPascal
25 lines
498 B
ObjectPascal
unit editortoolbar_str;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
Classes, SysUtils;
|
|
|
|
resourcestring
|
|
SErrCouldNotFind = 'Could not find <%s>';
|
|
rsConfigureToo = 'Configure Toolbar';
|
|
rsJumpTo = 'Jump To';
|
|
rsEditorToolbarConfigForm = 'Editor Toolbar Configuration';
|
|
rsOK = 'OK';
|
|
rsCancel = 'Cancel';
|
|
rsToolbar = 'Toolbar';
|
|
rsMenuTree = 'Menu Tree';
|
|
rsAddDivider = 'Add Divider';
|
|
|
|
implementation
|
|
|
|
end.
|
|
|