mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-06-01 13:52:38 +02:00

While editing localize scripts also removed stale CGI component reference from them. git-svn-id: trunk@27448 -
23 lines
346 B
ObjectPascal
23 lines
346 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';
|
|
|
|
|
|
implementation
|
|
|
|
end.
|
|
|