home *** CD-ROM | disk | FTP | other *** search
/ Delphi 5 for Professionals / DELPHI5.iso / AddOns / Components / TEECHART / Src Code / TEEPROCO.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1998-10-24  |  3.4 KB  |  101 lines

  1. {*****************************************}
  2. {   TeeChart-Pro 4.0                      }
  3. {   Copyright (c) 1995-98 David Berneda   }
  4. {                                         }
  5. {    Constants for Pro components         }
  6. {*****************************************}
  7. {$I teedefs.inc}
  8. unit TeeProCo;
  9.  
  10. interface
  11.  
  12. {$IFDEF D3}
  13. resourcestring
  14. {$ELSE}
  15. Const
  16. {$ENDIF}
  17.   TeeMsg_GalleryPolar       ='Polar';
  18.   TeeMsg_GalleryCandle      ='Candle';
  19.   TeeMsg_GalleryVolume      ='Volume';
  20.   TeeMsg_GallerySurface     ='Surface';
  21.   TeeMsg_GalleryContour     ='Contour';
  22.   TeeMsg_GalleryBezier      ='Bezier';
  23.   TeeMsg_GalleryPoint3D     ='Point 3D';
  24.   TeeMsg_GalleryRadar       ='Radar';
  25.   TeeMsg_PolyDegreeRange    ='Polynomial degree must be between 1 and 20';
  26.   TeeMsg_AnswerVectorIndex  ='Answer Vector index must be between 1 and %d';
  27.   TeeMsg_FittingError       ='Cannot process fitting';
  28.   TeeMsg_PeriodRange        ='Period must be >= 0';
  29.   TeeMsg_ExpAverageWeight   ='ExpAverage Weight must be between 0 and 1';
  30.   TeeMsg_GalleryErrorBar    ='Error Bar';
  31.   TeeMsg_GalleryError       ='Error';
  32.   TeeMsg_FunctionMomentum    ='Momentum';
  33.   TeeMsg_FunctionExpAverage  ='Exp. Average';
  34.  TeeMsg_FunctionMovingAverage='Moving Average';
  35.   TeeMsg_FunctionRSI         ='R.S.I.';
  36.   TeeMsg_FunctionCurveFitting='Curve Fitting';
  37.   TeeMsg_FunctionTrend       ='Trend';
  38.   TeeMsg_FunctionCumulative  ='Cumulative';
  39.   TeeMsg_FunctionStdDeviation='Std.Deviation';
  40.   TeeMsg_FunctionCount       ='Count';
  41.   TeeMsg_LoadChart           ='Open TeeChart...';
  42.   TeeMsg_SaveChart           ='Save TeeChart...';
  43.   TeeMsg_TeeFiles            ='TeeChart Pro files';
  44.  
  45.   TeeMsg_GallerySamples      ='Samples';
  46.  
  47.   TeeMsg_CannotFindEditor    ='Cannot find Series editor Form: %s';
  48.  
  49.  
  50.   TeeMsg_CannotLoadChartFromURL='Error code: %d downloading Chart from URL: %s';
  51.  
  52.   TeeMsg_Test                ='Test...';
  53.  
  54.   TeeMsg_ValuesDate          ='Date';
  55.   TeeMsg_ValuesOpen          ='Open';
  56.   TeeMsg_ValuesHigh          ='High';
  57.   TeeMsg_ValuesLow           ='Low';
  58.   TeeMsg_ValuesClose         ='Close';
  59.   TeeMsg_ValuesOffset        ='Offset';
  60.   TeeMsg_ValuesStdError      ='StdError';
  61.  
  62.   TeeMsg_Grid3D              ='Grid 3D';
  63.  
  64.   TeeMsg_LowBezierPoints     ='Number of Bezier points should be > 1';
  65.  
  66.   { TeeCommander component... }
  67.  
  68.       TeeCommanMsg_Normal   = 'Normal';
  69.       TeeCommanMsg_Edit     = 'Edit';
  70.       TeeCommanMsg_Print    = 'Print';
  71.       TeeCommanMsg_Copy     = 'Copy';
  72.  
  73.       TeeCommanMsg_Rotating = 'Rotation: %d░ Elevation: %d░';
  74.       TeeCommanMsg_Rotate   = 'Rotate';
  75.  
  76.       TeeCommanMsg_Moving   = 'Horiz.Offset: %d Vert.Offset: %d';
  77.       TeeCommanMsg_Move     = 'Move';
  78.  
  79.       TeeCommanMsg_Zooming  = 'Zoom: %d %%';
  80.       TeeCommanMsg_Zoom     = 'Zoom';
  81.  
  82.       TeeCommanMsg_Depthing = '3D: %d %%';
  83.       TeeCommanMsg_Depth    = 'Depth';
  84.  
  85.       TeeCommanMsg_Chart    ='Chart';
  86.       TeeCommanMsg_Panel    ='Panel';
  87.  
  88.       TeeCommanMsg_RotateLabel='Drag %s to Rotate';
  89.       TeeCommanMsg_MoveLabel  ='Drag %s to Move';
  90.       TeeCommanMsg_ZoomLabel  ='Drag %s to Zoom';
  91.       TeeCommanMsg_DepthLabel ='Drag %s to resize 3D';
  92.  
  93.       TeeCommanMsg_NormalLabel='Drag Left button to Zoom, Right button to Scroll';
  94.       TeeCommanMsg_NormalPieLabel='Drag a Pie Slice to Explode it';
  95.  
  96.       TeeCommanMsg_PieExploding = 'Slice: %d Exploded: %d %%';
  97.  
  98. implementation
  99.  
  100. end.
  101.