📄 rm_jvresources.pas
字号:
//=== JvDBGrid.pas ===========================================================
resourcestring
RsJvDBGridSelectTitle = 'Select columns';
RsJvDBGridSelectOption = '[With the real field name]';
RsJvDBGridSelectOK = '&OK';
RsJvDBGridSelectWarning = 'At least one column must be visible!';
RsEJvDBGridControlPropertyNotAssigned = 'JvDBGrid.EditControls: property Control not assigned';
//=== JvDBUltimGrid.pas ======================================================
resourcestring
RsEJvDBGridBadFieldKind = 'Cannot sort a binary or special field';
RsEJvDBGridIndexPropertyMissing = 'Cannot sort. An index property is missing';
RsEJvDBGridIndexMissing = 'Cannot sort. The corresponding index is missing';
RsEJvDBGridUserSortNotAssigned = 'Cannot sort. OnUserSort is not assigned';
//=== JvDBGridExport.pas =====================================================
resourcestring
RsHTMLExportDocTitle = 'Grid to HTML Export';
RsExportWord = 'Exporting to MS Word...';
RsExportExcel = 'Exporting to MS Excel...';
RsExportHTML = 'Exporting to HTML...';
RsExportFile = 'Exporting to CSV/Text...';
RsExportClipboard = 'Exporting to Clipboard...';
RsEDataSetDataSourceIsUnassigned = 'Dataset or DataSource unassigned';
RsEGridIsUnassigned = 'No grid assigned';
//=== JvDBImage.pas ==========================================================
resourcestring
RsEBadGraphicSignature = 'Bad graphic signature';
//=== JvDBLookup.pas =========================================================
resourcestring
RsEInvalidFormatNotAllowed = 'Invalid format: % not allowed';
RsEInvalidFormatsNotAllowed = 'Invalid format: %s not allowed';
//=== JvDBQueryParamsForm.pas ================================================
resourcestring
// (p3) copied from bdeconst so we don't have to include the entire BDE for three strings...
RsDataTypes =
';String;SmallInt;Integer;Word;Boolean;Float;Currency;BCD;Date;Time;DateTime;;;;Blob;Memo;Graphic;;;;;Cursor;';
RsParamEditor = '%0:s%1:s%2:s Parameters';
RsEInvalidParamFieldType = 'Must have a valid field type selected';
//=== JvDBRemoteLogin.pas ====================================================
resourcestring
RsKeyLoginSection = 'Remote Login';
RsKeyLastLoginUserName = 'Last User';
//=== JvDBTreeView.pas =======================================================
resourcestring
RsDeleteNode = 'Delete %s ?';
RsDeleteNode2 = 'Delete %s (with all children) ?';
RsMasterFieldError = '"MasterField" must be integer type';
RsDetailFieldError = '"DetailField" must be integer type';
RsItemFieldError = '"ItemField" must be string, date or integer type';
RsIconFieldError = '"IconField" must be integer type';
RsMasterFieldEmpty = '"MasterField" property must be filled';
RsDetailFieldEmpty = '"DetailField" property must be filled';
RsItemFieldEmpty = '"ItemField" property must be filled';
RsEMoveToModeError = 'Invalid move mode for JvDBTreeNode';
RsMasterDetailFieldError = '"MasterField" and "DetailField" must be of same type';
RsEDataSetNotActive = 'DataSet not active';
RsEErrorValueForDetailValue = 'error value for DetailValue';
//=== JvDBUtils.pas ==========================================================
resourcestring
RsConfirmSave = 'The data has changed. Save it?';
//=== JvDdeCmd.pas ===========================================================
resourcestring
RsEErrorCommandStart = 'Invalid command start format';
RsEErrorCommandFormat = 'Invalid command format: %s';
//=== JvDesignImp.pas ========================================================
resourcestring
RsEDesignCannotSelect = 'Cannot add a nil selection.';
RsEOldestFmt = '%0:s: Oldest ancestor of Container must be a form.';
//=== JvDesignSurface.pas ====================================================
resourcestring
RsEDesignNilFmt = '%0:s: %1:s is nil';
//=== JvDesktopAlertForm.pas =================================================
resourcestring
RsClose = 'Close';
//=== JvDrawImage.pas ========================================================
resourcestring
RsImageMustBeSquare = 'image must be square for Spirographs';
RsSumOfRadiTolarge = 'sum of radi too large';
RsBothRadiMustBeGr = 'both radi must be >%d';
//=== JvDropDownForm.pas =====================================================
resourcestring
RsETJvCustomDropDownFormCreateOwnerMus = 'TJvCustomDropDownForm.Create: Owner must be a TCustomEdit';
//=== JvDSADialogs.pas =======================================================
resourcestring
RsInTheCurrentQueue = 'in the current queue';
RsDSActkShowText = 'Do not show this dialog again';
RsDSActkAskText = 'Do not ask me again';
RsDSActkWarnText = 'Do not warn me again';
RsCntdownText = 'This dialog is closing in %s.';
RsCntdownMinText = 'minute';
RsCntdownMinsText = 'minutes';
RsCntdownSecText = 'second';
RsCntdownSecsText = 'seconds';
RsECannotEndCustomReadIfNotInCustomRea = 'Cannot end custom read if not in custom read mode';
RsECannotEndCustomWriteIfNotInCustomWr = 'Cannot end custom write if not in custom write mode';
RsECannotEndReadIfNotInReadMode = 'Cannot end read if not in read mode';
RsECannotEndWriteIfNotInWriteMode = 'Cannot end write if not in write mode';
RsEJvDSADialogPatchErrorJvDSADialogCom = 'JvDSADialog patch error: JvDSADialog component not found';
RsEDSARegKeyCreateError = 'Unable to create key %s';
RsEDSADuplicateID = 'DSA dialog with ID ''%d'' is already assigned to another dialog name';
RsEDSADuplicateName = 'DSA dialog named ''%s'' is already assigned to another dialog ID';
RsEDSADialogIDNotFound = 'DSA dialog %d does not exist';
RsEDSADuplicateCTK_ID = 'CheckMarkText ID %d already registered';
RsEDSADialogIDNotStored = 'DSA dialog %d has not been stored';
RsEDSAKeyNotFound = 'Key %s does not exist';
RsEDSAKeyNoAccessAs = 'Key %0:s cannot be accessed as %1:s';
RsECtrlHasNoCheckedProp = 'The specified control has no "Checked" property';
RsECtrlHasNoCaptionProp = 'The specified control has no "Caption" property';
RsEDialogIDChangeOnlyInDesign = 'The dialog ID can only be changed at design time';
RsEOnlyAllowedOnForms = 'TJvDSADialog is only allowed on forms';
RsEAlreadyDSADialog = 'The form already has a TJvDSADialog component';
RsEDSAAccessBool = 'Boolean';
RsEDSAAccessFloat = 'Float';
RsEDSAAccessInt64 = 'Int64';
RsEDSAAccessInt = 'Integer';
RsEDSAAccessString = 'string';
//=== JvDualList.pas =========================================================
resourcestring
RsDualListSrcCaption = '&Source';
RsDualListDestCaption = '&Destination';
//=== JvDynControlEngine.pas =================================================
resourcestring
RsEIntfCastError = 'SIntfCastError';
RsEUnsupportedControlClass = 'TJvDynControlEngine.RegisterControl: Unsupported ControlClass "%s"';
RsENoRegisteredControlClass = 'TJvDynControlEngine.CreateControl: No Registered ControlClass "%s"';
RsENoFocusControl = 'TJvDynControlEngine.CreateLabelControlPanel: AFocusControl must be assigned';
//=== JvDynControlEngineDB.pas ===============================================
resourcestring
RsEUnassignedField = 'TJvDynControlEngineDB.GetFieldControlType: AField must be assigned';
RsEUnassignedMultiple = 'TJvDynControlEngineDB.CreateControlsFromDatasourceOnControl: ADataSource, ADataSource.Dataset and AControl must be assigned';
RsEUnassignedDataSet = 'TJvDynControlEngineDB.CreateControlsFromDatasourceOnControl: ADataSource.Dataset must be active';
//=== JvEDIDBBuffering.pas ===================================================
resourcestring
RsENoProfileDatasets = 'Not all profile datasets have been assigned.';
//=== JvEditor.pas, JvUnicodeEditor.pas ======================================
resourcestring
RsERedoNotYetImplemented = 'Redo not yet implemented';
RsEInvalidCompletionMode = 'Invalid JvEditor Completion Mode';
//=== JvEmbeddedForms.pas ====================================================
resourcestring
RsEFormLinkSingleInstanceOnly = 'You only need one form link per form.';
RsELinkCircularRef = 'Circular references not allowed.';
//=== JvErrorIndicator.pas ===================================================
resourcestring
RsEControlNotFoundInGetError = 'Control not found in GetError';
RsEControlNotFoundInGetImageAlignment = 'Control not found in GetImageAlignment';
RsEControlNotFoundInGetImagePadding = 'Control not found in GetImagePadding';
RsEUnableToAddControlInSetError = 'Unable to add control in SetError';
RsEUnableToAddControlInSetImageAlignme = 'Unable to add control in SetImageAlignment';
RsEUnableToAddControlInSetImagePadding = 'Unable to add control in SetImagePadding';
//=== JvExceptionForm.pas ====================================================
resourcestring
RsCodeError = '%0:s.' + sLineBreak + 'Error Code: %1:.8x (%1:d).';
RsModuleError = 'Exception in module %0:s.' + sLineBreak + '%1:s';
//=== JvFindReplace.pas ======================================================
resourcestring
RsNotFound = 'Search string ''%s'' not found';
RsXOccurencesReplaced = '%0:d occurence(s) of ''%1:s'' were replaced';
RsReplaceCaption = 'Replace';
RsFindCaption = 'Find';
RsENoEditAssigned = 'No edit control assigned!';
//=== JvFooter.pas ===========================================================
resourcestring
RsETJvFooterBtnCanOnlyBePlacedOnATJvFo = 'TJvFooterBtn can only be placed on a TJvFooter';
//=== JvForth.pas ============================================================
resourcestring
RsEInvalidNumbers = 'invalid number %s';
RsEUnrecognizedDataTypeInSetOperation = 'unrecognized data type in set operation';
RsEUnterminatedBlockNear = 'unterminated block near ';
RsEParserTimedOutAfterdSecondsYouMayHa = 'parser timed out after %d seconds; you may have circular includes';
RsEUnterminatedIncludeNears = 'unterminated include near %s';
RsEIllegalSpaceCharacterInTheIncludeFi = 'illegal space character in the include file: %s';
RsECanNotFindIncludeFiles = 'Can not find include file: %s';
RsEOnIncludeHandlerNotAssignedCanNotHa = 'OnInclude handler not assigned, can not handle include file: %s';
RsEMissingCommentTerminatorNears = 'missing "}" comment terminator near %s';
RsEMissingXmlMethodSpecifierNears = 'missing XML method specifier near %s';
RsEMissingDataSourceMethodSpecifierNea = 'missing data source method specifier near %s';
RsEMissingSystemMethodSpecifierNears = 'missing system method specifier near %s';
RsEMissingExternalVariableMethodSpecif = 'missing external variable method specifier near %s';
RsEMissingInternalVariableMethodSpecif = 'missing internal variable method specifier near %s';
RsEUndefinedWordsNears = 'undefined word "%0:s" near %1:s';
RsEScriptTimedOutAfterdSeconds = 'Script timed out after %d seconds';
RsECanNotAssignVariables = 'can not assign variable %s';
RsEVariablesNotDefined = 'Variable %s not defined';
RsEProceduresNotDefined = 'procedure %s not defined';
RsEVariablesNotDefined_ = 'variable %s not defined';
RsESystemsNotDefined = 'System %s not defined';
RsECanNotAssignSystems = 'can not assign System %s';
RsEUnrecognizedExternalVariableMethodss = 'unrecognized external variable method %0:s.%1:s';
RsEUnrecognizedInternalVariableMethodss = 'unrecognized internal variable method %0:s.%1:s';
RsEUnrecognizedSystemMethodss = 'unrecognized system method %0:s.%1:s';
RsEFilesDoesNotExist = 'File %s does not exist';
RsECanNotSaveToFiles = 'Can not save to file %s';
RsEXMLSelectionIsEmpty = 'XML selection is empty';
RsENoXMLSelectionSelected = 'no XML selection selected';
RsEXMLSelectionOutOfRange = 'XML selection out of range';
RsEInvalidXmlMethodSpecifiers = 'invalid XML method specifier %s';
RsEIncrementIndexExpectedIns = 'Increment Index: "[" expected in %s';
RsEIncrementIndexExpectedIns_ = 'Increment Index: "]" expected in %s';
RsEIncrementIndexExpectedIntegerBetwee = 'Increment Index: expected integer between "[..]" in %s';
RsEDSOIndexOutOfRanged = 'DSO index out of range %d';
RsEDSOUnknownKeys = 'DSO unknown key %s';
//=== JvFullColorCtrls.pas ===================================================
resourcestring
RsColorHintFmt1 = 'FullColor: %0:.8x' + sLineBreak +
'ColorSpace: %1:s (%2:d)' + sLineBreak +
'Name: %3:s' + sLineBreak +
'Pretty name: %4:s';
RsColorHintFmt2 = 'FullColor: %0:.8x, ColorSpace: %1:s (%2:d)' + sLineBreak +
'Axis %3:s = %4:d' + sLineBreak +
'Axis %5:s = %6:d' + sLineBreak +
'Axis %7:s = %8:d';
Rs_EDuplicateTrackBar = 'TrackBar already used by component "%s"';
Rs_EUnsupportedColorSpace = 'Unsupported color space "%d"';
//=== JvFullColorDialogs.pas =================================================
resourcestring
RsExpandedCaption = '<< &Hide';
RsCollapsedCaption = '&Panels >>';
//=== JvFullColorSpaces.pas ==================================================
resourcestring
RsENoTypeInfo = 'The class %s contains no run time type info' + sLineBreak +
'"Class in module" test cannot be executed';
RsEUnnamedAxis = 'Unnamed Color Axis';
RsEUnnamedSpace = 'Unnamed Color Space';
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -