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

📄 jvdsgnconsts.pas

📁 East make Tray Icon in delphi
💻 PAS
📖 第 1 页 / 共 2 页
字号:
{-----------------------------------------------------------------------------
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/MPL-1.1.html

Software distributed under the License is distributed on an "AS IS" basis,
WITHOUT WARRANTY OF ANY KIND, either expressed or implied. See the License for
the specific language governing rights and limitations under the License.

The Original Code is: JvDsgnConsts.pas, released on 2003-6-27.

The Initial Developers of the Original Code is Marcel Bestebroer
Portions created by Marcel Bestebroer are Copyright (C) 2002 - 2003 Project JEDI
All Rights Reserved.

Contributor(s): -

You may retrieve the latest version of this file at the Project JEDI's JVCL home page,
located at http://jvcl.sourceforge.net

Known Issues:
-----------------------------------------------------------------------------}
// $Id: JvDsgnConsts.pas,v 1.54 2005/03/10 09:13:00 marquardt Exp $

unit JvDsgnConsts;

{$I jvcl.inc}

interface

uses
  JvConsts;

//=== strings used by several editors ========================================
resourcestring
  RsPreviewEllipsis = 'Preview...';
  RsDesignerEllipsis = 'Designer...';
  RsItemsEditorEllipsis = 'Items Editor...';
  RsNone = '(none)';
  RsHelp = 'Help';
  RsConfirm = 'Confirm?';
  {$IFDEF MSWINDOWS}
  RsAllFilesFilter = 'All Files (*.*)|*.*';
  {$ENDIF MSWINDOWS}
  {$IFDEF UNIX}
  RsAllFilesFilter = 'All Files (*)|*';
  {$ENDIF UNIX}
  RsNextPage = 'Next Page';
  RsPreviousPage = 'Previous Page';
  RsJVCLActionsCategory = 'JVCL';
  RsJVCLDBActionsCategory = 'JVCL-DB';
  RsPropertyEditors = '\Property Editors';
  RsJvEditorString = 'Click to edit...';
  RsSystemColors = 'System colors';
  RsStandardColors = 'Standard colors';

  RsEInvalidPropertyValue = 'Invalid property value';

//=== JVCL IDE palettes ======================================================
resourcestring
  RsPaletteSystem = 'Jv System';
  RsPaletteDialog = 'Jv Dialogs';
  RsPaletteButton = 'Jv Buttons';
  RsPaletteEdit = 'Jv Edits';
  RsPaletteCustom = 'Jv Custom';
  RsPaletteBarPanel = 'Jv Bars, Panels';
  RsPaletteLabel = 'Jv Labels';
  RsPaletteListComboTree = 'Jv Lists, Combos, Trees';
  RsPaletteScrollerTracker = 'Jv Scrollers';
  RsPaletteSliderSplitter = 'Jv Trackers, Sliders, Splitters';
  RsPaletteImageAnimator = 'Jv Images, Animators';
  RsPaletteVisual = 'Jv Visual';
  RsPaletteNonVisual = 'Jv Non-Visual';
  RsPaletteThreading = 'Jv Threading';
  RsPalettePersistence = 'Jv Persistence';
  RsPaletteAppForm = 'Jv Application, Forms';
  RsPaletteInterNetWork = 'Jv Internet, Network';
  RsPaletteEncryptCompress = 'Jv Encrypt, Compress';
  RsPaletteDBVisual = 'Jv Data Controls';
  RsPaletteDBNonVisual = 'Jv Data Access';
  RsPaletteHMIComponents = 'Jv HMI';
  RsPaletteBDE = 'Jv BDE';
  RsPalettePrintPreview = 'Jv Print Preview';
  RsPaletteInterpreter = 'Jv Interpreter';
  RsPaletteGlobusComponents1 = 'JVCL Globus 1';
  RsPaletteGlobusComponents2 = 'JVCL Globus 2';
  RsPaletteValidators = 'Jv Validators';
  RsPaletteEDI = 'Jv EDI';
  RsPaletteJans = 'Jv Jans';
  RsPaletteJansSim = 'Jv Jans SIM';
  RsPaletteJansCsv = 'Jv Jans CSV';
  RsPalettePlugin = 'Jv Plugin';
  RsPaletteNavPane = 'Jv NavPane';
  {$IFDEF USEJVCL}
  RsPaletteUIB = 'Jv UIB';
  RsPaletteMTThreads = 'Jv Threading';
  RsPaletteTimeFramework = 'Jv TimeFrameWork';
  RsPaletteWizard = 'Jv Wizard';
  RsPaletteXPControls = 'Jv XP Controls';
  RsPaletteDocking = 'Jv Docking';
  RsPaletteDotNet = 'Jv DotNet';
  RsPaletteDotNetDB = 'Jv DotNet DB';
  {$ENDIF USEJVCL}

//=== JvAnimatedEditor.pas ===================================================
resourcestring
  RsEditPicture = 'Edit picture...';
  RsLoadAniCursor = 'Load from ANI...';

//=== JvAVICaptureEditors.pas ================================================
resourcestring
  RsGetValueFmt = '%d - %s';
  RsDisconnected = 'Disconnected';
  RsEdIsNotWithinTheValidRangeOfdd = '%d is not within the valid range of %d..%d';

//=== JvBandObjectDLLWizard.pas ==============================================
resourcestring
  RsCreatesABandObjectDLLProject = 'Creates a Band Object DLL Project.';
  RsBandObjectDLLWizard = 'Band Object DLL Wizard';
  RsBandObjectDLLWizardIDString = 'JVCL.JvBandObjectDLLWizard';

//=== JvBandObjectDLLWizardForm.pas ==========================================
resourcestring
  RsBandHelpCaptionFmt = '%s %s';
  RsEBandNameHasToBeAValidIdentifier = 'Band name has to be a valid identifier!';
  RsEPleaseEnterBandDescription = 'Please enter band description!';
  RsHelpText = sLineBreak +
    'Band Name' + sLineBreak +
    'Enter a band name, e.g. MyBand.' + sLineBreak +
    'This will be the class name of the band object.' + sLineBreak +
    'No need to prefix it with ''T'' as it will be generated.' + sLineBreak + sLineBreak +
    'Description' + sLineBreak +
    'Enter a menuitem text, e.g. &My Band' + sLineBreak +
    'This text will appear in the Explorer Bar or Toolbars menu.' + sLineBreak + sLineBreak +
    'Band Type' + sLineBreak +
    'Select the type of band object to create.';

//=== JvBaseDsgnForm.pas =====================================================
resourcestring
  RsBaseDesignFormName = 'JEDI-VCL Editor';

//=== JvChangeNotifyEditor.pas ===============================================
resourcestring
  RsNotificationsEllipsis = 'Notifications...';

//=== JvCheckedItemsForm.pas =================================================
resourcestring
  RsItemEditor = 'Item editor';
  RsEnabled = 'Enabled';

//=== JvColorProviderAddDialogForm.pas =======================================
resourcestring
  RsCustomColors = 'Custom colors';

//=== JvColorProviderDesignerForm.pas ========================================
resourcestring
  RsCustomColorsEllipsis = 'Custom colors...';
  RsColorMsg = 'Copy standard and system colors from the default context?';
  RsDesigning = 'Designing %s';

//=== JvColorProviderEditors.pas =============================================
resourcestring
  RsEMappingDoesNotExistForThisColorProv = 'Mapping does not exist for this color provider.';

//=== JvCsvDataEditor.pas ====================================================
resourcestring
  RsJvCsvDataSetSelectCSVFileToOpen = 'JvCsvDataSet - Select CSV File to Open';
  RsCsvFilter = 'CSV files (*.csv)|*.csv';

//=== JvCsvDataForm.pas ======================================================
resourcestring
  RsMustTypeAValidFieldNameAndSelectAFi =
    'Must type a valid field name and select a field type. ' +
    'Field name must start with a letter A-Z and consist of letters and numbers only. ' +
    'All field names will be converted to uppercase before being used.';
  RsAddFailed = 'Add Failed';
  RsFieldNameIsNotAValidIdentifier = '%s: Field name is not a valid identifier';
  RsCantAddTwoFieldsWithTheSameNameSele =
    'Can''t add two fields with the same name! Select existing item and click ''Modify'' button to change its properties.';
  RsUpdateFailed = 'Update Failed';
  RsNoItemIsSelectedInTheFieldsListYouC = 'No item is selected in the fields list. You can''t update nothing.';
  RsModifyingTheCurrentlySelectedItemWo =
    'Modifying the currently selected item would create two items with the same name.';
  RsYouHaventActuallyChangedAnythingIfY = 'You haven''t actually changed anything. If you ' +
    'made changes and didn''t click Modify, the changes have ' +
    'not been made yet. (Click no, to go back.) ' + sLineBreak +
    'Are you sure you want to close the CSV Fields editor? ';

//=== JvDataConsumerContextSelectForm.pas ====================================
resourcestring
  RsEConsumerDoesNotSupportContextSelect = 'Consumer does not support context selection.';
  RsEIJvDataConsumerProviderIsNotSupported = 'IJvDataConsumerProvider is not supported by the specified consumer.';

//=== JvDataConsumerItemSelectForm.pas =======================================
resourcestring
  RsDataProviderItemSelector = 'DataProvider Item Selector';

//=== JvDataContextManagerForm.pas ===========================================
resourcestring
  RsDataProviderContextManager = 'DataProvider Context Manager';

//=== JvDataEmbeddedEditor.pas ===============================================
resourcestring
   RsLoadFromFileEllipsis = 'Load From File...';
   RsClearEmbeddedData = 'Clear data';
   RsViewEmbeddedDataAsText = 'View As Text...';

//=== JvDataProviderDesignerForm.pas =========================================
resourcestring
  RsDefault = '<Default>';
  RsDataProviderDesigner = 'DataProvider Designer';
  RsEInternalErrorUnableToRetrieveContext = 'Internal error: unable to retrieve context list';

//=== JvDataProviderEditors.pas ==============================================
resourcestring
  RsESpecifiedProviderIsNotATComponentDe = 'Specified provider is not a TComponent descendant';
  RsTreeDesignerEllipsis = 'Tree designer...';
  RsContextManagerEllipsis = 'Context manager...';
  RsInvalidVerbd = 'Invalid verb#: %d';

//=== JvDataProviderItemDesign.pas ===========================================
resourcestring
  RsUnknown = '<unknown>';
  RsNoItem = '<no item>';

//=== JvDateTimeForm.pas =====================================================
resourcestring
  RsSelectDate = 'Select Date';
  RsSelectTime = 'Select Time';
  RsSelectDateTime = 'Select Date and Time';
  RsMaxInt = 'MaxInt';
  RsMinInt = 'MinInt';
  RsMaxLong = 'MaxLong';
  RsMinLong = 'MinLong';
  RsMaxShort = 'MaxShort';
  RsMinShort = 'MinShort';
  RsMaxWord = 'MaxWord';
  RsFileName = '(Filename)';
  RsDirectory = '(Directory)';

//=== JvDBGridProp.pas =======================================================
resourcestring
  RsEJvDBGridDataSourceNeeded = 'DataSource property must be set before selecting controls.';
  RsEJvDBGridDataSetNeeded = 'A dataset must be linked to the grid datasource before selecting controls.';
  RsJvDBGridAlreadyAdded = 'The field "%s" has already been added.';

//=== JvDBMemDatasetEditor.pas ===============================================
resourcestring
  RsBorrowStructure = 'Borrow structure...';

//=== JvDockPropertyEditors.pas ==============================================
{$IFDEF USEJVCL}
resourcestring
  RsDockNewPage = 'Ne&w Page';
  RsDockNextPage = 'Ne&xt Page';
  RsDockPreviousPage = '&Previous Page';
  RsDockDeletePage = '&Delete Page';
{$ENDIF USEJVCL}

//=== JvDsgnEditors.pas ======================================================
resourcestring
  RsStripFilePath = '&Strip file path';
  {$IFDEF MSWINDOWS}
  RsExecutableFilesExeExeAllFiles = 'Executable files (*.exe)|*.exe|All files (*.*)|*.*';
  {$ENDIF MSWINDOWS}
  {$IFDEF UNIX}
  RsExecutableFilesExeExeAllFiles = 'Executable files (*)|*';
  {$ENDIF UNIX}
  RsFmtEditEllipsis = '%s Editor...';
  RsSaveImageList = 'Save to bitmap...';

//=== JvFooterEditor.pas =====================================================
resourcestring
  RsAddButtonText = 'Add button';
  RsMSOffice = 'MS Office 2000';
  RsMSEnterpriseManagerWizard = 'MS Enterprise Manager Wizard';
  RsDialogMode = 'Dialog Mode';
  RsPrevious = 'Previous';
  RsNext = 'Next';

//=== JvFormPropertiesForm.pas ===============================================
resourcestring
  RsStorageDesigner = 'Form Storage Designer...';

//=== JvFullColorListForm.pas ================================================
resourcestring
  RsUnnamedColorFmt = '%s : Unnamed color $%.8x';

//=== JvgComponentListEditorForm.pas =========================================
{$IFDEF USEJVCL}
resourcestring
  RsEditComponentListEllipsis = 'Edit component list...';
{$ENDIF USEJVCL}

//=== JvgHelpPanelEditor.pas =================================================
{$IFDEF USEJVCL}
resourcestring
  RsRTFAndTextFilesrtftxtrtftxt = 'RTF and Text files (*.rtf,*.txt)|*.rtf;*.txt';
  RsLoadRTFFile = 'Load RTF file';
  RsPreviewRTFText = 'Preview RTF text';
{$ENDIF USEJVCL}

//=== JvgLabelEditorForm.pas =================================================
{$IFDEF USEJVCL}
resourcestring
  RsEditLabel = 'Edit &Label...';
{$ENDIF USEJVCL}

//=== JvgLogicItemEditorForm.pas =============================================
{$IFDEF USEJVCL}
resourcestring
  RsLogicElements = 'Logic Element: %s';
  RsResult = '[RESULT]';
  RsNotDefined = '[ not defined ]';
{$ENDIF USEJVCL}

//=== JvgLogicsEditorForm.pas ================================================
{$IFDEF USEJVCL}
resourcestring
  RsCaption = 'Caption';
  RsComments = 'Comments';
  RsEditComponentEllipsis = 'Edit component...';
{$ENDIF USEJVCL}

//=== JvgMultiResourceEditorForm.pas =========================================
{$IFDEF USEJVCL}
resourcestring
  RsCellControlCaption = 'Control';
  RsCellDefaultCaption = 'Default';
{$ENDIF USEJVCL}

//=== JvGradientCaptionForm.pas ==============================================
resourcestring
  RsCaptionDesigner = 'Edit Captions...';
  RsGradientCaptions = 'Captions';

//=== JvgReportEditorForm.pas ================================================
{$IFDEF USEJVCL}
resourcestring
  RsEditReport = 'Edit report...';
  RsPreviewReportEllipsis = 'Preview report...';
  RsDeleteObject = 'Delete object?';
  RsPagePreview = 'Page Preview';
{$ENDIF USEJVCL}

//=== JvgReportParamsForm.pas ================================================
{$IFDEF USEJVCL}
resourcestring
  RsEditParamsEllipsis = 'Edit params...';
{$ENDIF USEJVCL}

//=== JvGroupHeaderEditor.pas ================================================
resourcestring
  RsStandardFlat = 'Standard/Flat';
  RsWeb = 'Web';

//=== JvgShadowEditor.pas ====================================================
{$IFDEF USEJVCL}
resourcestring
  RsUpdateAllEditControl = 'Update all edit control';
{$ENDIF USEJVCL}

//=== JVHLEditEditor.pas =====================================================

⌨️ 快捷键说明

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