📄 jclresources.pas
字号:
{**************************************************************************************************}
{ }
{ Project JEDI Code Library (JCL) }
{ }
{ The contents of this file are subject to the Mozilla Public License Version 1.1 (the "License"); }
{ you may not use this file except in compliance with the License. You may obtain a copy of the }
{ License at http://www.mozilla.org/MPL/ }
{ }
{ Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF }
{ ANY KIND, either express or implied. See the License for the specific language governing rights }
{ and limitations under the License. }
{ }
{ The Original Code is JclResources.pas. }
{ }
{ The Initial Developer of the Original Code is Marcel van Brakel. }
{ Portions created by Marcel van Brakel are Copyright (C) Marcel van Brakel. All rights reserved. }
{ }
{ Contributors: }
{ Alexei Koudinov }
{ Barry Kelly }
{ Flier Lu (flier) }
{ Florent Ouchet (outchy) }
{ Marcel Bestebroer }
{ Marcel van Brakel }
{ Matthias Thoma (mthoma) }
{ Peter Friese }
{ Petr Vones (pvones) }
{ Raymond Alexander (rayspostbox3) }
{ Robert Marquardt (marquardt) }
{ Robert Rossmair (rrossmair) }
{ Scott Price (scottprice) }
{ }
{**************************************************************************************************}
{ }
{ Unit which provides a central place for all resource strings used in the JCL }
{ }
{**************************************************************************************************}
// Last modified: $Date: 2005/03/08 11:45:26 $
// For history see end of file
unit JclResources;
{$I jcl.inc}
interface
{$IFDEF COMPILER5}
const
sLineBreak = #13#10;
{$ENDIF COMPILER5}
//=== JclBase ================================================================
resourcestring
RsWin32Prefix = 'Win32: %s (%u)';
RsDynArrayError = 'DynArrayInitialize: ElementSize out of bounds';
RsSysErrorMessageFmt = 'Win32 Error %d (%x)';
//=== JclBorlandTools ========================================================
resourcestring
RsIndexOufOfRange = 'Index out of range';
RsNeedUpdate = 'You should install latest Update Pack #%d for %s';
RsUpdatePackName = 'Update Pack #%d';
RsDelphiName = 'Delphi';
RsBCBName = 'C++Builder';
{$IFDEF KYLIX}
RsKylixName = 'Kylix for %s';
RsKylixVersionName = 'Kylix %d for %s';
RsOpenEdition = 'Open Edition';
RsServerDeveloper = 'Server Developer';
RsVclIncludeDir = '/include/vcl/';
{$ENDIF KYLIX}
{$IFDEF MSWINDOWS}
RsClientServer = 'Client/Server';
RsStandard = 'Standard';
RsVclIncludeDir = '\Include\Vcl\';
{$ENDIF MSWINDOWS}
RsArchitect = 'Architect';
RsEnterprise = 'Enterprise';
RsPersonal = 'Personal';
RsProfessional = 'Professional';
RsBorlandStudioProjects = 'Borland Studio Projects';
RsCmdLineToolOutputInvalid = '%s: Output invalid, when OutputCallback assigned.';
//=== JclCIL =================================================================
resourcestring
RsInstructionStreamInvalid = 'Invalid IL instruction stream';
RsCILCmdnop = 'no operation';
RsCILCmdbreak = 'breakpoint instruction';
RsCILCmdldarg0 = 'load argument onto the stack';
RsCILCmdldarg1 = 'load argument onto the stack';
RsCILCmdldarg2 = 'load argument onto the stack';
RsCILCmdldarg3 = 'load argument onto the stack';
RsCILCmdldloc0 = 'load local variable onto the stack';
RsCILCmdldloc1 = 'load local variable onto the stack';
RsCILCmdldloc2 = 'load local variable onto the stack';
RsCILCmdldloc3 = 'load local variable onto the stack';
RsCILCmdstloc0 = 'pop value from stack to local variable';
RsCILCmdstloc1 = 'pop value from stack to local variable';
RsCILCmdstloc2 = 'pop value from stack to local variable';
RsCILCmdstloc3 = 'pop value from stack to local variable';
RsCILCmdldargs = 'load argument onto the stack';
RsCILCmdldargas = 'load an argument address';
RsCILCmdstargs = 'store a value in an argument slot';
RsCILCmdldlocs = 'load local variable onto the stack';
RsCILCmdldlocas = 'load local variable address';
RsCILCmdstlocs = 'pop value from stack to local variable';
RsCILCmdldnull = 'load a null pointer';
RsCILCmdldci4m1 = 'load numeric constant';
RsCILCmdldci40 = 'load numeric constant';
RsCILCmdldci41 = 'load numeric constant';
RsCILCmdldci42 = 'load numeric constant';
RsCILCmdldci43 = 'load numeric constant';
RsCILCmdldci44 = 'load numeric constant';
RsCILCmdldci45 = 'load numeric constant';
RsCILCmdldci46 = 'load numeric constant';
RsCILCmdldci47 = 'load numeric constant';
RsCILCmdldci48 = 'load numeric constant';
RsCILCmdldci4s = 'load numeric constant';
RsCILCmdldci4 = 'load numeric constant';
RsCILCmdldci8 = 'load numeric constant';
RsCILCmdldcr4 = 'load numeric constant';
RsCILCmdldcr8 = 'load numeric constant';
RsCILCmdunused1 = '';
RsCILCmddup = 'duplicate the top value of the stack';
RsCILCmdpop = 'remove the top element of the stack';
RsCILCmdjmp = 'jump to method';
RsCILCmdcall = 'call a method';
RsCILCmdcalli = 'indirect method call';
RsCILCmdret = 'return from method';
RsCILCmdbrs = 'unconditional branch';
RsCILCmdbrfalses = 'branch on false, null, or zero';
RsCILCmdbrtrues = 'branch on non-false or non-null';
RsCILCmdbeqs = 'branch on equal';
RsCILCmdbges = 'branch on greater than or equal to';
RsCILCmdbgts = 'branch on greater than';
RsCILCmdbles = 'branch on less than or equal to';
RsCILCmdblts = 'branch on less than';
RsCILCmdbneuns = 'branch on not equal or unordered';
RsCILCmdbgeuns = 'branch on greater than or equal to, unsigned or unordered';
RsCILCmdbgtuns = 'branch on greater than, unsigned or unordered';
RsCILCmdbleuns = 'branch on less than or equal to, unsigned or unordered';
RsCILCmdbltuns = 'branch on less than, unsigned or unordered';
RsCILCmdbr = 'unconditional branch';
RsCILCmdbrfalse = 'branch on false, null, or zero';
RsCILCmdbrtrue = 'branch on non-false or non-null';
RsCILCmdbeq = 'branch on equal';
RsCILCmdbge = 'branch on greater than or equal to';
RsCILCmdbgt = 'branch on greater than';
RsCILCmdble = 'branch on less than or equal to';
RsCILCmdblt = 'branch on less than';
RsCILCmdbneun = 'branch on not equal or unordered';
RsCILCmdbgeun = 'branch on greater than or equal to, unsigned or unordered';
RsCILCmdbgtun = 'branch on greater than, unsigned or unordered';
RsCILCmdbleun = 'branch on less than or equal to, unsigned or unordered';
RsCILCmdbltun = 'branch on less than, unsigned or unordered';
RsCILCmdswitch = 'table switch on value';
RsCILCmdldindi1 = 'load value indirect onto the stack';
RsCILCmdldindu1 = 'load value indirect onto the stack';
RsCILCmdldindi2 = 'load value indirect onto the stack';
RsCILCmdldindu2 = 'load value indirect onto the stack';
RsCILCmdldindi4 = 'load value indirect onto the stack';
RsCILCmdldindu4 = 'load value indirect onto the stack';
RsCILCmdldindi8 = 'load value indirect onto the stack';
RsCILCmdldindi = 'load value indirect onto the stack';
RsCILCmdldindr4 = 'load value indirect onto the stack';
RsCILCmdldindr8 = 'load value indirect onto the stack';
RsCILCmdldindref = 'load value indirect onto the stack';
RsCILCmdstindref = 'store value indirect from stack';
RsCILCmdstindi1 = 'store value indirect from stack';
RsCILCmdstindi2 = 'store value indirect from stack';
RsCILCmdstindi4 = 'store value indirect from stack';
RsCILCmdstindi8 = 'store value indirect from stack';
RsCILCmdstindr4 = 'store value indirect from stack';
RsCILCmdstindr8 = 'store value indirect from stack';
RsCILCmdadd = 'add numeric values';
RsCILCmdsub = 'subtract numeric values';
RsCILCmdmul = 'multiply values';
RsCILCmddiv = 'divide values';
RsCILCmddivun = 'divide integer values, unsigned';
RsCILCmdrem = 'compute remainder';
RsCILCmdremun = 'compute integer remainder, unsigned';
RsCILCmdand = 'bitwise AND';
RsCILCmdor = 'bitwise OR';
RsCILCmdxor = 'bitwise XOR';
RsCILCmdshl = 'shift integer left';
RsCILCmdshr = 'shift integer right';
RsCILCmdshrun = 'shift integer right, unsigned';
RsCILCmdneg = 'negate';
RsCILCmdnot = 'bitwise complement';
RsCILCmdconvi1 = 'data conversion';
RsCILCmdconvi2 = 'data conversion';
RsCILCmdconvi4 = 'data conversion';
RsCILCmdconvi8 = 'data conversion';
RsCILCmdconvr4 = 'data conversion';
RsCILCmdconvr8 = 'data conversion';
RsCILCmdconvu4 = 'data conversion';
RsCILCmdconvu8 = 'data conversion';
RsCILCmdcallvirt = 'call a method associated, at runtime, with an object';
RsCILCmdcpobj = 'copy a value type';
RsCILCmdldobj = 'copy value type to the stack';
RsCILCmdldstr = 'load a literal string';
RsCILCmdnewobj = 'create a new object';
RsCILCmdcastclass = 'cast an object to a class';
RsCILCmdisinst = 'test if an object is an instance of a class or interface';
RsCILCmdconvrun = 'data conversion';
RsCILCmdunused2 = '';
RsCILCmdunused3 = '';
RsCILCmdunbox = 'Convert boxed value type to its raw form';
RsCILCmdthrow = 'throw an exception';
RsCILCmdldfld = 'load field of an object';
RsCILCmdldflda = 'load field address';
RsCILCmdstfld = 'store into a field of an object';
RsCILCmdldsfld = 'load static field of a class';
RsCILCmdldsflda = 'load static field address';
RsCILCmdstsfld = 'store a static field of a class';
RsCILCmdstobj = 'store a value type from the stack into memory';
RsCILCmdconvovfi1un = 'unsigned data conversion with overflow detection';
RsCILCmdconvovfi2un = 'unsigned data conversion with overflow detection';
RsCILCmdconvovfi4un = 'unsigned data conversion with overflow detection';
RsCILCmdconvovfi8un = 'unsigned data conversion with overflow detection';
RsCILCmdconvovfu1un = 'unsigned data conversion with overflow detection';
RsCILCmdconvovfu2un = 'unsigned data conversion with overflow detection';
RsCILCmdconvovfu4un = 'unsigned data conversion with overflow detection';
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -