mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-30 20:43:40 +02:00
50 lines
816 B
ObjectPascal
50 lines
816 B
ObjectPascal
unit IdeIntfStrConsts;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
Classes, SysUtils;
|
|
|
|
resourcestring
|
|
// *** Common single word resources that can be safely shared around Lazarus and add-on packages ***
|
|
lisLazarus = 'Lazarus';
|
|
|
|
lisCut = 'Cut';
|
|
lisCopy = 'Copy';
|
|
lisPaste = 'Paste';
|
|
|
|
lisOk = 'OK';
|
|
lisCancel = 'Cancel';
|
|
lisYes = 'Yes';
|
|
lisNo = 'No';
|
|
lisAbort = 'Abort';
|
|
lisIgnore = 'Ignore';
|
|
lisNever = 'Never';
|
|
lisAlways = 'Always';
|
|
lisContinue = 'Continue';
|
|
|
|
lisBtnOk = '&OK';
|
|
lisBtnContinue = '&Continue';
|
|
|
|
lisHelp = 'Help';
|
|
|
|
lisAdd = 'Add';
|
|
lisBtnAdd = '&Add';
|
|
lisDlgAdd = 'Add ...';
|
|
lisBtnDlgAdd = '&Add ...';
|
|
|
|
lisDelete = 'Delete';
|
|
lisBtnDelete = '&Delete';
|
|
|
|
lisEnabled = 'Enabled';
|
|
lisDisabled = 'Disabled';
|
|
lisBtnEnabled = '&Enabled';
|
|
|
|
|
|
implementation
|
|
|
|
end.
|
|
|