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