mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 07:37:58 +02:00
25 lines
397 B
ObjectPascal
25 lines
397 B
ObjectPascal
unit SynDesignStringConstants;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
Classes, SysUtils;
|
|
|
|
resourcestring
|
|
syndsLineNumbers = 'Line Numbers';
|
|
syndsCodeFolding = 'Code Folding';
|
|
syndsChangeMarker = 'Change Marker';
|
|
syndsBookmarks = 'Bookmarks';
|
|
syndsSeparator = 'Separator';
|
|
syndsLineOverview = 'Line Overview';
|
|
|
|
syndsResetMouseActions = 'Reset mouse actions';
|
|
|
|
|
|
implementation
|
|
|
|
end.
|
|
|