en.ts 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  1. export default {
  2. dashboard: {
  3. title: 'Data Statistics',
  4. carrier: {
  5. placeholder: 'Please select',
  6. telecom: 'Telecom',
  7. unicom: 'Unicom',
  8. mobile: 'Mobile'
  9. },
  10. statistics: {
  11. yesterdayFlow: 'Yesterday Flow Consumption',
  12. monthFlow: 'This Month Flow Consumption',
  13. yearFlow: 'This Year Flow Consumption'
  14. },
  15. flowChart: {
  16. title: 'Flow Statistics',
  17. buttons: {
  18. yesterday: 'Yesterday',
  19. week: 'This Week',
  20. month: 'This Month',
  21. year: 'This Year'
  22. },
  23. datePicker: {
  24. rangeSeparator: 'to',
  25. startPlaceholder: 'Start Time',
  26. endPlaceholder: 'End Time'
  27. }
  28. },
  29. top10: {
  30. title: 'Top 10 Flow Usage',
  31. datePicker: {
  32. rangeSeparator: 'to',
  33. startPlaceholder: 'Start Date',
  34. endPlaceholder: 'End Date'
  35. }
  36. },
  37. charts: {
  38. tooltip: {
  39. traffic: 'Traffic'
  40. },
  41. series: {
  42. traffic: 'Traffic'
  43. }
  44. }
  45. },
  46. index: {
  47. search: {
  48. placeholder: 'Enter ICCID or Card Number',
  49. query: 'Query',
  50. reset: 'Reset'
  51. },
  52. table: {
  53. columns: {
  54. cardNumber: 'Card Number',
  55. iccid: 'ICCID',
  56. bindDevice: 'Bind Device',
  57. platform: 'Platform',
  58. operator: 'Operator',
  59. type: 'Type',
  60. totalFlow: 'Total Flow',
  61. usedFlow: 'Used Flow',
  62. remainFlow: 'Remain Flow',
  63. activationDate: 'Activation Date',
  64. updateTime: 'Update Time',
  65. status: 'Status',
  66. actions: 'Actions'
  67. },
  68. actions: {
  69. detail: 'Detail',
  70. delete: 'Delete'
  71. }
  72. },
  73. operators: {
  74. telecom: 'China Telecom',
  75. unicom: 'China Unicom',
  76. mobile: 'China Mobile'
  77. },
  78. types: {
  79. monthly: 'Monthly',
  80. quarterly: 'Quarterly',
  81. yearly: 'Yearly',
  82. other: 'Other'
  83. },
  84. status: {
  85. activatable: 'Activatable',
  86. testActivated: 'Test Activated',
  87. testDeactivated: 'Test Deactivated',
  88. inUse: 'In Use',
  89. suspended: 'Suspended',
  90. operatorManaged: 'Operator Managed'
  91. },
  92. messages: {
  93. deleteConfirm: 'This operation will delete the card number: "{cardNumber}", continue?',
  94. tip: 'Tip',
  95. confirm: 'Confirm',
  96. cancel: 'Cancel',
  97. deleteSuccess: 'Delete Success'
  98. }
  99. },
  100. detail: {
  101. basicInfo: {
  102. title: 'Basic Information',
  103. cardNumber: 'Card Number',
  104. iccid: 'ICCID',
  105. bindDevice: 'Bind Device',
  106. platformType: 'Platform Type',
  107. platformName: 'Platform Name',
  108. operator: 'Operator',
  109. type: 'Type',
  110. activationDate: 'Activation Date',
  111. updateTime: 'Update Time',
  112. totalFlow: 'Total Flow',
  113. usedFlow: 'Used Flow',
  114. remainFlow: 'Remain Flow',
  115. status: 'Status',
  116. description: 'Description'
  117. },
  118. flowChart: {
  119. title: 'Flow Statistics',
  120. buttons: {
  121. yesterday: 'Yesterday',
  122. week: 'Last Week',
  123. month: 'Last Month',
  124. year: 'Last Year'
  125. },
  126. datePicker: {
  127. rangeSeparator: 'to',
  128. startPlaceholder: 'Start Time',
  129. endPlaceholder: 'End Time'
  130. }
  131. },
  132. dataStatistics: {
  133. title: 'Data Statistics',
  134. yesterdayFlow: 'Yesterday Flow Consumption',
  135. monthFlow: 'Current Month Flow Consumption',
  136. yearFlow: 'Current Year Flow Consumption'
  137. }
  138. },
  139. platformManage: {
  140. search: {
  141. placeholder: 'Enter keyword to search',
  142. query: 'Query',
  143. reset: 'Reset',
  144. add: 'Add'
  145. },
  146. table: {
  147. columns: {
  148. name: 'Name',
  149. platformType: 'Platform Type',
  150. appId: 'App ID',
  151. status: 'Status',
  152. description: 'Description',
  153. actions: 'Actions'
  154. },
  155. actions: {
  156. edit: 'Edit',
  157. delete: 'Delete'
  158. }
  159. },
  160. status: {
  161. disabled: 'Disabled',
  162. enabled: 'Enabled'
  163. },
  164. messages: {
  165. deleteConfirm: 'This operation will delete the card number: "{cardNumber}", continue?',
  166. tip: 'Tip',
  167. confirm: 'Confirm',
  168. cancel: 'Cancel',
  169. deleteSuccess: 'Delete Success'
  170. },
  171. addOrEdit: {
  172. title: {
  173. add: 'Add',
  174. edit: 'Edit'
  175. },
  176. form: {
  177. platformType: 'Platform Type',
  178. name: 'Name',
  179. appId: 'App ID',
  180. secretKey: 'Secret Key',
  181. userId: 'User ID',
  182. interfaceUrl: 'Interface URL',
  183. status: 'Status',
  184. description: 'Description'
  185. },
  186. placeholders: {
  187. select: 'Please select',
  188. name: 'Please enter name',
  189. appId: 'Please enter App ID',
  190. secretKey: 'Please enter secret key',
  191. userId: 'Please enter user ID',
  192. interfaceUrl: 'Please enter interface URL',
  193. description: 'Please enter description'
  194. },
  195. operators: {
  196. telecom: 'China Telecom',
  197. unicom: 'China Unicom',
  198. mobile: 'China Mobile'
  199. },
  200. switch: {
  201. enabled: 'On',
  202. disabled: 'Off'
  203. },
  204. buttons: {
  205. cancel: 'Cancel',
  206. confirm: 'Confirm'
  207. },
  208. validation: {
  209. platformType: 'Please select platform type',
  210. name: 'Please enter name',
  211. userId: 'Please enter user ID',
  212. secretKey: 'Please enter secret key',
  213. appId: 'Please enter App ID',
  214. interfaceUrl: 'Please enter interface URL'
  215. },
  216. messages: {
  217. editSuccess: 'Edit Success',
  218. addSuccess: 'Add Success'
  219. }
  220. }
  221. }
  222. };