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

📄 mxconsts.pas

📁 行业应急系统 包括: 应急系统(待遇核发) 发放系统 开发环境:Delphi5 (sp1)+ Oracle 8.05 MultiExport是一个可以将数据按指定字段倒出
💻 PAS
字号:
{*******************************************************}
{                                                       }
{       Borland Delphi Visual Component Library         }
{                                                       }
{       Copyright (c) 1997,99 Inprise Corporation       }
{                                                       }
{*******************************************************}

unit mxConsts;

{$R mxconsts.RES}

interface

const
  { DecisionCube Dialog help contexts }
  hcDDecisionCubeEditor = 30170;
  hcDDecisionCubeDimensions = 30171;
  hcDDecisionCubeMemoryControl = 30172;
  hcDDecisionCubeDesignerOptions = 30173;
  hcDDecisionCubeLimits = 30174;
  hcDDecisionQueryEditor = 30180;
  hcDDecisionQueryDimensions = 30181;
  hcDDecisionQuerySQLEditor = 30182;

resourcestring
  sRowError             = '行错误';
  { Strings used in the Pivot }
  sAllValues            = '所有值';
  sMovetoRow            = '移动到行区域';
  sMovetoCol            = '移动到列区域';
  sMakeDimOpen          = 'Open Dimension';
  sDrilled              = 'Drilled In';
  sCouldNotOpen         = 'The information requested could not be loaded. ';
  sNoSumsAvailable      = 'No active summaries have been defined. ';
  sNoSumsCouldBeLoaded  = 'Not enough room available to load a summary. ';
  sNoDimsAvailable      = 'No available dimensions have been defined. ';
  sNoDimsCouldBeLoaded  = 'Not enough space available to load a dimension. ';

  sTemplatePrefix       = '模板: ';
  { Strings used in the CrossTabGrid }
  sGridCellError        = '[错误]';
  sTotalCaption         = '合计';
  sActivateLabel        = 'Inactive Dimensions';
  sRowCaption           = 'R';
  sColCaption           = 'C';
  sCaptionMenu1         = '显示数据和小计';
  sCaptionMenu2         = '只显示数据';
  sCaptionMenu3         = 'Display Subtotals Only';
  sDrillIn              = 'Drill in to this value';
  sGridMenu1            = '小计 on/off';
  sGridMenu2            = 'Decision Cube编辑器..';
  sGridMenu3            = 'Decision Query编辑器..';
  sGridMenu4            = '显示详细记录..';

  { Strings used in mxarrays }
  sUnsupportedDataType  = '不支持的数据类型: %s';
  sRowOutOfRange        = '行索引超出范围: %d';
  sColOutOfRange        = '列索引超出范围: %d';
  sDupeItem             = 'Duplicate item in array';
  sArrayIndexOutOfRange = 'Array index out of range : %d';
  sLowCapacityError     = 'The DecisionCube Capacity is low. Please deactivate dimensions or change the data set.';
  sQryNotInitialized    = 'Query could not be run. Check that the query, SQL text, and Database are correct.';
  sSortedListError      = '不允许在已排序的字符串列表上操作.';
  sDuplicateString      = '字符串列表不允许重复.';
  sMaxAllowedSums       = 'The maximum allowed summaries of %d has been exceeded.';
  sGeneralArrayError    = '一般数组错误.';

  {String used in the DecisionSource}
  sDimIndexError        = 'Illegal Dimension Index';

  {String used in the DecisionCube}
  sIllegalValueForBin   = 'Initial Value is not legal for this type of Grouping';
  sIllegalDimMap        = 'Dimension Map is not the correct size';
  sDimMapActiveError    = 'Cannot perform this action on an active Dimension Map';
  sNotAvailable         = 'Not Available';
  sGetValueCounts       = 'Information required to do Maximum Cell limit is not current.  Do you want to fetch it now?';
  sDateBinningNotAllowed = 'Date grouping is not allowed for fields of this type';
  sEmptyDataSet         = 'Cannot build the Decision Cube with an empty data set';

  { Strings use in Query UI}
  sNoDataSet            = 'Data set property is not assigned';
  sNoAggs               = 'No summaries are defined. ';
  sNoDims               = 'No dimension fields are defined. ';
  sUnknownDims          = 'The dimension types for this dataset cannot be determined automatically.  You must map the fields to dimensions or summaries with the Decision Cube Editor';
  sGroupsMissing        = 'All dimension fields must be grouped. ';
  sDecisionQueryError   = 'The query may be incorrectly defined, or you may need to map its fields to active dimensions or summaries with the Decision Cube Editor';
  sDataSetError         = 'The dataset may be incorrectly defined, or you may need to map its fields to active dimensions or summaries with the Decision Cube Editor';
  sQueryError           = 'The query may be incorrectly defined, or you may need to map its fields to active dimensions or summaries with the Decision Cube Editor';
  sCountStar            = 'COUNTALL';  { INTL must be in upper case }
  sAddAvgWarning        = 'Average is calculated using sum and count summaries for each field. The necessary summaries have been added.';
  sAddAvgStarWarning    = 'Average is calculated using a field sum and count(*).  The necessary summaries have been added.';

  { Query UI Designer strings}
  sQueryLegal           = '查询合法.';
  sAddFieldExists       = ' is already in the query';
  sAggTypeNotAllowed    = ' is not an allowed summary type';
  sDimTypeNotAllowed    = ' is not an allowed dimension type';
  sAverageRequires      = 'Average summaries use Sum and Count';
  sWantToExit           = 'Do you still want to Exit?';
  sQueryIllegal         = 'The query you have created is not legal.';
  sQueryEditIllegal     = 'The query you have entered is not legal.  Please correct it before continuing.';
  sRemoveFieldError     = 'Could not remove the field';
  sAllFields            = 'All Fields';
  sQueryFields          = 'Query Fields';
  sEditDone             = '&Edit Done';
  sEditQuery            = '&Edit Query';

  { Used by the query parser}
  sQParseRemovedField   = 'One or more fields of a type which cannot be tabulated were removed from the query.';

  { used by mxstore }
  sCubeLimitsExceeded   = 'Decision Cube size excedes limits';
  sMaxAllowedDims       = 'The maximum allowed dimensions of %d has been exceeded.';
  sMaxAllowedCells      = 'Total cell count of %d exceeds the maximum of %d.';
  sUnsupportedFieldType = 'Field %s has an unsupported data type: %s';
  sFetchValues          = 'Scanning data set values...';
  sUserCanceled         = 'User canceled DecisionCube population.';
  sBinningValues        = 'Grouping values ...';
  sCreatingIndexes      = 'Creating Cube index for %s ...';
  sCreateDerivedSummaryError = 'Unable to create derived summary.';
  sTrue                 = 'True';
  sFalse                = 'False';
  sBinTypeMismatch      = 'The bin type does not match the fieldtype.';
  sFatalCacheError      = 'Fatal error in cache: code: %d';
  sStringTypeNoSupported = 'String Data type not supported for summaries';
  sDataSetTooLarge      = 'Dataset is too large';
  sBuildingDataStore    = 'Building data store...';

  {String used in MXtables and mxcommon and mxqparse}
  sSumLabel             = '%s合计';
  sCountLabel           = '%s总数';
  sMaxLabel             = '%s最大值';
  sMinLabel             = '%s最小值';
  sAverageLabel         = '%s平均值';
  sVarLabel             = 'Variance of %s';
  sSDLabel              = 'Standard Deviation of %s';
  sAggLabel             = 'Summary of %s';
  sUnsupportedVarType   = '不支持的数据类型%d';
  sOtherValues          = 'Other Values';

  sSelectFromError      = 'Query lacks a Select/From clause.';
  sArgumentExpected     = 'No argument provided for an operator or summary';
  sGroupOnExpressionError = 'An expression cannot be used for a grouping field';

  SOutofBounds          = '越界';
  sIDAPILangID          = '0009';

implementation

end.

⌨️ 快捷键说明

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