⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dxjs_resstr.pas

📁 Well known and usefull component for delphi 7
💻 PAS
字号:
////////////////////////////////////////////////////////////////////////////
//    Component: DXJS_RESSTR
//       Author: Alexander Baranovsky (ab@virtlabor.donbass.com)
//               G.E. Ozz Nixon Jr. (staff@bpdx.com)
// ========================================================================
// Source Owner: DX, Inc. 2002, 2004
//    Copyright: All code is the property of DX, Inc. Licensed for
//               resell by Brain Patchwork DX (tm) and part of the
//               DX (r) product lines, which are (c) 1999-2002
//               DX, Inc. Source may not be distributed without
//               written permission from both Brain Patchwork DX,
//               and DX, Inc.
//      License: (Reminder), None of this code can be added to other
//               developer products without permission. This includes
//               but not limited to DCU's, DCP's, DLL's, OCX's, or
//               any other form of merging our technologies. All of
//               your products released to a public consumer be it
//               shareware, freeware, commercial, etc. must contain a
//               license notification somewhere visible in the
//               application.
// Code Version: (3rd Generation)
// ========================================================================
//  Description: Resource Strings
// ========================================================================
////////////////////////////////////////////////////////////////////////////

UNIT DXJS_RESSTR;

INTERFACE

RESOURCESTRING
 SpeSyntaxError                = 'Syntax error';
 SpeIdentifierExpected         = 'Identifier expected';
 SpeIdentifierRedeclared       = 'Identifier redeclared';
 SpeIncompatibleTypes          = 'Incompatible types';
 SpeOutsideOfLoop              = 'BREAK or CONTINUE outside of loop';
 SpeLabelNotFound              = 'Label not found';
 SpeCannotAssign               = 'Cannot assign';

 SpeWHILEexpected              = 'while expected';
 SpeCATCHexpected              = 'catch expected';
 SpeRoundBracketLeftexpected   = '( expected';
 SpeRoundBracketRightexpected  = ') expected';
 SpeBracketLeftexpected        = '[ expected';
 SpeBracketRightexpected       = '] expected';
 SpeBraceLeftExpected          = '{ expected';
 SpeBraceRightExpected         = '} expected';
 SpeColonExpected              = ': expected';
 SpeEqualsSignexpected         = '= expected';
 SpeSemicolonexpected          = '; expected';
 SpeInvalidCompilerDirective   = 'Invalid compiler directive';
 SpeMissingENDIFdirective      = 'Missing ENDIF directive';
 SreVarNotArray                = 'Variant is not an array';
 SreUndefinedVariable          = 'Undefined variable';
 SreIncorrectTypeCast          = 'Incorrect type cast';
 SreVariableMustBeUndefined    = 'Variable must be undefined';
 SreFunctionNotFound           = 'Function not found';
 SreReferenceError             = 'Reference error';
 SreRecompileRequested         = 'Please recompile the source code';
 SreVarArrayBounds             = 'Variant array index out of bounds';

IMPLEMENTATION

END.

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -