PageRenderTime 63ms CodeModel.GetById 30ms RepoModel.GetById 0ms app.codeStats 1ms

/fb/cuentas/php-jpgraph/lang/en.inc.php

https://bitbucket.org/sergiohzlz/reportaprod
PHP | 500 lines | 322 code | 75 blank | 103 comment | 0 complexity | acd488e4bb464ad553655cce7cb33d00 MD5 | raw file
Possible License(s): GPL-2.0, GPL-3.0, AGPL-1.0, LGPL-2.1
  1. <?php
  2. /*=======================================================================
  3. // File: EN.INC.PHP
  4. // Description: English language file for error messages
  5. // Created: 2006-01-25
  6. // Ver: $Id: en.inc.php 993 2008-03-30 21:17:41Z ljp $
  7. //
  8. // Copyright (c) Aditus Consulting. All rights reserved.
  9. //========================================================================
  10. */
  11. // Note: Format of each error message is array(<error message>,<number of arguments>)
  12. $_jpg_messages = array(
  13. /*
  14. ** Headers already sent error. This is formatted as HTML different since this will be sent back directly as text
  15. */
  16. 10 => array('<table border="1"><tr><td style="color:darkred; font-size:1.2em;"><b>JpGraph Error:</b>
  17. HTTP headers have already been sent.<br>Caused by output from file <b>%s</b> at line <b>%d</b>.</td></tr><tr><td><b>Explanation:</b><br>HTTP headers have already been sent back to the browser indicating the data as text before the library got a chance to send it\'s image HTTP header to this browser. This makes it impossible for the library to send back image data to the browser (since that would be interpretated as text by the browser and show up as junk text).<p>Most likely you have some text in your script before the call to <i>Graph::Stroke()</i>. If this texts gets sent back to the browser the browser will assume that all data is plain text. Look for any text, even spaces and newlines, that might have been sent back to the browser. <p>For example it is a common mistake to leave a blank line before the opening "<b>&lt;?php</b>".</td></tr></table>',2),
  18. /*
  19. ** Setup errors
  20. */
  21. 11 => array('No path specified for CACHE_DIR. Please specify CACHE_DIR manually in jpg-config.inc',0),
  22. 12 => array('No path specified for TTF_DIR and path can not be determined automatically. Please specify TTF_DIR manually (in jpg-config.inc).',0),
  23. 13 => array('The installed PHP version (%s) is not compatible with this release of the library. The library requires at least PHP version %s',2),
  24. /*
  25. ** jpgraph_bar
  26. */
  27. 2001 => array('Number of colors is not the same as the number of patterns in BarPlot::SetPattern()',0),
  28. 2002 => array('Unknown pattern specified in call to BarPlot::SetPattern()',0),
  29. 2003 => array('Number of X and Y points are not equal. Number of X-points: %d Number of Y-points: %d',2),
  30. 2004 => array('All values for a barplot must be numeric. You have specified value nr [%d] == %s',2),
  31. 2005 => array('You have specified an empty array for shadow colors in the bar plot.',0),
  32. 2006 => array('Unknown position for values on bars : %s',1),
  33. 2007 => array('Cannot create GroupBarPlot from empty plot array.',0),
  34. 2008 => array('Group bar plot element nbr %d is undefined or empty.',0),
  35. 2009 => array('One of the objects submitted to GroupBar is not a BarPlot. Make sure that you create the GroupBar plot from an array of BarPlot or AccBarPlot objects. (Class = %s)',1),
  36. 2010 => array('Cannot create AccBarPlot from empty plot array.',0),
  37. 2011 => array('Acc bar plot element nbr %d is undefined or empty.',1),
  38. 2012 => array('One of the objects submitted to AccBar is not a BarPlot. Make sure that you create the AccBar plot from an array of BarPlot objects. (Class=%s)',1),
  39. 2013 => array('You have specified an empty array for shadow colors in the bar plot.',0),
  40. 2014 => array('Number of datapoints for each data set in accbarplot must be the same',0),
  41. /*
  42. ** jpgraph_date
  43. */
  44. 3001 => array('It is only possible to use either SetDateAlign() or SetTimeAlign() but not both',0),
  45. /*
  46. ** jpgraph_error
  47. */
  48. 4002 => array('Error in input data to LineErrorPlot. Number of data points must be a multiple of 3',0),
  49. /*
  50. ** jpgraph_flags
  51. */
  52. 5001 => array('Unknown flag size (%d).',1),
  53. 5002 => array('Flag index %s does not exist.',1),
  54. 5003 => array('Invalid ordinal number (%d) specified for flag index.',1),
  55. 5004 => array('The (partial) country name %s does not have a corresponding flag image. The flag may still exist but under another name, e.g. instead of "usa" try "united states".',1),
  56. /*
  57. ** jpgraph_gantt
  58. */
  59. 6001 => array('Internal error. Height for ActivityTitles is < 0',0),
  60. 6002 => array('You can\'t specify negative sizes for Gantt graph dimensions. Use 0 to indicate that you want the library to automatically determine a dimension.',0),
  61. 6003 => array('Invalid format for Constrain parameter at index=%d in CreateSimple(). Parameter must start with index 0 and contain arrays of (Row,Constrain-To,Constrain-Type)',1),
  62. 6004 => array('Invalid format for Progress parameter at index=%d in CreateSimple(). Parameter must start with index 0 and contain arrays of (Row,Progress)',1),
  63. 6005 => array('SetScale() is not meaningful with Gantt charts.',0),
  64. 6006 => array('Cannot autoscale Gantt chart. No dated activities exist. [GetBarMinMax() start >= n]',0),
  65. 6007 => array('Sanity check for automatic Gantt chart size failed. Either the width (=%d) or height (=%d) is larger than MAX_GANTTIMG_SIZE. This could potentially be caused by a wrong date in one of the activities.',2),
  66. 6008 => array('You have specified a constrain from row=%d to row=%d which does not have any activity',2),
  67. 6009 => array('Unknown constrain type specified from row=%d to row=%d',2),
  68. 6010 => array('Illegal icon index for Gantt builtin icon [%d]',1),
  69. 6011 => array('Argument to IconImage must be string or integer',0),
  70. 6012 => array('Unknown type in Gantt object title specification',0),
  71. 6015 => array('Illegal vertical position %d',1),
  72. 6016 => array('Date string (%s) specified for Gantt activity can not be interpretated. Please make sure it is a valid time string, e.g. 2005-04-23 13:30',1),
  73. 6017 => array('Unknown date format in GanttScale (%s).',1),
  74. 6018 => array('Interval for minutes must divide the hour evenly, e.g. 1,5,10,12,15,20,30 etc You have specified an interval of %d minutes.',1),
  75. 6019 => array('The available width (%d) for minutes are to small for this scale to be displayed. Please use auto-sizing or increase the width of the graph.',1),
  76. 6020 => array('Interval for hours must divide the day evenly, e.g. 0:30, 1:00, 1:30, 4:00 etc. You have specified an interval of %d',1),
  77. 6021 => array('Unknown formatting style for week.',0),
  78. 6022 => array('Gantt scale has not been specified.',0),
  79. 6023 => array('If you display both hour and minutes the hour interval must be 1 (Otherwise it doesn\'t make sense to display minutes).',0),
  80. 6024 => array('CSIM Target must be specified as a string. Start of target is: %d',1),
  81. 6025 => array('CSIM Alt text must be specified as a string. Start of alt text is: %d',1),
  82. 6027 => array('Progress value must in range [0, 1]',0),
  83. 6028 => array('Specified height (%d) for gantt bar is out of range.',1),
  84. 6029 => array('Offset for vertical line must be in range [0,1]',0),
  85. 6030 => array('Unknown arrow direction for link.',0),
  86. 6031 => array('Unknown arrow type for link.',0),
  87. 6032 => array('Internal error: Unknown path type (=%d) specified for link.',1),
  88. /*
  89. ** jpgraph_gradient
  90. */
  91. 7001 => array('Unknown gradient style (=%d).',1),
  92. /*
  93. ** jpgraph_iconplot
  94. */
  95. 8001 => array('Mix value for icon must be between 0 and 100.',0),
  96. 8002 => array('Anchor position for icons must be one of "top", "bottom", "left", "right" or "center"',0),
  97. 8003 => array('It is not possible to specify both an image file and a country flag for the same icon.',0),
  98. 8004 => array('In order to use Country flags as icons you must include the "jpgraph_flags.php" file.',0),
  99. /*
  100. ** jpgraph_imgtrans
  101. */
  102. 9001 => array('Value for image transformation out of bounds. Vanishing point on horizon must be specified as a value between 0 and 1.',0),
  103. /*
  104. ** jpgraph_lineplot
  105. */
  106. 10001 => array('LinePlot::SetFilled() is deprecated. Use SetFillColor()',0),
  107. 10002 => array('Plot too complicated for fast line Stroke. Use standard Stroke()',0),
  108. 10003 => array('Each plot in an accumulated lineplot must have the same number of data points.',0),
  109. /*
  110. ** jpgraph_log
  111. */
  112. 11001 => array('Your data contains non-numeric values.',0),
  113. 11002 => array('Negative data values can not be used in a log scale.',0),
  114. 11003 => array('Your data contains non-numeric values.',0),
  115. 11004 => array('Scale error for logarithmic scale. You have a problem with your data values. The max value must be greater than 0. It is mathematically impossible to have 0 in a logarithmic scale.',0),
  116. 11005 => array('Specifying tick interval for a logarithmic scale is undefined. Remove any calls to SetTextLabelStart() or SetTextTickInterval() on the logarithmic scale.',0),
  117. /*
  118. ** jpgraph_mgraph
  119. */
  120. 12001 => array("You are using GD 2.x and are trying to use a background images on a non truecolor image. To use background images with GD 2.x it is necessary to enable truecolor by setting the USE_TRUECOLOR constant to TRUE. Due to a bug in GD 2.0.1 using any truetype fonts with truecolor images will result in very poor quality fonts.",0),
  121. 12002 => array('Incorrect file name for MGraph::SetBackgroundImage() : %s Must have a valid image extension (jpg,gif,png) when using auto detection of image type',1),
  122. 12003 => array('Unknown file extension (%s) in MGraph::SetBackgroundImage() for filename: %s',2),
  123. 12004 => array('The image format of your background image (%s) is not supported in your system configuration. ',1),
  124. 12005 => array('Can\'t read background image: %s',1),
  125. 12006 => array('Illegal sizes specified for width or height when creating an image, (width=%d, height=%d)',2),
  126. 12007 => array('Argument to MGraph::Add() is not a valid GD image handle.',0),
  127. 12008 => array('Your PHP (and GD-lib) installation does not appear to support any known graphic formats.',0),
  128. 12009 => array('Your PHP installation does not support the chosen graphic format: %s',1),
  129. 12010 => array('Can\'t create or stream image to file %s Check that PHP has enough permission to write a file to the current directory.',1),
  130. 12011 => array('Can\'t create truecolor image. Check that you really have GD2 library installed.',0),
  131. 12012 => array('Can\'t create image. Check that you really have GD2 library installed.',0),
  132. /*
  133. ** jpgraph_pie3d
  134. */
  135. 14001 => array('Pie3D::ShowBorder() . Deprecated function. Use Pie3D::SetEdge() to control the edges around slices.',0),
  136. 14002 => array('PiePlot3D::SetAngle() 3D Pie projection angle must be between 5 and 85 degrees.',0),
  137. 14003 => array('Internal assertion failed. Pie3D::Pie3DSlice',0),
  138. 14004 => array('Slice start angle must be between 0 and 360 degrees.',0),
  139. 14005 => array('Pie3D Internal error: Trying to wrap twice when looking for start index',0,),
  140. 14006 => array('Pie3D Internal Error: Z-Sorting algorithm for 3D Pies is not working properly (2). Trying to wrap twice while stroking.',0),
  141. 14007 => array('Width for 3D Pie is 0. Specify a size > 0',0),
  142. /*
  143. ** jpgraph_pie
  144. */
  145. 15001 => array('PiePLot::SetTheme() Unknown theme: %s',1),
  146. 15002 => array('Argument to PiePlot::ExplodeSlice() must be an integer',0),
  147. 15003 => array('Argument to PiePlot::Explode() must be an array with integer distances.',0),
  148. 15004 => array('Slice start angle must be between 0 and 360 degrees.',0),
  149. 15005 => array('PiePlot::SetFont() is deprecated. Use PiePlot->value->SetFont() instead.',0),
  150. 15006 => array('PiePlot::SetSize() Radius for pie must either be specified as a fraction [0, 0.5] of the size of the image or as an absolute size in pixels in the range [10, 1000]',0),
  151. 15007 => array('PiePlot::SetFontColor() is deprecated. Use PiePlot->value->SetColor() instead.',0),
  152. 15008 => array('PiePlot::SetLabelType() Type for pie plots must be 0 or 1 (not %d).',1),
  153. 15009 => array('Illegal pie plot. Sum of all data is zero for Pie Plot',0),
  154. 15010 => array('Sum of all data is 0 for Pie.',0),
  155. 15011 => array('In order to use image transformation you must include the file jpgraph_imgtrans.php in your script.',0),
  156. /*
  157. ** jpgraph_plotband
  158. */
  159. 16001 => array('Density for pattern must be between 1 and 100. (You tried %f)',1),
  160. 16002 => array('No positions specified for pattern.',0),
  161. 16003 => array('Unknown pattern specification (%d)',0),
  162. 16004 => array('Min value for plotband is larger than specified max value. Please correct.',0),
  163. /*
  164. ** jpgraph_polar
  165. */
  166. 17001 => array('Polar plots must have an even number of data point. Each data point is a tuple (angle,radius).',0),
  167. 17002 => array('Unknown alignment specified for X-axis title. (%s)',1),
  168. //17003 => array('Set90AndMargin() is not supported for polar graphs.',0),
  169. 17004 => array('Unknown scale type for polar graph. Must be "lin" or "log"',0),
  170. /*
  171. ** jpgraph_radar
  172. */
  173. 18001 => array('Client side image maps not supported for RadarPlots.',0),
  174. 18002 => array('RadarGraph::SupressTickMarks() is deprecated. Use HideTickMarks() instead.',0),
  175. 18003 => array('Illegal scale for radarplot (%s). Must be \'lin\' or \'log\'',1),
  176. 18004 => array('Radar Plot size must be between 0.1 and 1. (Your value=%f)',1),
  177. 18005 => array('RadarPlot Unsupported Tick density: %d',1),
  178. 18006 => array('Minimum data %f (Radar plots should only be used when all data points > 0)',1),
  179. 18007 => array('Number of titles does not match number of points in plot.',0),
  180. 18008 => array('Each radar plot must have the same number of data points.',0),
  181. /*
  182. ** jpgraph_regstat
  183. */
  184. 19001 => array('Spline: Number of X and Y coordinates must be the same',0),
  185. 19002 => array('Invalid input data for spline. Two or more consecutive input X-values are equal. Each input X-value must differ since from a mathematical point of view it must be a one-to-one mapping, i.e. each X-value must correspond to exactly one Y-value.',0),
  186. 19003 => array('Bezier: Number of X and Y coordinates must be the same',0),
  187. /*
  188. ** jpgraph_scatter
  189. */
  190. 20001 => array('Fieldplots must have equal number of X and Y points.',0),
  191. 20002 => array('Fieldplots must have an angle specified for each X and Y points.',0),
  192. 20003 => array('Scatterplot must have equal number of X and Y points.',0),
  193. /*
  194. ** jpgraph_stock
  195. */
  196. 21001 => array('Data values for Stock charts must contain an even multiple of %d data points.',1),
  197. /*
  198. ** jpgraph_plotmark
  199. */
  200. 23001 => array('This marker "%s" does not exist in color with index: %d',2),
  201. 23002 => array('Mark color index too large for marker "%s"',1),
  202. 23003 => array('A filename must be specified if you set the mark type to MARK_IMG.',0),
  203. /*
  204. ** jpgraph_utils
  205. */
  206. 24001 => array('FuncGenerator : No function specified. ',0),
  207. 24002 => array('FuncGenerator : Syntax error in function specification ',0),
  208. 24003 => array('DateScaleUtils: Unknown tick type specified in call to GetTicks()',0),
  209. /*
  210. ** jpgraph
  211. */
  212. 25001 => array('This PHP installation is not configured with the GD library. Please recompile PHP with GD support to run JpGraph. (Neither function imagetypes() nor imagecreatefromstring() does exist)',0),
  213. 25002 => array('Your PHP installation does not seem to have the required GD library. Please see the PHP documentation on how to install and enable the GD library.',0),
  214. 25003 => array('General PHP error : At %s:%d : %s',3),
  215. 25004 => array('General PHP error : %s ',1),
  216. 25005 => array('Can\'t access PHP_SELF, PHP global variable. You can\'t run PHP from command line if you want to use the \'auto\' naming of cache or image files.',0),
  217. 25006 => array('Usage of FF_CHINESE (FF_BIG5) font family requires that your PHP setup has the iconv() function. By default this is not compiled into PHP (needs the "--width-iconv" when configured).',0),
  218. 25007 => array('You are trying to use the locale (%s) which your PHP installation does not support. Hint: Use \'\' to indicate the default locale for this geographic region.',1),
  219. 25008 => array('Image width/height argument in Graph::Graph() must be numeric',0),
  220. 25009 => array('You must specify what scale to use with a call to Graph::SetScale()',0),
  221. 25010 => array('Graph::Add() You tried to add a null plot to the graph.',0),
  222. 25011 => array('Graph::AddY2() You tried to add a null plot to the graph.',0),
  223. 25012 => array('Graph::AddYN() You tried to add a null plot to the graph.',0),
  224. 25013 => array('You can only add standard plots to multiple Y-axis',0),
  225. 25014 => array('Graph::AddText() You tried to add a null text to the graph.',0),
  226. 25015 => array('Graph::AddLine() You tried to add a null line to the graph.',0),
  227. 25016 => array('Graph::AddBand() You tried to add a null band to the graph.',0),
  228. 25017 => array('You are using GD 2.x and are trying to use a background images on a non truecolor image. To use background images with GD 2.x it is necessary to enable truecolor by setting the USE_TRUECOLOR constant to TRUE. Due to a bug in GD 2.0.1 using any truetype fonts with truecolor images will result in very poor quality fonts.',0),
  229. 25018 => array('Incorrect file name for Graph::SetBackgroundImage() : "%s" Must have a valid image extension (jpg,gif,png) when using auto detection of image type',1),
  230. 25019 => array('Unknown file extension (%s) in Graph::SetBackgroundImage() for filename: "%s"',2),
  231. 25020 => array('Graph::SetScale(): Specified Max value must be larger than the specified Min value.',0),
  232. 25021 => array('Unknown scale specification for Y-scale. (%s)',1),
  233. 25022 => array('Unknown scale specification for X-scale. (%s)',1),
  234. 25023 => array('Unsupported Y2 axis type: "%s" Must be one of (lin,log,int)',1),
  235. 25024 => array('Unsupported Y axis type: "%s" Must be one of (lin,log,int)',1),
  236. 25025 => array('Unsupported Tick density: %d',1),
  237. 25026 => array('Can\'t draw unspecified Y-scale. You have either: 1. Specified an Y axis for auto scaling but have not supplied any plots. 2. Specified a scale manually but have forgot to specify the tick steps',0),
  238. 25027 => array('Can\'t open cached CSIM "%s" for reading.',1),
  239. 25028 => array('Apache/PHP does not have permission to write to the CSIM cache directory (%s). Check permissions.',1),
  240. 25029 => array('Can\'t write CSIM "%s" for writing. Check free space and permissions.',1),
  241. 25030 => array('Missing script name in call to StrokeCSIM(). You must specify the name of the actual image script as the first parameter to StrokeCSIM().',0),
  242. 25031 => array('You must specify what scale to use with a call to Graph::SetScale().',0),
  243. 25032 => array('No plots for Y-axis nbr:%d',1),
  244. 25033 => array('',0),
  245. 25034 => array('Can\'t draw unspecified X-scale. No plots specified.',0),
  246. 25035 => array('You have enabled clipping. Clipping is only supported for graphs at 0 or 90 degrees rotation. Please adjust you current angle (=%d degrees) or disable clipping.',1),
  247. 25036 => array('Unknown AxisStyle() : %s',1),
  248. 25037 => array('The image format of your background image (%s) is not supported in your system configuration. ',1),
  249. 25038 => array('Background image seems to be of different type (has different file extension) than specified imagetype. Specified: %s File: %s',2),
  250. 25039 => array('Can\'t read background image: "%s"',1),
  251. 25040 => array('It is not possible to specify both a background image and a background country flag.',0),
  252. 25041 => array('In order to use Country flags as backgrounds you must include the "jpgraph_flags.php" file.',0),
  253. 25042 => array('Unknown background image layout',0),
  254. 25043 => array('Unknown title background style.',0),
  255. 25044 => array('Cannot use auto scaling since it is impossible to determine a valid min/max value of the Y-axis (only null values).',0),
  256. 25045 => array('Font families FF_HANDWRT and FF_BOOK are no longer available due to copyright problem with these fonts. Fonts can no longer be distributed with JpGraph. Please download fonts from http://corefonts.sourceforge.net/',0),
  257. 25046 => array('Specified TTF font family (id=%d) is unknown or does not exist. Please note that TTF fonts are not distributed with JpGraph for copyright reasons. You can find the MS TTF WEB-fonts (arial, courier etc) for download at http://corefonts.sourceforge.net/',1),
  258. 25047 => array('Style %s is not available for font family %s',2),
  259. 25048 => array('Unknown font style specification [%s].',1),
  260. 25049 => array('Font file "%s" is not readable or does not exist.',1),
  261. 25050 => array('First argument to Text::Text() must be a string.',0),
  262. 25051 => array('Invalid direction specified for text.',0),
  263. 25052 => array('PANIC: Internal error in SuperScript::Stroke(). Unknown vertical alignment for text',0),
  264. 25053 => array('PANIC: Internal error in SuperScript::Stroke(). Unknown horizontal alignment for text',0),
  265. 25054 => array('Internal error: Unknown grid axis %s',1),
  266. 25055 => array('Axis::SetTickDirection() is deprecated. Use Axis::SetTickSide() instead',0),
  267. 25056 => array('SetTickLabelMargin() is deprecated. Use Axis::SetLabelMargin() instead.',0),
  268. 25057 => array('SetTextTicks() is deprecated. Use SetTextTickInterval() instead.',0),
  269. 25058 => array('Text label interval must be specified >= 1.',0),
  270. 25059 => array('SetLabelPos() is deprecated. Use Axis::SetLabelSide() instead.',0),
  271. 25060 => array('Unknown alignment specified for X-axis title. (%s)',1),
  272. 25061 => array('Unknown alignment specified for Y-axis title. (%s)',1),
  273. 25062 => array('Labels at an angle are not supported on Y-axis',0),
  274. 25063 => array('Ticks::SetPrecision() is deprecated. Use Ticks::SetLabelFormat() (or Ticks::SetFormatCallback()) instead',0),
  275. 25064 => array('Minor or major step size is 0. Check that you haven\'t got an accidental SetTextTicks(0) in your code. If this is not the case you might have stumbled upon a bug in JpGraph. Please report this and if possible include the data that caused the problem',0),
  276. 25065 => array('Tick positions must be specified as an array()',0),
  277. 25066 => array('When manually specifying tick positions and labels the number of labels must be the same as the number of specified ticks.',0),
  278. 25067 => array('Your manually specified scale and ticks is not correct. The scale seems to be too small to hold any of the specified tick marks.',0),
  279. 25068 => array('A plot has an illegal scale. This could for example be that you are trying to use text auto scaling to draw a line plot with only one point or that the plot area is too small. It could also be that no input data value is numeric (perhaps only \'-\' or \'x\')',0),
  280. 25069 => array('Grace must be larger then 0',0),
  281. 25070 => array('Either X or Y data arrays contains non-numeric values. Check that the data is really specified as numeric data and not as strings. It is an error to specify data for example as \'-2345.2\' (using quotes).',0),
  282. 25071 => array('You have specified a min value with SetAutoMin() which is larger than the maximum value used for the scale. This is not possible.',0),
  283. 25072 => array('You have specified a max value with SetAutoMax() which is smaller than the minimum value used for the scale. This is not possible.',0),
  284. 25073 => array('Internal error. Integer scale algorithm comparison out of bound (r=%f)',1),
  285. 25074 => array('Internal error. The scale range is negative (%f) [for %s scale] This problem could potentially be caused by trying to use \"illegal\" values in the input data arrays (like trying to send in strings or only NULL values) which causes the auto scaling to fail.',2),
  286. 25075 => array('Can\'t automatically determine ticks since min==max.',0),
  287. 25077 => array('Adjustment factor for color must be > 0',0),
  288. 25078 => array('Unknown color: %s',1),
  289. 25079 => array('Unknown color specification: %s, size=%d',2),
  290. 25080 => array('Alpha parameter for color must be between 0.0 and 1.0',0),
  291. 25081 => array('Selected graphic format is either not supported or unknown [%s]',1),
  292. 25082 => array('Illegal sizes specified for width or height when creating an image, (width=%d, height=%d)',2),
  293. 25083 => array('Illegal image size when copying image. Size for copied to image is 1 pixel or less.',0),
  294. 25084 => array('Failed to create temporary GD canvas. Possible Out of memory problem.',0),
  295. 25085 => array('An image can not be created from the supplied string. It is either in a format not supported or the string is representing an corrupt image.',0),
  296. 25086 => array('You only seem to have GD 1.x installed. To enable Alphablending requires GD 2.x or higher. Please install GD or make sure the constant USE_GD2 is specified correctly to reflect your installation. By default it tries to auto detect what version of GD you have installed. On some very rare occasions it may falsely detect GD2 where only GD1 is installed. You must then set USE_GD2 to false.',0),
  297. 25087 => array('This PHP build has not been configured with TTF support. You need to recompile your PHP installation with FreeType support.',0),
  298. 25088 => array('You have a misconfigured GD font support. The call to imagefontwidth() fails.',0),
  299. 25089 => array('You have a misconfigured GD font support. The call to imagefontheight() fails.',0),
  300. 25090 => array('Unknown direction specified in call to StrokeBoxedText() [%s]',1),
  301. 25091 => array('Internal font does not support drawing text at arbitrary angle. Use TTF fonts instead.',0),
  302. 25092 => array('There is either a configuration problem with TrueType or a problem reading font file "%s" Make sure file exists and is in a readable place for the HTTP process. (If \'basedir\' restriction is enabled in PHP then the font file must be located in the document root.). It might also be a wrongly installed FreeType library. Try upgrading to at least FreeType 2.1.13 and recompile GD with the correct setup so it can find the new FT library.',1),
  303. 25093 => array('Can not read font file "%s" in call to Image::GetBBoxTTF. Please make sure that you have set a font before calling this method and that the font is installed in the TTF directory.',1),
  304. 25094 => array('Direction for text most be given as an angle between 0 and 90.',0),
  305. 25095 => array('Unknown font font family specification. ',0),
  306. 25096 => array('Can\'t allocate any more colors in palette image. Image has already allocated maximum of %d colors and the palette is now full. Change to a truecolor image instead',0),
  307. 25097 => array('Color specified as empty string in PushColor().',0),
  308. 25098 => array('Negative Color stack index. Unmatched call to PopColor()',0),
  309. 25099 => array('Parameters for brightness and Contrast out of range [-1,1]',0),
  310. 25100 => array('Problem with color palette and your GD setup. Please disable anti-aliasing or use GD2 with true-color. If you have GD2 library installed please make sure that you have set the USE_GD2 constant to true and truecolor is enabled.',0),
  311. 25101 => array('Illegal numeric argument to SetLineStyle(): (%d)',1),
  312. 25102 => array('Illegal string argument to SetLineStyle(): %s',1),
  313. 25103 => array('Illegal argument to SetLineStyle %s',1),
  314. 25104 => array('Unknown line style: %s',1),
  315. 25105 => array('NULL data specified for a filled polygon. Check that your data is not NULL.',0),
  316. 25106 => array('Image::FillToBorder : Can not allocate more colors',0),
  317. 25107 => array('Can\'t write to file "%s". Check that the process running PHP has enough permission.',1),
  318. 25108 => array('Can\'t stream image. This is most likely due to a faulty PHP/GD setup. Try to recompile PHP and use the built-in GD library that comes with PHP.',0),
  319. 25109 => array('Your PHP (and GD-lib) installation does not appear to support any known graphic formats. You need to first make sure GD is compiled as a module to PHP. If you also want to use JPEG images you must get the JPEG library. Please see the PHP docs for details.',0),
  320. 25110 => array('Your PHP installation does not support the chosen graphic format: %s',1),
  321. 25111 => array('Can\'t delete cached image %s. Permission problem?',1),
  322. 25112 => array('Cached imagefile (%s) has file date in the future.',1),
  323. 25113 => array('Can\'t delete cached image "%s". Permission problem?',1),
  324. 25114 => array('PHP has not enough permissions to write to the cache file "%s". Please make sure that the user running PHP has write permission for this file if you wan to use the cache system with JpGraph.',1),
  325. 25115 => array('Can\'t set permission for cached image "%s". Permission problem?',1),
  326. 25116 => array('Cant open file from cache "%s"',1),
  327. 25117 => array('Can\'t open cached image "%s" for reading.',1),
  328. 25118 => array('Can\'t create directory "%s". Make sure PHP has write permission to this directory.',1),
  329. 25119 => array('Can\'t set permissions for "%s". Permission problems?',1),
  330. 25120 => array('Position for legend must be given as percentage in range 0-1',0),
  331. 25121 => array('Empty input data array specified for plot. Must have at least one data point.',0),
  332. 25122 => array('Stroke() must be implemented by concrete subclass to class Plot',0),
  333. 25123 => array('You can\'t use a text X-scale with specified X-coords. Use a "int" or "lin" scale instead.',0),
  334. 25124 => array('The input data array must have consecutive values from position 0 and forward. The given y-array starts with empty values (NULL)',0),
  335. 25125 => array('Illegal direction for static line',0),
  336. 25126 => array('Can\'t create truecolor image. Check that the GD2 library is properly setup with PHP.',0),
  337. 25127 => array('The library has been configured for automatic encoding conversion of Japanese fonts. This requires that PHP has the mb_convert_encoding() function. Your PHP installation lacks this function (PHP needs the "--enable-mbstring" when compiled).',0),
  338. 25128 => array('The function imageantialias() is not available in your PHP installation. Use the GD version that comes with PHP and not the standalone version.',0),
  339. 25129 => array('Anti-alias can not be used with dashed lines. Please disable anti-alias or use solid lines.',0),
  340. /*
  341. **---------------------------------------------------------------------------------------------
  342. ** Pro-version strings
  343. **---------------------------------------------------------------------------------------------
  344. */
  345. /*
  346. ** jpgraph_table
  347. */
  348. 27001 => array('GTextTable: Invalid argument to Set(). Array argument must be 2 dimensional',0),
  349. 27002 => array('GTextTable: Invalid argument to Set()',0),
  350. 27003 => array('GTextTable: Wrong number of arguments to GTextTable::SetColor()',0),
  351. 27004 => array('GTextTable: Specified cell range to be merged is not valid.',0),
  352. 27005 => array('GTextTable: Cannot merge already merged cells in the range: (%d,%d) to (%d,%d)',4),
  353. 27006 => array('GTextTable: Column argument = %d is outside specified table size.',1),
  354. 27007 => array('GTextTable: Row argument = %d is outside specified table size.',1),
  355. 27008 => array('GTextTable: Column and row size arrays must match the dimensions of the table',0),
  356. 27009 => array('GTextTable: Number of table columns or rows are 0. Make sure Init() or Set() is called.',0),
  357. 27010 => array('GTextTable: No alignment specified in call to SetAlign()',0),
  358. 27011 => array('GTextTable: Unknown alignment specified in SetAlign(). Horizontal=%s, Vertical=%s',2),
  359. 27012 => array('GTextTable: Internal error. Invalid alignment specified =%s',1),
  360. 27013 => array('GTextTable: Argument to FormatNumber() must be a string.',0),
  361. 27014 => array('GTextTable: Table is not initilaized with either a call to Set() or Init()',0),
  362. 27015 => array('GTextTable: Cell image constrain type must be TIMG_WIDTH or TIMG_HEIGHT',0),
  363. /*
  364. ** jpgraph_windrose
  365. */
  366. 22001 => array('Total percentage for all windrose legs in a windrose plot can not exceed 100%% !\n(Current max is: %d)',1),
  367. 22002 => array('Graph is too small to have a scale. Please make the graph larger.',0),
  368. 22004 => array('Label specification for windrose directions must have 16 values (one for each compass direction).',0),
  369. 22005 => array('Line style for radial lines must be on of ("solid","dotted","dashed","longdashed") ',0),
  370. 22006 => array('Illegal windrose type specified.',0),
  371. 22007 => array('To few values for the range legend.',0),
  372. 22008 => array('Internal error: Trying to plot free Windrose even though type is not a free windrose',0),
  373. 22009 => array('You have specified the same direction twice, once with an angle and once with a compass direction (%f degrees)',0),
  374. 22010 => array('Direction must either be a numeric value or one of the 16 compass directions',0),
  375. 22011 => array('Windrose index must be numeric or direction label. You have specified index=%d',1),
  376. 22012 => array('Windrose radial axis specification contains a direction which is not enabled.',0),
  377. 22013 => array('You have specified the look&feel for the same compass direction twice, once with text and once with index (Index=%d)',1),
  378. 22014 => array('Index for compass direction must be between 0 and 15.',0),
  379. 22015 => array('You have specified an undefined Windrose plot type.',0),
  380. 22016 => array('Windrose leg index must be numeric or direction label.',0),
  381. 22017 => array('Windrose data contains a direction which is not enabled. Please adjust what labels are displayed.',0),
  382. 22018 => array('You have specified data for the same compass direction twice, once with text and once with index (Index=%d)',1),
  383. 22019 => array('Index for direction must be between 0 and 15. You can\'t specify angles for a Regular Windplot, only index and compass directions.',0),
  384. 22020 => array('Windrose plot is too large to fit the specified Graph size. Please use WindrosePlot::SetSize() to make the plot smaller or increase the size of the Graph in the initial WindroseGraph() call.',0),
  385. 22021 => array('It is only possible to add Text, IconPlot or WindrosePlot to a Windrose Graph',0),
  386. /*
  387. ** jpgraph_odometer
  388. */
  389. 13001 => array('Unknown needle style (%d).',1),
  390. 13002 => array('Value for odometer (%f) is outside specified scale [%f,%f]',3),
  391. /*
  392. ** jpgraph_barcode
  393. */
  394. 1001 => array('Unknown encoder specification: %s',1),
  395. 1002 => array('Data validation failed. Can\'t encode [%s] using encoding "%s"',2),
  396. 1003 => array('Internal encoding error. Trying to encode %s is not possible in Code 128',1),
  397. 1004 => array('Internal barcode error. Unknown UPC-E encoding type: %s',1),
  398. 1005 => array('Internal error. Can\'t encode character tuple (%s, %s) in Code-128 charset C',2),
  399. 1006 => array('Internal encoding error for CODE 128. Trying to encode control character in CHARSET != A',0),
  400. 1007 => array('Internal encoding error for CODE 128. Trying to encode DEL in CHARSET != B',0),
  401. 1008 => array('Internal encoding error for CODE 128. Trying to encode small letters in CHARSET != B',0),
  402. 1009 => array('Encoding using CODE 93 is not yet supported.',0),
  403. 1010 => array('Encoding using POSTNET is not yet supported.',0),
  404. 1011 => array('Non supported barcode backend for type %s',1),
  405. /*
  406. ** PDF417
  407. */
  408. 26001 => array('PDF417: Number of Columns must be >= 1 and <= 30',0),
  409. 26002 => array('PDF417: Error level must be between 0 and 8',0),
  410. 26003 => array('PDF417: Invalid format for input data to encode with PDF417',0),
  411. 26004 => array('PDF417: Can\'t encode given data with error level %d and %d columns since it results in too many symbols or more than 90 rows.',2),
  412. 26005 => array('PDF417: Can\'t open file "%s" for writing',1),
  413. 26006 => array('PDF417: Internal error. Data files for PDF417 cluster %d is corrupted.',1),
  414. 26007 => array('PDF417: Internal error. GetPattern: Illegal Code Value = %d (row=%d)',2),
  415. 26008 => array('PDF417: Internal error. Mode not found in mode list!! mode=%d',1),
  416. 26009 => array('PDF417: Encode error: Illegal character. Can\'t encode character with ASCII code=%d',1),
  417. 26010 => array('PDF417: Internal error: No input data in decode.',0),
  418. 26011 => array('PDF417: Encoding error. Can\'t use numeric encoding on non-numeric data.',0),
  419. 26012 => array('PDF417: Internal error. No input data to decode for Binary compressor.',0),
  420. 26013 => array('PDF417: Internal error. Checksum error. Coefficient tables corrupted.',0),
  421. 26014 => array('PDF417: Internal error. No data to calculate codewords on.',0),
  422. 26015 => array('PDF417: Internal error. State transition table entry 0 is NULL. Entry 1 = (%s)',1),
  423. 26016 => array('PDF417: Internal error: Unrecognized state transition mode in decode.',0),
  424. );
  425. ?>