langEN.js 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  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. * Language: English.
  21. */
  22. export default {
  23. legend: {
  24. selector: {
  25. all: 'All',
  26. inverse: 'Inv'
  27. }
  28. },
  29. toolbox: {
  30. brush: {
  31. title: {
  32. rect: 'Box Select',
  33. polygon: 'Lasso Select',
  34. lineX: 'Horizontally Select',
  35. lineY: 'Vertically Select',
  36. keep: 'Keep Selections',
  37. clear: 'Clear Selections'
  38. }
  39. },
  40. dataView: {
  41. title: 'Data View',
  42. lang: ['Data View', 'Close', 'Refresh']
  43. },
  44. dataZoom: {
  45. title: {
  46. zoom: 'Zoom',
  47. back: 'Zoom Reset'
  48. }
  49. },
  50. magicType: {
  51. title: {
  52. line: 'Switch to Line Chart',
  53. bar: 'Switch to Bar Chart',
  54. stack: 'Stack',
  55. tiled: 'Tile'
  56. }
  57. },
  58. restore: {
  59. title: 'Restore'
  60. },
  61. saveAsImage: {
  62. title: 'Save as Image',
  63. lang: ['Right Click to Save Image']
  64. }
  65. },
  66. series: {
  67. typeNames: {
  68. pie: 'Pie chart',
  69. bar: 'Bar chart',
  70. line: 'Line chart',
  71. scatter: 'Scatter plot',
  72. effectScatter: 'Ripple scatter plot',
  73. radar: 'Radar chart',
  74. tree: 'Tree',
  75. treemap: 'Treemap',
  76. boxplot: 'Boxplot',
  77. candlestick: 'Candlestick',
  78. k: 'K line chart',
  79. heatmap: 'Heat map',
  80. map: 'Map',
  81. parallel: 'Parallel coordinate map',
  82. lines: 'Line graph',
  83. graph: 'Relationship graph',
  84. sankey: 'Sankey diagram',
  85. funnel: 'Funnel chart',
  86. gauge: 'Guage',
  87. pictorialBar: 'Pictorial bar',
  88. themeRiver: 'Theme River Map',
  89. sunburst: 'Sunburst'
  90. }
  91. },
  92. aria: {
  93. general: {
  94. withTitle: 'This is a chart about "{title}"',
  95. withoutTitle: 'This is a chart'
  96. },
  97. series: {
  98. single: {
  99. prefix: '',
  100. withName: ' with type {seriesType} named {seriesName}.',
  101. withoutName: ' with type {seriesType}.'
  102. },
  103. multiple: {
  104. prefix: '. It consists of {seriesCount} series count.',
  105. withName: ' The {seriesId} series is a {seriesType} representing {seriesName}.',
  106. withoutName: ' The {seriesId} series is a {seriesType}.',
  107. separator: {
  108. middle: '',
  109. end: ''
  110. }
  111. }
  112. },
  113. data: {
  114. allData: 'The data is as follows: ',
  115. partialData: 'The first {displayCnt} items are: ',
  116. withName: 'the data for {name} is {value}',
  117. withoutName: '{value}',
  118. separator: {
  119. middle: ',',
  120. end: '.'
  121. }
  122. }
  123. }
  124. };