mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-03 21:43:49 +02:00
22 lines
308 B
ObjectPascal
22 lines
308 B
ObjectPascal
unit SynDesignStringConstants;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
Classes, SysUtils;
|
|
|
|
resourcestring
|
|
syndsLineNumbers = 'Line Numbers';
|
|
syndsCodeFolding = 'Code fFolding';
|
|
syndsChangeMarker = 'Change Marker';
|
|
syndsBookmarks = 'Bookmarks';
|
|
syndsSeparator = 'Separator';
|
|
|
|
|
|
implementation
|
|
|
|
end.
|
|
|