langEN-obj.js 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  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. (function(root, factory) {
  23. if (typeof define === 'function' && define.amd) {
  24. // AMD. Register as an anonymous module.
  25. define(['exports'], factory);
  26. } else if (
  27. typeof exports === 'object' &&
  28. typeof exports.nodeName !== 'string'
  29. ) {
  30. // CommonJS
  31. factory(exports);
  32. } else {
  33. // Browser globals
  34. factory({});
  35. }
  36. })(this, function(exports) {
  37. /**
  38. * Language: English.
  39. */
  40. var localeObj = {
  41. time: {
  42. month: [
  43. 'January', 'February', 'March', 'April', 'May', 'June',
  44. 'July', 'August', 'September', 'October', 'November', 'December'
  45. ],
  46. monthAbbr: [
  47. 'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',
  48. 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'
  49. ],
  50. dayOfWeek: [
  51. 'Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'
  52. ],
  53. dayOfWeekAbbr: [
  54. 'Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'
  55. ]
  56. },
  57. legend: {
  58. selector: {
  59. all: 'All',
  60. inverse: 'Inv'
  61. }
  62. },
  63. toolbox: {
  64. brush: {
  65. title: {
  66. rect: 'Box Select',
  67. polygon: 'Lasso Select',
  68. lineX: 'Horizontally Select',
  69. lineY: 'Vertically Select',
  70. keep: 'Keep Selections',
  71. clear: 'Clear Selections'
  72. }
  73. },
  74. dataView: {
  75. title: 'Data View',
  76. lang: ['Data View', 'Close', 'Refresh']
  77. },
  78. dataZoom: {
  79. title: {
  80. zoom: 'Zoom',
  81. back: 'Zoom Reset'
  82. }
  83. },
  84. magicType: {
  85. title: {
  86. line: 'Switch to Line Chart',
  87. bar: 'Switch to Bar Chart',
  88. stack: 'Stack',
  89. tiled: 'Tile'
  90. }
  91. },
  92. restore: {
  93. title: 'Restore'
  94. },
  95. saveAsImage: {
  96. title: 'Save as Image',
  97. lang: ['Right Click to Save Image']
  98. }
  99. },
  100. series: {
  101. typeNames: {
  102. pie: 'Pie chart',
  103. bar: 'Bar chart',
  104. line: 'Line chart',
  105. scatter: 'Scatter plot',
  106. effectScatter: 'Ripple scatter plot',
  107. radar: 'Radar chart',
  108. tree: 'Tree',
  109. treemap: 'Treemap',
  110. boxplot: 'Boxplot',
  111. candlestick: 'Candlestick',
  112. k: 'K line chart',
  113. heatmap: 'Heat map',
  114. map: 'Map',
  115. parallel: 'Parallel coordinate map',
  116. lines: 'Line graph',
  117. graph: 'Relationship graph',
  118. sankey: 'Sankey diagram',
  119. funnel: 'Funnel chart',
  120. gauge: 'Gauge',
  121. pictorialBar: 'Pictorial bar',
  122. themeRiver: 'Theme River Map',
  123. sunburst: 'Sunburst',
  124. custom: 'Custom chart',
  125. chart: 'Chart'
  126. }
  127. },
  128. aria: {
  129. general: {
  130. withTitle: 'This is a chart about "{title}"',
  131. withoutTitle: 'This is a chart'
  132. },
  133. series: {
  134. single: {
  135. prefix: '',
  136. withName: ' with type {seriesType} named {seriesName}.',
  137. withoutName: ' with type {seriesType}.'
  138. },
  139. multiple: {
  140. prefix: '. It consists of {seriesCount} series count.',
  141. withName: ' The {seriesId} series is a {seriesType} representing {seriesName}.',
  142. withoutName: ' The {seriesId} series is a {seriesType}.',
  143. separator: {
  144. middle: '',
  145. end: ''
  146. }
  147. }
  148. },
  149. data: {
  150. allData: 'The data is as follows: ',
  151. partialData: 'The first {displayCnt} items are: ',
  152. withName: 'the data for {name} is {value}',
  153. withoutName: '{value}',
  154. separator: {
  155. middle: ', ',
  156. end: '. '
  157. }
  158. }
  159. }
  160. };
  161. for (var key in localeObj) {
  162. if (localeObj.hasOwnProperty(key)) {
  163. exports[key] = localeObj[key];
  164. }
  165. }
  166. });