lang.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: (Simplified) Chinese.
  39. */
  40. var _default = {
  41. legend: {
  42. selector: {
  43. all: '全选',
  44. inverse: '反选'
  45. }
  46. },
  47. toolbox: {
  48. brush: {
  49. title: {
  50. rect: '矩形选择',
  51. polygon: '圈选',
  52. lineX: '横向选择',
  53. lineY: '纵向选择',
  54. keep: '保持选择',
  55. clear: '清除选择'
  56. }
  57. },
  58. dataView: {
  59. title: '数据视图',
  60. lang: ['数据视图', '关闭', '刷新']
  61. },
  62. dataZoom: {
  63. title: {
  64. zoom: '区域缩放',
  65. back: '区域缩放还原'
  66. }
  67. },
  68. magicType: {
  69. title: {
  70. line: '切换为折线图',
  71. bar: '切换为柱状图',
  72. stack: '切换为堆叠',
  73. tiled: '切换为平铺'
  74. }
  75. },
  76. restore: {
  77. title: '还原'
  78. },
  79. saveAsImage: {
  80. title: '保存为图片',
  81. lang: ['右键另存为图片']
  82. }
  83. },
  84. series: {
  85. typeNames: {
  86. pie: '饼图',
  87. bar: '柱状图',
  88. line: '折线图',
  89. scatter: '散点图',
  90. effectScatter: '涟漪散点图',
  91. radar: '雷达图',
  92. tree: '树图',
  93. treemap: '矩形树图',
  94. boxplot: '箱型图',
  95. candlestick: 'K线图',
  96. k: 'K线图',
  97. heatmap: '热力图',
  98. map: '地图',
  99. parallel: '平行坐标图',
  100. lines: '线图',
  101. graph: '关系图',
  102. sankey: '桑基图',
  103. funnel: '漏斗图',
  104. gauge: '仪表盘图',
  105. pictorialBar: '象形柱图',
  106. themeRiver: '主题河流图',
  107. sunburst: '旭日图'
  108. }
  109. },
  110. aria: {
  111. general: {
  112. withTitle: '这是一个关于“{title}”的图表。',
  113. withoutTitle: '这是一个图表,'
  114. },
  115. series: {
  116. single: {
  117. prefix: '',
  118. withName: '图表类型是{seriesType},表示{seriesName}。',
  119. withoutName: '图表类型是{seriesType}。'
  120. },
  121. multiple: {
  122. prefix: '它由{seriesCount}个图表系列组成。',
  123. withName: '第{seriesId}个系列是一个表示{seriesName}的{seriesType},',
  124. withoutName: '第{seriesId}个系列是一个{seriesType},',
  125. separator: {
  126. middle: ';',
  127. end: '。'
  128. }
  129. }
  130. },
  131. data: {
  132. allData: '其数据是——',
  133. partialData: '其中,前{displayCnt}项是——',
  134. withName: '{name}的数据是{value}',
  135. withoutName: '{value}',
  136. separator: {
  137. middle: ',',
  138. end: ''
  139. }
  140. }
  141. }
  142. };
  143. module.exports = _default;