langEN.js 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one
  3. * or more contributor license agreements. See the NOTICE file
  4. * distributed with this work for additional information
  5. * regarding copyright ownership. The ASF licenses this file
  6. * to you under the Apache License, Version 2.0 (the
  7. * "License"); you may not use this file except in compliance
  8. * with the License. You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing,
  13. * software distributed under the License is distributed on an
  14. * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  15. * KIND, either express or implied. See the License for the
  16. * specific language governing permissions and limitations
  17. * under the License.
  18. */
  19. /**
  20. * AUTO-GENERATED FILE. DO NOT MODIFY.
  21. */
  22. /*
  23. * Licensed to the Apache Software Foundation (ASF) under one
  24. * or more contributor license agreements. See the NOTICE file
  25. * distributed with this work for additional information
  26. * regarding copyright ownership. The ASF licenses this file
  27. * to you under the Apache License, Version 2.0 (the
  28. * "License"); you may not use this file except in compliance
  29. * with the License. You may obtain a copy of the License at
  30. *
  31. * http://www.apache.org/licenses/LICENSE-2.0
  32. *
  33. * Unless required by applicable law or agreed to in writing,
  34. * software distributed under the License is distributed on an
  35. * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  36. * KIND, either express or implied. See the License for the
  37. * specific language governing permissions and limitations
  38. * under the License.
  39. */
  40. /**
  41. * Language: English.
  42. */
  43. export default {
  44. time: {
  45. month: ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'],
  46. monthAbbr: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'],
  47. dayOfWeek: ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'],
  48. dayOfWeekAbbr: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat']
  49. },
  50. legend: {
  51. selector: {
  52. all: 'All',
  53. inverse: 'Inv'
  54. }
  55. },
  56. toolbox: {
  57. brush: {
  58. title: {
  59. rect: 'Box Select',
  60. polygon: 'Lasso Select',
  61. lineX: 'Horizontally Select',
  62. lineY: 'Vertically Select',
  63. keep: 'Keep Selections',
  64. clear: 'Clear Selections'
  65. }
  66. },
  67. dataView: {
  68. title: 'Data View',
  69. lang: ['Data View', 'Close', 'Refresh']
  70. },
  71. dataZoom: {
  72. title: {
  73. zoom: 'Zoom',
  74. back: 'Zoom Reset'
  75. }
  76. },
  77. magicType: {
  78. title: {
  79. line: 'Switch to Line Chart',
  80. bar: 'Switch to Bar Chart',
  81. stack: 'Stack',
  82. tiled: 'Tile'
  83. }
  84. },
  85. restore: {
  86. title: 'Restore'
  87. },
  88. saveAsImage: {
  89. title: 'Save as Image',
  90. lang: ['Right Click to Save Image']
  91. }
  92. },
  93. series: {
  94. typeNames: {
  95. pie: 'Pie chart',
  96. bar: 'Bar chart',
  97. line: 'Line chart',
  98. scatter: 'Scatter plot',
  99. effectScatter: 'Ripple scatter plot',
  100. radar: 'Radar chart',
  101. tree: 'Tree',
  102. treemap: 'Treemap',
  103. boxplot: 'Boxplot',
  104. candlestick: 'Candlestick',
  105. k: 'K line chart',
  106. heatmap: 'Heat map',
  107. map: 'Map',
  108. parallel: 'Parallel coordinate map',
  109. lines: 'Line graph',
  110. graph: 'Relationship graph',
  111. sankey: 'Sankey diagram',
  112. funnel: 'Funnel chart',
  113. gauge: 'Gauge',
  114. pictorialBar: 'Pictorial bar',
  115. themeRiver: 'Theme River Map',
  116. sunburst: 'Sunburst'
  117. }
  118. },
  119. aria: {
  120. general: {
  121. withTitle: 'This is a chart about "{title}"',
  122. withoutTitle: 'This is a chart'
  123. },
  124. series: {
  125. single: {
  126. prefix: '',
  127. withName: ' with type {seriesType} named {seriesName}.',
  128. withoutName: ' with type {seriesType}.'
  129. },
  130. multiple: {
  131. prefix: '. It consists of {seriesCount} series count.',
  132. withName: ' The {seriesId} series is a {seriesType} representing {seriesName}.',
  133. withoutName: ' The {seriesId} series is a {seriesType}.',
  134. separator: {
  135. middle: '',
  136. end: ''
  137. }
  138. }
  139. },
  140. data: {
  141. allData: 'The data is as follows: ',
  142. partialData: 'The first {displayCnt} items are: ',
  143. withName: 'the data for {name} is {value}',
  144. withoutName: '{value}',
  145. separator: {
  146. middle: ', ',
  147. end: '. '
  148. }
  149. }
  150. }
  151. };