lazarus/components/macroscript/emsstrings.pas
2019-11-03 19:59:21 +00:00

29 lines
1.0 KiB
ObjectPascal

unit EMSStrings;
{$mode objfpc}{$H+}
interface
resourcestring
EmsSelfTestErrCaption = 'Error in EditorMacroScript';
EmsSelfTestFailed = 'The package EditorMacroScript (pascalscript macros)' +
' has detected a problem and was deactivated.%0:s' +
'The package failed its selftest with the message:%0:s"%1:s"';
EmsSelfTestFailedLastTime = 'The package EditorMacroScript (pascalscript macros)' +
' has detected a problem and was deactivated.%0:s' +
'The package selftest was not completed during the last start of the IDE.';
EMSStatusTitle = 'Status';
EMSEditorMacroTitle = 'Editor Macro Script';
EMSBtnTestAgain = 'Test again';
EMSNotSupported = 'Scripting not active. Not supported on this platform or CPU.';
EMSNotActive = 'Scripting not active. Selftest failed.';
EMSNotActiveVerbose = 'EditorMacroScript failed its self-test and is not active. Some macros may not work.';
EMSActive = 'Scripting active.';
EMSPending = 'Scripting not active. Selftest will run next time the IDE is '
+'started.';
implementation
end.