File: tachartstrconsts.pas

package info (click to toggle)
lazarus 4.0%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 275,760 kB
  • sloc: pascal: 2,341,904; xml: 509,420; makefile: 348,726; cpp: 93,608; sh: 3,387; java: 609; perl: 297; sql: 222; ansic: 137
file content (173 lines) | stat: -rw-r--r-- 6,197 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
unit TAChartStrConsts;

{$mode objfpc}{$H+}

interface

resourcestring
  // Series types
  rsAreaSeries = 'Area series';
  rsBarSeries = 'Bar series';
  rsBoxAndWhiskerSeries = 'Box-and-whiskers series';
  rsBubbleSeries = 'Bubble series';
  rsBSplineSeries = 'B-Spline series';
  rsColorMapSeries = 'Color map series';
  rsConstantLine = 'Constant line';
  rsCubicSplineSeries = 'Cubic spline series';
  rsFieldSeries = 'Vector field series';
  rsFunctionSeries = 'Function series';
  rsLeastSquaresFitSeries = 'Least-squares fit series';
  rsLineSeries = 'Line series';
  rsManhattanPlotSeries = 'Manhattan plot series';
  rsOpenHighLowCloseSeries = 'Open-high-low-close series';
  rsParametricCurveSeries = 'Parametric curve series';
  rsPieSeries = 'Pie series';
  rsPolarSeries = 'Polar series';
  rsUserDrawnSeries = 'User-drawn series';
  rsExpressionSeries = 'Math expression series';
  rsExpressionColorMapSeries = 'Math expression color map series';
  rsPolygonSeries = 'Polygon series';

  // Series editor
  sesSeriesEditorTitle = 'Edit series';

  // Data points editor
  desDatapointEditor = 'DataPoints editor';
  desColor = 'Color';
  desText = 'Text';
  desInsertRow = 'Insert row';
  desDeleteRow = 'Delete row';
  desMoveUp = 'Move up';
  desMoveDown = 'Move down';
  desNoNumber = 'Non-numeric value.';
  desNoInteger = 'Value must be an integer.';

  // Axis
  rsLeft = 'Left';
  rsRight = 'Right';
  rsTop = 'Top';
  rsBottom = 'Bottom';
  rsHidden = 'hidden';
  rsInverted = 'inverted';

  // Subcomponents editor
  rsAdd = 'Add';
  rsDelete = 'Delete';
  rsMoveUp = 'Up';
  rsMoveDown = 'Down';

  // Tool editor
  tasToolsEditorTitle = 'Edit tools';

  rsZoomByDrag = 'Zoom by drag';
  rsZoomByClick = 'Zoom by click';
  rsZoomByMousewheel = 'Zoom by mouse-wheel';
  rsPanningByDrag = 'Panning by drag';
  rsPanningByClick = 'Panning by click';
  rsPanningByMousewheel = 'Panning by mouse wheel';
  rsDataPointClick = 'Data point click';
  rsDataPointDrag = 'Data point drag';
  rsDataPointHint = 'Data point hint';
  rsDataPointCrossHair = 'Data point crosshair';
  rsDataPointMarksClickTool = 'Data point marks click';
  rsUserDefinedTool = 'User-defined';
  rsDistanceMeasurement = 'Distance measurement';
  rsAxisClickTool = 'Axis click';
  rsHeaderFooterClickTool = 'Header/footer click';
  rsLegendClickTool = 'Legend click';

  // Chart sources
  rsSourceNotEditable = 'Editable chart source required';
  rsSourceCountError = '%0:s requires a chart source with at least %1:d %2:s value(s) per data point.';
  rsSourceCountError2 = 'This %0:s instance must have at least %1:d %2:s value(s) per data point.';
  rsSourceSortError = 'Selected sorting parameters are not supported by %s.';
  rsListSourceStringFormatError = 'The data value count in the %0:s.DataPoints '+
    'string "%1:s" differs from what is expected from XCount and YCount.';
  rsListSourceNumericError = 'The %0:s.DataPoints string "%1:s" is not a valid number.';
  rsListSourceColorError = 'The %0:s.DataPoints string "%1:s" is not an integer.';

  // Transformations
  tasAxisTransformsEditorTitle = 'Edit axis transformations';
  rsAutoScale = 'Auto scale';
  rsCumulativeNormalDistribution = 'Cumulative normal distribution';
  rsLinear = 'Linear';
  rsLogarithmic = 'Logarithmic';
  rsUserDefined = 'User-defined';
  rsInvalidLogBase = 'Logarithm base must be > 0 and <> 1.';

  // ChartUtils
  tasFailedSubcomponentRename = 'Failed to rename components: %s';

  // ChartCombos
  rsRectangleSymbol = 'Rectangle';
  rsCircleSymbol = 'Circle';
  rsTriangleSymbol = 'Triangle';
  rsCrossSymbol = 'Plus';
  rsDiagCrossSymbol = 'Cross';
  rsStarSymbol = 'Star (lines)';
  rsLowBracketSymbol = 'Low bracket';
  rsHighBracketSymbol = 'High bracket';
  rsLeftBracketSymbol = 'Left bracket';
  rsRightBracketSymbol = 'Right bracket';
  rsDiamondSymbol = 'Diamond';
  rsHexagonSymbol = 'Hexagon';
  rsFullStarSymbol = 'Star (full)';
  rsLeftTriangleSymbol = 'Left triangle';
  rsRightTriangleSymbol = 'Right triangle';
  rsDownTriangleSymbol = 'Down triangle';
  rsVertBarSymbol = 'Vertical bar';
  rsHorBarSymbol = 'Horizontal bar';
  rsPointSymbol = 'Point';
  rsNoSymbol = '(none)';

  rsPSSolid = 'solid line';
  rsPSDash = 'dashed line';
  rsPSDot = 'dotted line';
  rsPSDashDot = 'dash-dot';
  rsPSDashDotDot = 'dash-dot-dot';
  rsPSInsideFrame = 'solid (inside frame)';
  rsPSPattern = 'patterned line';
  rsPSClear = 'no line';

  rsBSSolid = 'solid fill';
  rsBSHorizontal = 'horizontally hatched';
  rsBSVertical = 'vertically hatched';
  rsBSFDiagonal = 'forward-diagonal hatch';
  rsBSBDiagonal = 'backward-diagonal hatch';
  rsBSCross = 'crossed';
  rsBSDiagCross = 'diagonally crossed';
  rsBSClear = 'no fill';
  rsBSImage = 'image fill';
  rsBSPattern = 'pattern fill';

  rsErrInvalidResultType = 'Expression result type must be integer or float. Got "%s".';
//  rsTDistParamError = 'Function tdist() requires parameter "tails" to be 1 or 2. Get %d.';

  // Fit series
  rsErrIllegalFitParamCount = 'The number of fit parameters cannot be less than 1.';
  rsErrFitDimError = 'Non-matching count of x and y values.';
  rsErrFitMoreParamsThanValues = 'There are more fitting parameters than data values.';
  rsErrFitNoFitParams = 'No fit parameters specified.';
  rsErrFitSingular = 'Fitting matrix is (nearly) singular.';
  rsErrFitNoBaseFunctions = 'Not enough user-provided base functions.';
  rsErrNumericalOverflow = 'Numerical overflow.';
  rsFitNumObservations = 'Number of observations';
  rsFitNumFitParams = 'Number of fit parameters';
  rsFitDegreesOfFreedom = 'Degrees of freedom';
  rsFitTotalSumOfSquares = 'Total sum of squares (SST)';
  rsFitRegressionSumOfSquares = 'Regression sum of squares (SSR)';
  rsFitErrorSumOfSquares = 'Error sum of squares (SSE)';
  rsFitCoefficientOfDetermination = 'Coefficient of determination (R2)';
  rsFitAdjCoefficientOfDetermination = 'Adj. coefficient of determination';
  rsFitChiSquared = 'Chi-squared';
  rsFitReducedChiSquared = 'Reduced Chi-squared';
  rsFitResidualStandardError = 'Residual standard error';
  rsFitVarianceRatio = 'Variance ratio F';
  rsFitTValue = 't value';
  rsFitPValue = 'p value';


implementation

end.