langEN.js 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  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. * Licensed to the Apache Software Foundation (ASF) under one
  21. * or more contributor license agreements. See the NOTICE file
  22. * distributed with this work for additional information
  23. * regarding copyright ownership. The ASF licenses this file
  24. * to you under the Apache License, Version 2.0 (the
  25. * "License"); you may not use this file except in compliance
  26. * with the License. You may obtain a copy of the License at
  27. *
  28. * http://www.apache.org/licenses/LICENSE-2.0
  29. *
  30. * Unless required by applicable law or agreed to in writing,
  31. * software distributed under the License is distributed on an
  32. * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  33. * KIND, either express or implied. See the License for the
  34. * specific language governing permissions and limitations
  35. * under the License.
  36. */
  37. /**
  38. * Language: English.
  39. */
  40. var _default = {
  41. legend: {
  42. selector: {
  43. all: 'All',
  44. inverse: 'Inv'
  45. }
  46. },
  47. toolbox: {
  48. brush: {
  49. title: {
  50. rect: 'Box Select',
  51. polygon: 'Lasso Select',
  52. lineX: 'Horizontally Select',
  53. lineY: 'Vertically Select',
  54. keep: 'Keep Selections',
  55. clear: 'Clear Selections'
  56. }
  57. },
  58. dataView: {
  59. title: 'Data View',
  60. lang: ['Data View', 'Close', 'Refresh']
  61. },
  62. dataZoom: {
  63. title: {
  64. zoom: 'Zoom',
  65. back: 'Zoom Reset'
  66. }
  67. },
  68. magicType: {
  69. title: {
  70. line: 'Switch to Line Chart',
  71. bar: 'Switch to Bar Chart',
  72. stack: 'Stack',
  73. tiled: 'Tile'
  74. }
  75. },
  76. restore: {
  77. title: 'Restore'
  78. },
  79. saveAsImage: {
  80. title: 'Save as Image',
  81. lang: ['Right Click to Save Image']
  82. }
  83. },
  84. series: {
  85. typeNames: {
  86. pie: 'Pie chart',
  87. bar: 'Bar chart',
  88. line: 'Line chart',
  89. scatter: 'Scatter plot',
  90. effectScatter: 'Ripple scatter plot',
  91. radar: 'Radar chart',
  92. tree: 'Tree',
  93. treemap: 'Treemap',
  94. boxplot: 'Boxplot',
  95. candlestick: 'Candlestick',
  96. k: 'K line chart',
  97. heatmap: 'Heat map',
  98. map: 'Map',
  99. parallel: 'Parallel coordinate map',
  100. lines: 'Line graph',
  101. graph: 'Relationship graph',
  102. sankey: 'Sankey diagram',
  103. funnel: 'Funnel chart',
  104. gauge: 'Guage',
  105. pictorialBar: 'Pictorial bar',
  106. themeRiver: 'Theme River Map',
  107. sunburst: 'Sunburst'
  108. }
  109. },
  110. aria: {
  111. general: {
  112. withTitle: 'This is a chart about "{title}"',
  113. withoutTitle: 'This is a chart'
  114. },
  115. series: {
  116. single: {
  117. prefix: '',
  118. withName: ' with type {seriesType} named {seriesName}.',
  119. withoutName: ' with type {seriesType}.'
  120. },
  121. multiple: {
  122. prefix: '. It consists of {seriesCount} series count.',
  123. withName: ' The {seriesId} series is a {seriesType} representing {seriesName}.',
  124. withoutName: ' The {seriesId} series is a {seriesType}.',
  125. separator: {
  126. middle: '',
  127. end: ''
  128. }
  129. }
  130. },
  131. data: {
  132. allData: 'The data is as follows: ',
  133. partialData: 'The first {displayCnt} items are: ',
  134. withName: 'the data for {name} is {value}',
  135. withoutName: '{value}',
  136. separator: {
  137. middle: ',',
  138. end: '.'
  139. }
  140. }
  141. }
  142. };
  143. module.exports = _default;