openatc-components 0.1.20 → 0.1.22

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (384) hide show
  1. package/.babelrc +18 -18
  2. package/.editorconfig +9 -9
  3. package/.eslintignore +5 -5
  4. package/.eslintrc.js +29 -29
  5. package/.postcssrc.js +10 -10
  6. package/README.md +30 -30
  7. package/build/build.js +41 -41
  8. package/build/check-versions.js +54 -54
  9. package/build/package.config.js +58 -58
  10. package/build/package.dev.config.js +107 -107
  11. package/build/package.prod.config.js +160 -160
  12. package/build/utils.js +101 -101
  13. package/build/vue-loader.conf.js +22 -22
  14. package/build/webpack.base.conf.js +114 -114
  15. package/build/webpack.dev.conf.js +95 -95
  16. package/build/webpack.prod.conf.js +149 -149
  17. package/config/dev.env.js +8 -8
  18. package/config/index.js +91 -91
  19. package/config/prod.env.js +5 -5
  20. package/config/test.env.js +7 -7
  21. package/index.html +12 -12
  22. package/package/kisscomps/components/BoardCard/BoardCard.vue +94 -94
  23. package/package/kisscomps/components/BoardCard/index.js +2 -2
  24. package/package/kisscomps/components/Channelization/Channelization.vue +544 -544
  25. package/package/kisscomps/components/Channelization/index.js +2 -2
  26. package/package/kisscomps/components/ChannelizationFlowStatistic/ChannelizationFlowStatistic.vue +349 -349
  27. package/package/kisscomps/components/ChannelizationFlowStatistic/index.js +2 -2
  28. package/package/kisscomps/components/ChannelizationWithInterface/ChannelizationWithInterface.vue +486 -486
  29. package/package/kisscomps/components/ChannelizationWithInterface/index.js +2 -2
  30. package/package/kisscomps/components/CommonKanban/CommonKanban.vue +118 -118
  31. package/package/kisscomps/components/CommonKanban/index.js +2 -2
  32. package/package/kisscomps/components/DrawChannelization/drawsvg/basicCoordInfo.vue +165 -165
  33. package/package/kisscomps/components/DrawChannelization/drawsvg/channelizationElements.vue +255 -255
  34. package/package/kisscomps/components/DrawChannelization/drawsvg/detectorAssociatedComponent.vue +152 -152
  35. package/package/kisscomps/components/DrawChannelization/drawsvg/drawElement/TextBox.vue +91 -91
  36. package/package/kisscomps/components/DrawChannelization/drawsvg/drawElement/crossMap.vue +194 -194
  37. package/package/kisscomps/components/DrawChannelization/drawsvg/drawElement/editText.vue +108 -108
  38. package/package/kisscomps/components/DrawChannelization/drawsvg/firstImportCrossmap.vue +51 -51
  39. package/package/kisscomps/components/DrawChannelization/drawsvg/iconSvg/countdownSvg.vue +236 -236
  40. package/package/kisscomps/components/DrawChannelization/drawsvg/iconSvg/detectorChart.vue +247 -247
  41. package/package/kisscomps/components/DrawChannelization/drawsvg/iconSvg/detectorIconSvg.vue +210 -210
  42. package/package/kisscomps/components/DrawChannelization/drawsvg/iconSvg/laneIcon.vue +72 -72
  43. package/package/kisscomps/components/DrawChannelization/drawsvg/iconSvg/motorwayIconSvg.vue +455 -455
  44. package/package/kisscomps/components/DrawChannelization/drawsvg/iconSvg/pedroadIconSvg.vue +219 -219
  45. package/package/kisscomps/components/DrawChannelization/drawsvg/importDialog.vue +74 -74
  46. package/package/kisscomps/components/DrawChannelization/drawsvg/index.draw.vue +1002 -1002
  47. package/package/kisscomps/components/DrawChannelization/drawsvg/index.vue +110 -110
  48. package/package/kisscomps/components/DrawChannelization/drawsvg/laneEditPanel.vue +699 -699
  49. package/package/kisscomps/components/DrawChannelization/drawsvg/overlapAssociatedComponent.vue +157 -157
  50. package/package/kisscomps/components/DrawChannelization/drawsvg/phaseAssociatedComponent.vue +157 -157
  51. package/package/kisscomps/components/DrawChannelization/drawsvg/table.vue +99 -99
  52. package/package/kisscomps/components/DrawChannelization/drawsvg/utils/loadutils.js +87 -87
  53. package/package/kisscomps/components/DrawChannelization/drawsvg/utils/phaseDataModel.js +32 -32
  54. package/package/kisscomps/components/DrawChannelization/drawsvg/utils/phasePos.json +20 -20
  55. package/package/kisscomps/components/DrawChannelization/index.js +2 -2
  56. package/package/kisscomps/components/DrawChannelization/phaseDataMgr.js +278 -278
  57. package/package/kisscomps/components/ExpendConfig/ExpendConfig.vue +114 -114
  58. package/package/kisscomps/components/ExpendConfig/index.js +2 -2
  59. package/package/kisscomps/components/FaultDetailModal/FaultDetailModal.vue +170 -170
  60. package/package/kisscomps/components/FaultDetailModal/index.js +2 -2
  61. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/CrossRoadsSvg.vue +497 -497
  62. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/CustomRoadsSvg.vue +46 -46
  63. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/PedSectionEWSvg.vue +300 -300
  64. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/PedSectionSNSvg.vue +288 -288
  65. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/RampEastSvg.vue +391 -391
  66. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/RampNorthSvg.vue +336 -336
  67. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/RampSouthSvg.vue +345 -345
  68. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/RampWestSvg.vue +389 -389
  69. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/SidewalkSvg.vue +1179 -1179
  70. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/TShapeEastRoadsSvg.vue +402 -402
  71. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/TShapeNorthRoadsSvg.vue +361 -361
  72. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/TShapeSouthRoadsSvg.vue +368 -368
  73. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/TShapeWestRoadsSvg.vue +475 -475
  74. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/leftroad/LCrossRoadsSvg.vue +494 -494
  75. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/leftroad/LTShapeEastRoadsSvg.vue +401 -401
  76. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/leftroad/LTShapeNorthRoadsSvg.vue +360 -360
  77. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/leftroad/LTShapeSouthRoadsSvg.vue +367 -367
  78. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/leftroad/LTShapeWestRoadsSvg.vue +476 -476
  79. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/refreshSvg.vue +63 -63
  80. package/package/kisscomps/components/IntersectionMap/crossDirection/busIcon/busMapSvg.vue +50 -50
  81. package/package/kisscomps/components/IntersectionMap/crossDirection/busIcon/eastBusSvg.vue +167 -167
  82. package/package/kisscomps/components/IntersectionMap/crossDirection/busIcon/northBusSvg.vue +168 -168
  83. package/package/kisscomps/components/IntersectionMap/crossDirection/busIcon/southBusSvg.vue +168 -168
  84. package/package/kisscomps/components/IntersectionMap/crossDirection/busIcon/westBusSvg.vue +169 -169
  85. package/package/kisscomps/components/IntersectionMap/crossDirection/crossDiagram.vue +920 -920
  86. package/package/kisscomps/components/IntersectionMap/crossDirection/phaseIcon/LphaseIconSvg.vue +112 -112
  87. package/package/kisscomps/components/IntersectionMap/crossDirection/phaseIcon/phaseIconSvg.vue +112 -112
  88. package/package/kisscomps/components/IntersectionMap/crossDirection/phaseIcon/rampPhaseIconSvg.vue +111 -111
  89. package/package/kisscomps/components/IntersectionMap/crossDirection/posJson/busPos.json +196 -196
  90. package/package/kisscomps/components/IntersectionMap/crossDirection/posJson/busPos.left.json +196 -196
  91. package/package/kisscomps/components/IntersectionMap/crossDirection/posJson/phasePos.json +99 -99
  92. package/package/kisscomps/components/IntersectionMap/crossDirection/posJson/phasePos.left.json +99 -99
  93. package/package/kisscomps/components/IntersectionMap/crossDirection/posJson/rampPos.json +52 -52
  94. package/package/kisscomps/components/IntersectionMap/crossDirection/posJson/sidePos.json +99 -99
  95. package/package/kisscomps/components/IntersectionMap/crossDirection/utils.js +78 -78
  96. package/package/kisscomps/components/IntersectionMap/index.js +2 -2
  97. package/package/kisscomps/components/IntersectionMap/intersectionmap.vue +159 -159
  98. package/package/kisscomps/components/IntersectionWithInterface/IntersectionWithInterface.vue +521 -521
  99. package/package/kisscomps/components/IntersectionWithInterface/index.js +2 -2
  100. package/package/kisscomps/components/KanBan/index.js +2 -2
  101. package/package/kisscomps/components/KanBan/kanban.vue +219 -219
  102. package/package/kisscomps/components/MessageBox/index.vue +96 -96
  103. package/package/kisscomps/components/OverLap/OverLap.vue +207 -207
  104. package/package/kisscomps/components/OverLap/index.js +2 -2
  105. package/package/kisscomps/components/PatternStatus/PatternStatus.vue +962 -962
  106. package/package/kisscomps/components/PatternStatus/index.js +2 -2
  107. package/package/kisscomps/components/PatternWalkSvg/PatternWalkSvg.vue +423 -423
  108. package/package/kisscomps/components/PatternWalkSvg/index.js +2 -2
  109. package/package/kisscomps/components/PhaseMarker/index.js +6 -6
  110. package/package/kisscomps/components/PhaseMarker/phasemarker.vue +215 -215
  111. package/package/kisscomps/components/PhaseMarker/svg/patternSvg.vue +121 -121
  112. package/package/kisscomps/components/PhaseMarker/svg/phase.vue +60 -60
  113. package/package/kisscomps/components/PhaseMarker/svg/phaseCount.vue +62 -62
  114. package/package/kisscomps/components/PhaseMarker/svg/phaseCountCycle.vue +62 -62
  115. package/package/kisscomps/components/PhaseMarker/svg/phaseSvg.vue +117 -117
  116. package/package/kisscomps/components/SchemeConfig/SchemeConfig.vue +779 -779
  117. package/package/kisscomps/components/SchemeConfig/closePhaselControlModal/index.vue +195 -195
  118. package/package/kisscomps/components/SchemeConfig/index.js +2 -2
  119. package/package/kisscomps/components/SchemeConfig/lockingPhaselControlModal/index.vue +198 -198
  120. package/package/kisscomps/components/SchemeConfig/manualControlModal/index.vue +226 -226
  121. package/package/kisscomps/components/SchemeConfig/priorityControl/index.vue +201 -198
  122. package/package/kisscomps/components/SchemeConfig/priorityControl/utils.js +163 -163
  123. package/package/kisscomps/components/SchemeConfig/realtimeStatusModal/index.vue +275 -275
  124. package/package/kisscomps/components/SchemeConfig/tentativeplancontrolmodal/index.vue +574 -574
  125. package/package/kisscomps/components/StageBord/StageBord.vue +242 -242
  126. package/package/kisscomps/components/StageBord/index.js +2 -2
  127. package/package/kisscomps/components/StageStatus/StageStatus.vue +310 -310
  128. package/package/kisscomps/components/StageStatus/index.js +2 -2
  129. package/package/kisscomps/components/Stages/index.vue +139 -139
  130. package/package/kisscomps/components/SvgIcon/SvgIcon.vue +53 -53
  131. package/package/kisscomps/components/SvgIcon/index.js +2 -2
  132. package/package/kisscomps/components/XRDDirSelector/XRDDirSelector.vue +522 -522
  133. package/package/kisscomps/components/XRDDirSelector/index.js +2 -2
  134. package/package/kisscomps/components/overView/index.vue +687 -687
  135. package/package/kisscomps/components/patternList/index.js +2 -2
  136. package/package/kisscomps/components/patternList/patternList.vue +567 -567
  137. package/package/kisscomps/index.js +109 -109
  138. package/package/kissui.min.js +1 -1
  139. package/package.json +126 -126
  140. package/src/App.vue +24 -24
  141. package/src/EdgeMgr/EdgeModelBase.js +16 -16
  142. package/src/EdgeMgr/controller/crossDiagramMgr.js +120 -120
  143. package/src/api/authapi.js +31 -31
  144. package/src/api/config.js +21 -21
  145. package/src/api/control.js +76 -76
  146. package/src/api/cross.js +33 -33
  147. package/src/api/fault.js +66 -66
  148. package/src/api/index.js +24 -24
  149. package/src/api/login.js +46 -46
  150. package/src/api/optimize.js +72 -72
  151. package/src/api/param.js +154 -154
  152. package/src/api/passwdAssest.js +101 -101
  153. package/src/api/template.js +27 -27
  154. package/src/i18n/index.js +26 -26
  155. package/src/i18n/language/en.js +1228 -1227
  156. package/src/i18n/language/index.js +25 -25
  157. package/src/i18n/language/zh.js +1227 -1226
  158. package/src/icons/demo.css +539 -539
  159. package/src/icons/iconfont.css +835 -835
  160. package/src/icons/iconfont.json +1444 -1444
  161. package/src/icons/index.js +20 -20
  162. package/src/icons/svg/bendi.svg +110 -110
  163. package/src/icons/svg/bujin.svg +36 -36
  164. package/src/icons/svg/connectBlue.svg +7 -7
  165. package/src/icons/svg/currentvolume.svg +0 -0
  166. package/src/icons/svg/custom-BRTlane.svg +40 -40
  167. package/src/icons/svg/custom-buslane.svg +40 -40
  168. package/src/icons/svg/custom-detector.svg +12 -12
  169. package/src/icons/svg/custom-east-bottom.svg +32 -32
  170. package/src/icons/svg/custom-east-top.svg +32 -32
  171. package/src/icons/svg/custom-ewped.svg +35 -35
  172. package/src/icons/svg/custom-nonmotorizedlane.svg +40 -40
  173. package/src/icons/svg/custom-north-left.svg +32 -32
  174. package/src/icons/svg/custom-north-right.svg +32 -32
  175. package/src/icons/svg/custom-peddetector.svg +17 -17
  176. package/src/icons/svg/custom-snped.svg +35 -35
  177. package/src/icons/svg/custom-south-left.svg +32 -32
  178. package/src/icons/svg/custom-south-right.svg +32 -32
  179. package/src/icons/svg/custom-tramlane.svg +40 -40
  180. package/src/icons/svg/custom-vehiclebranch.svg +40 -40
  181. package/src/icons/svg/custom-vehiclemainroad.svg +41 -41
  182. package/src/icons/svg/custom-west-bottom.svg +32 -32
  183. package/src/icons/svg/custom-west-top.svg +32 -32
  184. package/src/icons/svg/custom-xlped.svg +14 -14
  185. package/src/icons/svg/custom-xrped.svg +14 -14
  186. package/src/icons/svg/cutRed.svg +7 -7
  187. package/src/icons/svg/cycle.svg +0 -0
  188. package/src/icons/svg/dingzhouqi.svg +34 -34
  189. package/src/icons/svg/ganyingkongzhi.svg +30 -30
  190. package/src/icons/svg/guandeng.svg +81 -81
  191. package/src/icons/svg/huangshan.svg +71 -71
  192. package/src/icons/svg/maincontrol.svg +0 -0
  193. package/src/icons/svg/manualcontrolbackground.svg +51 -51
  194. package/src/icons/svg/manualcontrolbackground1.svg +62 -62
  195. package/src/icons/svg/manualcontrolbackgrounden.svg +62 -62
  196. package/src/icons/svg/model.svg +0 -0
  197. package/src/icons/svg/phasediff.svg +0 -0
  198. package/src/icons/svg/quanhong.svg +86 -86
  199. package/src/icons/svg/shanghe.svg +11 -11
  200. package/src/icons/svg/shoudong.svg +103 -103
  201. package/src/icons/svg/time.svg +0 -0
  202. package/src/icons/svg/wuxianlan.svg +46 -46
  203. package/src/icons/svg/xiala.svg +11 -11
  204. package/src/icons/svg/xingrenguojie.svg +33 -33
  205. package/src/icons/svg/xitong.svg +89 -89
  206. package/src/icons/svg/youxian.svg +41 -41
  207. package/src/icons/svg/zizhukongzhi.svg +43 -43
  208. package/src/kisscomps/components/BoardCard/BoardCard.vue +94 -94
  209. package/src/kisscomps/components/BoardCard/index.js +2 -2
  210. package/src/kisscomps/components/Channelization/Channelization.vue +544 -544
  211. package/src/kisscomps/components/Channelization/index.js +2 -2
  212. package/src/kisscomps/components/ChannelizationFlowStatistic/ChannelizationFlowStatistic.vue +349 -349
  213. package/src/kisscomps/components/ChannelizationFlowStatistic/index.js +2 -2
  214. package/src/kisscomps/components/ChannelizationWithInterface/ChannelizationWithInterface.vue +486 -486
  215. package/src/kisscomps/components/ChannelizationWithInterface/index.js +2 -2
  216. package/src/kisscomps/components/CommonKanban/CommonKanban.vue +118 -118
  217. package/src/kisscomps/components/CommonKanban/index.js +2 -2
  218. package/src/kisscomps/components/DrawChannelization/drawsvg/basicCoordInfo.vue +165 -165
  219. package/src/kisscomps/components/DrawChannelization/drawsvg/channelizationElements.vue +255 -255
  220. package/src/kisscomps/components/DrawChannelization/drawsvg/detectorAssociatedComponent.vue +152 -152
  221. package/src/kisscomps/components/DrawChannelization/drawsvg/drawElement/TextBox.vue +91 -91
  222. package/src/kisscomps/components/DrawChannelization/drawsvg/drawElement/crossMap.vue +194 -194
  223. package/src/kisscomps/components/DrawChannelization/drawsvg/drawElement/editText.vue +108 -108
  224. package/src/kisscomps/components/DrawChannelization/drawsvg/firstImportCrossmap.vue +51 -51
  225. package/src/kisscomps/components/DrawChannelization/drawsvg/iconSvg/countdownSvg.vue +236 -236
  226. package/src/kisscomps/components/DrawChannelization/drawsvg/iconSvg/detectorChart.vue +247 -247
  227. package/src/kisscomps/components/DrawChannelization/drawsvg/iconSvg/detectorIconSvg.vue +210 -210
  228. package/src/kisscomps/components/DrawChannelization/drawsvg/iconSvg/laneIcon.vue +72 -72
  229. package/src/kisscomps/components/DrawChannelization/drawsvg/iconSvg/motorwayIconSvg.vue +455 -455
  230. package/src/kisscomps/components/DrawChannelization/drawsvg/iconSvg/pedroadIconSvg.vue +219 -219
  231. package/src/kisscomps/components/DrawChannelization/drawsvg/importDialog.vue +74 -74
  232. package/src/kisscomps/components/DrawChannelization/drawsvg/index.draw.vue +1002 -1002
  233. package/src/kisscomps/components/DrawChannelization/drawsvg/index.vue +110 -110
  234. package/src/kisscomps/components/DrawChannelization/drawsvg/laneEditPanel.vue +699 -699
  235. package/src/kisscomps/components/DrawChannelization/drawsvg/overlapAssociatedComponent.vue +157 -157
  236. package/src/kisscomps/components/DrawChannelization/drawsvg/phaseAssociatedComponent.vue +157 -157
  237. package/src/kisscomps/components/DrawChannelization/drawsvg/table.vue +99 -99
  238. package/src/kisscomps/components/DrawChannelization/drawsvg/utils/loadutils.js +87 -87
  239. package/src/kisscomps/components/DrawChannelization/drawsvg/utils/phaseDataModel.js +32 -32
  240. package/src/kisscomps/components/DrawChannelization/drawsvg/utils/phasePos.json +20 -20
  241. package/src/kisscomps/components/DrawChannelization/index.js +2 -2
  242. package/src/kisscomps/components/DrawChannelization/phaseDataMgr.js +278 -278
  243. package/src/kisscomps/components/ExpendConfig/ExpendConfig.vue +114 -114
  244. package/src/kisscomps/components/ExpendConfig/index.js +2 -2
  245. package/src/kisscomps/components/FaultDetailModal/FaultDetailModal.vue +170 -170
  246. package/src/kisscomps/components/FaultDetailModal/index.js +2 -2
  247. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/CrossRoadsSvg.vue +497 -497
  248. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/CustomRoadsSvg.vue +46 -46
  249. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/PedSectionEWSvg.vue +300 -300
  250. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/PedSectionSNSvg.vue +288 -288
  251. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/RampEastSvg.vue +391 -391
  252. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/RampNorthSvg.vue +336 -336
  253. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/RampSouthSvg.vue +345 -345
  254. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/RampWestSvg.vue +389 -389
  255. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/SidewalkSvg.vue +1179 -1179
  256. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/TShapeEastRoadsSvg.vue +402 -402
  257. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/TShapeNorthRoadsSvg.vue +361 -361
  258. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/TShapeSouthRoadsSvg.vue +368 -368
  259. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/TShapeWestRoadsSvg.vue +475 -475
  260. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/leftroad/LCrossRoadsSvg.vue +494 -494
  261. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/leftroad/LTShapeEastRoadsSvg.vue +401 -401
  262. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/leftroad/LTShapeNorthRoadsSvg.vue +360 -360
  263. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/leftroad/LTShapeSouthRoadsSvg.vue +367 -367
  264. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/leftroad/LTShapeWestRoadsSvg.vue +476 -476
  265. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/refreshSvg.vue +63 -63
  266. package/src/kisscomps/components/IntersectionMap/crossDirection/busIcon/busMapSvg.vue +50 -50
  267. package/src/kisscomps/components/IntersectionMap/crossDirection/busIcon/eastBusSvg.vue +167 -167
  268. package/src/kisscomps/components/IntersectionMap/crossDirection/busIcon/northBusSvg.vue +168 -168
  269. package/src/kisscomps/components/IntersectionMap/crossDirection/busIcon/southBusSvg.vue +168 -168
  270. package/src/kisscomps/components/IntersectionMap/crossDirection/busIcon/westBusSvg.vue +169 -169
  271. package/src/kisscomps/components/IntersectionMap/crossDirection/crossDiagram.vue +920 -920
  272. package/src/kisscomps/components/IntersectionMap/crossDirection/phaseIcon/LphaseIconSvg.vue +112 -112
  273. package/src/kisscomps/components/IntersectionMap/crossDirection/phaseIcon/phaseIconSvg.vue +112 -112
  274. package/src/kisscomps/components/IntersectionMap/crossDirection/phaseIcon/rampPhaseIconSvg.vue +111 -111
  275. package/src/kisscomps/components/IntersectionMap/crossDirection/posJson/busPos.json +196 -196
  276. package/src/kisscomps/components/IntersectionMap/crossDirection/posJson/busPos.left.json +196 -196
  277. package/src/kisscomps/components/IntersectionMap/crossDirection/posJson/phasePos.json +99 -99
  278. package/src/kisscomps/components/IntersectionMap/crossDirection/posJson/phasePos.left.json +99 -99
  279. package/src/kisscomps/components/IntersectionMap/crossDirection/posJson/rampPos.json +52 -52
  280. package/src/kisscomps/components/IntersectionMap/crossDirection/posJson/sidePos.json +99 -99
  281. package/src/kisscomps/components/IntersectionMap/crossDirection/utils.js +78 -78
  282. package/src/kisscomps/components/IntersectionMap/index.js +2 -2
  283. package/src/kisscomps/components/IntersectionMap/intersectionmap.vue +159 -159
  284. package/src/kisscomps/components/IntersectionWithInterface/IntersectionWithInterface.vue +521 -521
  285. package/src/kisscomps/components/IntersectionWithInterface/index.js +2 -2
  286. package/src/kisscomps/components/KanBan/index.js +2 -2
  287. package/src/kisscomps/components/KanBan/kanban.vue +219 -219
  288. package/src/kisscomps/components/MessageBox/index.vue +96 -96
  289. package/src/kisscomps/components/OverLap/OverLap.vue +207 -207
  290. package/src/kisscomps/components/OverLap/index.js +2 -2
  291. package/src/kisscomps/components/PatternStatus/PatternStatus.vue +962 -962
  292. package/src/kisscomps/components/PatternStatus/index.js +2 -2
  293. package/src/kisscomps/components/PatternWalkSvg/PatternWalkSvg.vue +423 -423
  294. package/src/kisscomps/components/PatternWalkSvg/index.js +2 -2
  295. package/src/kisscomps/components/PhaseMarker/index.js +6 -6
  296. package/src/kisscomps/components/PhaseMarker/phasemarker.vue +215 -215
  297. package/src/kisscomps/components/PhaseMarker/svg/patternSvg.vue +121 -121
  298. package/src/kisscomps/components/PhaseMarker/svg/phase.vue +60 -60
  299. package/src/kisscomps/components/PhaseMarker/svg/phaseCount.vue +62 -62
  300. package/src/kisscomps/components/PhaseMarker/svg/phaseCountCycle.vue +62 -62
  301. package/src/kisscomps/components/PhaseMarker/svg/phaseSvg.vue +117 -117
  302. package/src/kisscomps/components/SchemeConfig/SchemeConfig.vue +779 -779
  303. package/src/kisscomps/components/SchemeConfig/closePhaselControlModal/index.vue +195 -195
  304. package/src/kisscomps/components/SchemeConfig/index.js +2 -2
  305. package/src/kisscomps/components/SchemeConfig/lockingPhaselControlModal/index.vue +198 -198
  306. package/src/kisscomps/components/SchemeConfig/manualControlModal/index.vue +226 -226
  307. package/src/kisscomps/components/SchemeConfig/priorityControl/index.vue +201 -198
  308. package/src/kisscomps/components/SchemeConfig/priorityControl/utils.js +163 -163
  309. package/src/kisscomps/components/SchemeConfig/realtimeStatusModal/index.vue +275 -275
  310. package/src/kisscomps/components/SchemeConfig/tentativeplancontrolmodal/index.vue +574 -574
  311. package/src/kisscomps/components/StageBord/StageBord.vue +242 -242
  312. package/src/kisscomps/components/StageBord/index.js +2 -2
  313. package/src/kisscomps/components/StageStatus/StageStatus.vue +310 -310
  314. package/src/kisscomps/components/StageStatus/index.js +2 -2
  315. package/src/kisscomps/components/Stages/index.vue +139 -139
  316. package/src/kisscomps/components/SvgIcon/SvgIcon.vue +53 -53
  317. package/src/kisscomps/components/SvgIcon/index.js +2 -2
  318. package/src/kisscomps/components/XRDDirSelector/XRDDirSelector.vue +522 -522
  319. package/src/kisscomps/components/XRDDirSelector/index.js +2 -2
  320. package/src/kisscomps/components/overView/index.vue +687 -687
  321. package/src/kisscomps/components/patternList/index.js +2 -2
  322. package/src/kisscomps/components/patternList/patternList.vue +567 -567
  323. package/src/kisscomps/index.js +109 -109
  324. package/src/lib/publicjs/ArryListUtil.js +38 -38
  325. package/src/lib/publicjs/HttpurlMgr.js +45 -45
  326. package/src/lib/publicjs/KissApi.js +158 -158
  327. package/src/lib/publicjs/KissWSSub/Heartcheck.js +128 -128
  328. package/src/lib/publicjs/KissWSSub/KissWsSub.js +91 -91
  329. package/src/lib/publicjs/KissWSSub/KissWsSubByType.js +152 -152
  330. package/src/lib/publicjs/KissWSSub/SimuWsSubByType.js +44 -44
  331. package/src/lib/publicjs/KissWSSub/Sub.js +51 -51
  332. package/src/lib/publicjs/KissWSSub/SubChannel.js +119 -119
  333. package/src/lib/publicjs/basecomponents.js +65 -65
  334. package/src/lib/publicjs/localStorage.js +112 -112
  335. package/src/lib/publicjs/objdeepcopy.js +32 -32
  336. package/src/lib/publicjs/pageScroll.js +30 -30
  337. package/src/lib/publicjs/passwdAssest.js +101 -101
  338. package/src/lib/publicjs/styleclassfactory.js +32 -32
  339. package/src/main.js +50 -50
  340. package/src/router/index.js +42 -42
  341. package/src/store/getters.js +16 -16
  342. package/src/store/index.js +26 -26
  343. package/src/store/modules/globalParam.js +67 -67
  344. package/src/utils/ControlFormat.js +68 -68
  345. package/src/utils/RingDataModel.js +191 -191
  346. package/src/utils/auth.js +178 -178
  347. package/src/utils/dateFormat.js +41 -41
  348. package/src/utils/errorcode.js +224 -224
  349. package/src/utils/fault.js +195 -195
  350. package/src/utils/faultcode.js +209 -209
  351. package/src/utils/index.js +69 -69
  352. package/src/utils/pedphasedesc.js +119 -119
  353. package/src/utils/phasedesc.js +124 -124
  354. package/src/utils/responseMessage.js +21 -21
  355. package/src/utils/validate.js +43 -43
  356. package/src/views/customchannelization.vue +49 -49
  357. package/src/views/home.1.vue +479 -479
  358. package/src/views/home.vue +78 -78
  359. package/src/views/intersection.vue +309 -309
  360. package/src/views/overView.vue +41 -41
  361. package/src/views/schemeconfig.vue +165 -165
  362. package/static/apiconfig.json +351 -351
  363. package/static/styles/channelizatioon.scss +414 -414
  364. package/static/styles/common.scss +20 -20
  365. package/static/styles/commonkanban.scss +87 -87
  366. package/static/styles/dark/index.scss +2 -2
  367. package/static/styles/dark/theme/element-dark.scss +42 -42
  368. package/static/styles/index.scss +84 -84
  369. package/static/styles/intersection.scss +170 -170
  370. package/static/styles/light/index.scss +2 -2
  371. package/static/styles/light/theme/element-light.scss +42 -42
  372. package/static/styles/overview.scss +371 -371
  373. package/static/styles/schemeconfig.scss +457 -457
  374. package/static/styles/stages.scss +64 -64
  375. package/static/token.json +2 -2
  376. package/test/e2e/custom-assertions/elementCount.js +27 -27
  377. package/test/e2e/nightwatch.conf.js +46 -46
  378. package/test/e2e/runner.js +48 -48
  379. package/test/e2e/specs/test.js +19 -19
  380. package/test/unit/.eslintrc +7 -7
  381. package/test/unit/jest.conf.js +30 -30
  382. package/test/unit/setup.js +3 -3
  383. package/test/unit/specs/HelloWorld.spec.js +11 -11
  384. package/pnpm-lock.yaml +0 -12343
@@ -1,1227 +1,1228 @@
1
- /**
2
- * Copyright (c) 2020 kedacom
3
- * OpenATC is licensed under Mulan PSL v2.
4
- * You can use this software according to the terms and conditions of the Mulan PSL v2.
5
- * You may obtain a copy of Mulan PSL v2 at:
6
- * http://license.coscl.org.cn/MulanPSL2
7
- * THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
8
- * EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
9
- * MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
10
- * See the Mulan PSL v2 for more details.
11
- **/
12
- const en = {
13
- openatccomponents: {
14
- 'auth': {
15
- 'current': 'Current Password',
16
- 'new': 'New Password',
17
- 'contain': 'Passsword should contain',
18
- 'contain1': ' 8 or more characters.',
19
- 'contain2': 'numbers,letters and special',
20
- 'contain3': 'characters.',
21
- 'confirm': 'Confirm New Password',
22
- 'strength': 'Strength',
23
- 'none': 'none',
24
- 'weak': 'weak',
25
- 'normal': 'normal',
26
- 'strong': 'strong',
27
- 'setnewpassword': 'Set New Password',
28
- 'oldpass': 'Old Password',
29
- 'inputpassagain': 'Please enter the password again',
30
- 'twopassinconsistent': 'The two passwords are inconsistent',
31
- 'inputpass': 'Please input a password',
32
- 'enternewpass': 'Please enter a new password',
33
- 'inputoldpass': 'Please input the old password!',
34
- 'twopassnotdiff': 'The new password cannot be the same as the old one!',
35
- 'originalpasserror': 'Original password error',
36
- 'modifisucceeded': 'Modification succeeded',
37
- 'getmd5error': 'Failed to get MD5!'
38
- },
39
- 'route': {
40
- 'dashboard': 'Dashboard',
41
- 'overview': 'Overview',
42
- 'edge': 'Tsc',
43
- 'phase': 'Phase',
44
- 'overlap': 'Overlap',
45
- 'pattern': 'Pattern',
46
- 'plan': 'Plan',
47
- 'date': 'Date',
48
- 'channel': 'Channel',
49
- 'channelLock': 'ChannelLock',
50
- 'detector': 'Detector',
51
- 'pedestrianDetector': 'PedDetector',
52
- 'system': 'System',
53
- 'history': 'Fault',
54
- 'optimize': 'Optimize',
55
- 'control': 'Control',
56
- 'deviceInfo': 'DeviceInfo',
57
- 'adaptiveParameter': 'AdaptiveParameter',
58
- 'user': 'User',
59
- 'dailyRecord': 'DailyRecord',
60
- 'controlPanel': 'ControlPanel',
61
- 'statistics': 'Statistics'
62
- },
63
- 'main': {
64
- 'main': 'Main',
65
- 'home': 'Home',
66
- 'logout': 'LogOut',
67
- 'upload': 'Upload',
68
- 'download': 'Download',
69
- 'import': 'Import',
70
- 'export': 'Export',
71
- 'importtemplate': 'Import Template',
72
- 'copy': 'Copy',
73
- 'copyDevice': 'Device',
74
- 'copyPattern': 'pattern already copied',
75
- 'tip': 'Tips',
76
- 'read': 'Read',
77
- 'language': 'Language',
78
- 'readDevice': 'Whether to load device',
79
- 'readPattern': 'pattern into the current device configuration ?',
80
- 'title': 'Welcome to KISS Edge Manage Center',
81
- 'changelanguage': 'Switch Language',
82
- 'agentid': 'AGENTID',
83
- 'Password expiration': 'Password expiration',
84
- 'organization': 'Organization',
85
- 'realname': 'Name',
86
- 'phone': 'Telephone',
87
- 'email': 'Email',
88
- 'changepass': 'Change Password',
89
- 'about': 'About',
90
- 'exit': 'Exit',
91
- 'help': 'Help',
92
- 'options': 'options',
93
- 'options1': 'All',
94
- 'options2': 'Phase',
95
- 'options3': 'Overlap',
96
- 'options4': 'Pattern',
97
- 'options5': 'Plan',
98
- 'options6': 'Date',
99
- 'options7': 'Channel',
100
- 'options8': 'Detector',
101
- 'options9': 'PedestrianDetector',
102
- 'graphics': 'Graphics interface',
103
- 'text': 'Text interface'
104
- },
105
- 'overview': {
106
- 'crossinfo': 'Cross Information',
107
- 'crossname': 'Cross Name',
108
- 'divicestate': 'Device Status',
109
- 'protocoltype': 'Protocol',
110
- 'signalID': 'Intersection ID',
111
- 'signalIP': 'Signal IP',
112
- 'faultinfo': 'Fault Information',
113
- 'platform': 'platform',
114
- 'online': 'Online',
115
- 'patternid': 'Pattern Id',
116
- 'offline': 'Offline',
117
- 'connected': 'Connected',
118
- 'onlineing': 'Offline...',
119
- 'controlmode': 'Control Mode',
120
- 'manual': 'Manual',
121
- 'exitmanual': 'Exit Manual',
122
- 'controlmodel': 'Control Pattern',
123
- 'patternname': 'Pattern Name',
124
- 'controlnumber': 'Pattern Num',
125
- 'mode': 'Mode',
126
- 'stage': 'Stage',
127
- 'specialcontrol': 'Special Control',
128
- 'phaseclosecontrol': 'Phase Close Control',
129
- 'phaseclose': 'Close Phase',
130
- 'phaselocking': 'Priority Control',
131
- 'tentativeplan': 'Tentative Plan',
132
- 'prioritycontrol': 'Priority Control',
133
- 'implement': 'Execute',
134
- 'comfirm': 'Comfirm',
135
- 'ipaddress': 'IP',
136
- 'deviceport': 'Port',
137
- 'agreement': 'Protocol',
138
- 'currentstage': 'Current Stage',
139
- 'allstagesnum': 'Total Stages',
140
- 'patternnum': 'Pattern Number',
141
- 'details': 'Details',
142
- 'autocontrol': 'Multi Period',
143
- 'yellowflash': 'Yellow Flash Control',
144
- 'allred': 'Red Control',
145
- 'step': 'Step Control',
146
- 'fixedperiod': 'Fixed_Cycle Control',
147
- 'inductioncontrol': 'Free Control',
148
- 'nocablecoordination': 'Nocable Control',
149
- 'phasewalk': 'Pedestrian Crossing Control',
150
- 'websteroptimization': 'Webster Single Point Optimization',
151
- 'inductivePedestrianCrossControl': 'Inductive Pedestrian Crossing Control',
152
- 'selfadaption': 'Self-Adaption',
153
- 'custom': 'Custom',
154
- 'controlmodevalue': 'Control Value',
155
- 'patternstate': 'Pattern State',
156
- 'cycle': 'Cycle',
157
- 'phasesplit': 'Phase Split',
158
- 'phase': 'Phase',
159
- 'patternoffset': 'Pattern offset',
160
- 'coordinationtime': 'Offset',
161
- 'getintersectionmapagain': 'Get intersection map again',
162
- 'ring': 'Ring',
163
- 'phaseid': 'Phase ID',
164
- 'detectorid': 'Detector ID',
165
- 'smallcars': 'Small Cars',
166
- 'mediumvehicles': 'Medium Vehicles',
167
- 'bigcars': 'Big Cars',
168
- 'possessionoftime': 'Possession Of Time',
169
- 'occupancy': 'Occupancy',
170
- 'phase_countdown': 'Phase_countdown',
171
- 'split': 'Split',
172
- 'type': 'Type',
173
- 'showlist': 'showlist',
174
- 'showlist1': 'Control Mode',
175
- 'showlist2': 'Cycle',
176
- 'showlist3': 'Current/Remaining Time',
177
- 'showlist4': 'Control Mode',
178
- 'showlist5': 'Offset',
179
- 'showlist6': 'Real-time Volume',
180
- 'platformcontrol': 'Platform Control',
181
- 'configurationtoolcontrol': 'Configuration Tool Control',
182
- 'manualcontrol': 'Manual Control',
183
- 'modelList': 'modelList',
184
- 'modelList0': 'Multi Period',
185
- 'modelList1': 'Yellow Flash',
186
- 'modelList2': 'Red Control',
187
- 'modelList3': 'Dark Control',
188
- 'modelList4': 'Step Control',
189
- 'modelList5': 'Fixed_Cycle Control',
190
- 'modelList6': 'Free Control',
191
- 'modelList7': 'Coordinated Induction Control',
192
- 'modelList8': 'Solution Selection Control',
193
- 'modelList9': 'Self-Adaption',
194
- 'modelList10': 'Nocable Control',
195
- 'modelList11': 'Host Computer Coordinated Control',
196
- 'modelList12': 'phasewalk',
197
- 'modelList13': 'Pattern Recovery',
198
- 'modelList14': 'Phase dwell',
199
- 'modelList15': 'Channel Detection',
200
- 'modelList16': 'Direction lock',
201
- 'modelList17': 'Webster Single Point Coordination',
202
- 'modelList18': 'Reserving18',
203
- 'modelList19': 'Inductive Pedestrian Crossing Control',
204
- 'modelList20': 'Program Intervention',
205
- // 'modelList100': 'Program Intervention',
206
- 'modelList21': 'Reserving21',
207
- 'modelList22': 'Priority Control',
208
- 'modelList23': 'Close Phase',
209
- 'modelList100': 'Tentative Plan',
210
- 'modelList24': 'Priority Control',
211
- 'priorityType': 'Priority Type',
212
- 'priorityPhase': 'Priority Phase',
213
- 'typeOption0': 'Regular Priority',
214
- 'typeOption1': 'Urgent Priority',
215
- 'es': 'East-Straight',
216
- 'el': 'East-Left',
217
- 'er': 'East-Right',
218
- 'eb': 'East-Back',
219
- 'ws': 'West-Straight',
220
- 'wl': 'West-Left',
221
- 'wr': 'West-Right',
222
- 'wb': 'West-Back',
223
- 'ns': 'North-Straight',
224
- 'nl': 'North-Left',
225
- 'nr': 'North-Right',
226
- 'nb': 'North-Back',
227
- 'ss': 'South-Straight',
228
- 'sl': 'South-Left',
229
- 'sr': 'South-Right',
230
- 'sb': 'South-Back',
231
- 'level': 'Level',
232
- 'levelOption': 'LevelOption',
233
- 'levelOption1': '1',
234
- 'levelOption2': '2',
235
- 'levelOption3': '3',
236
- 'levelOption4': '4',
237
- 'levelOption5': '5',
238
- 'modelList99': 'Device Mantenance',
239
- 'tips': 'Tips',
240
- 'exitmanul': 'It is necessary to restore self-control before exiting. Do you want to exit?',
241
- 'canceled': 'Cancelled',
242
- 'nextcycleeffic': 'Successful execution, the next cycle will take effect!',
243
- 'transitioneffic': 'The execution is successful. It will take effect after the transition switch!',
244
- 'controlnumerrormess': 'When the control mode is user-defined, the control mode number cannot be empty!',
245
- 'delay': 'Delay time',
246
- 'duration': 'Duration',
247
- 'curModel': 'Current Model',
248
- 'curStage': 'Current Stage',
249
- 'curPhase': 'Current Phase',
250
- 'responseTime': 'Response Time',
251
- 'putTscControlError1': 'Unsupported control pattern',
252
- 'putTscControlError2': 'Control number not exist',
253
- 'putTscControlError3': 'Unsupported control params',
254
- 'putTscControlError4': 'Unable to execute because device is in initialization',
255
- 'putTscControlError5': 'Cannot be executed, beacuse the pattern with higher priority is under control',
256
- 'putTscControlError6': 'Cannot be executed, beacuse the user with higher priority is under control',
257
- 'putTscControlError7': 'The scheme corresponding to the scheme number does not exist',
258
- 'putTscControlError8': 'Configuration contains green conflicts',
259
- 'nofault': 'None',
260
- 'extendedContent': 'Extended Content',
261
- 'JSONFormatError': 'JSON format error!',
262
- 'showFault': 'Display fault details',
263
- 'hideFault': 'Hide fault details',
264
- 'close': 'close',
265
- 'closemode': 'mode',
266
- 'closeOption0': 'recovery',
267
- 'closeOption1': 'close',
268
- 'closeOption2': 'only vehicle close',
269
- 'closeOption3': 'only pedestrian close',
270
- 'lockingOption0': 'recovery',
271
- 'lockingOption1': 'locking',
272
- 'lockingOption2': 'only vehicle locking',
273
- 'lockingOption3': 'only pedestrian locking',
274
- 'vehicle': 'vehicle',
275
- 'pedestrian': 'pedestrian',
276
- 'confirmed': 'confirmed',
277
- 'ignored': 'ignored',
278
- 'untreated': 'untreated',
279
- 'item': 'item'
280
- },
281
- 'phase': {
282
- 'desc': 'LaneDirection',
283
- 'peddesc': 'PedestrianDirection',
284
- 'controltype': 'ControlType',
285
- 'mingreen': 'MinGreen',
286
- 'max1': 'Max1',
287
- 'max2': 'Max2',
288
- 'passage': 'passage(min)',
289
- 'phasewalk': 'phasewalk',
290
- 'pedclear': 'PedClear',
291
- 'yellow': 'Yellow(min)',
292
- 'redclear': 'RedClear(min)',
293
- 'greenclear': 'GreenClear',
294
- 'ring': 'Ring',
295
- 'greenpulse': 'Greenpulse',
296
- 'redpulse': 'Redpulse',
297
- 'concurrent': 'Concurrent',
298
- 'lane': 'Connection',
299
- 'operation': 'Operation',
300
- 'add': 'Add Phase',
301
- 'deletetip': 'Delete This Phase ?',
302
- 'deleteAlltip': 'Are you sure to delete all phases and patterns ?',
303
- 'mostdata': 'There are at most 40 data !',
304
- 'es': 'East-Straight',
305
- 'el': 'East-Left',
306
- 'er': 'East-Right',
307
- 'eb': 'East-Back',
308
- 'ws': 'West-Straight',
309
- 'wl': 'West-Left',
310
- 'wr': 'West-Right',
311
- 'wb': 'West-Back',
312
- 'ns': 'North-Straight',
313
- 'nl': 'North-Left',
314
- 'nr': 'North-Right',
315
- 'nb': 'North-Back',
316
- 'ss': 'South-Straight',
317
- 'sl': 'South-Left',
318
- 'sr': 'South-Right',
319
- 'sb': 'South-Back',
320
- 'eped': 'East-Pedestrian',
321
- 'wped': 'West-Pedestrian',
322
- 'sped': 'South-Pedestrian',
323
- 'nped': 'North-Pedestrian',
324
- 'etped': 'East-Top-Pedestrian',
325
- 'ebped': 'East-Bottom-Pedestrian',
326
- 'wtped': 'West-Top-Pedestrian',
327
- 'wbped': 'West-Bottom-Pedestrian',
328
- 'slped': 'South-Left-Pedestrian',
329
- 'srped': 'South-Right-Pedestrian',
330
- 'nlped': 'North-Left-Pedestrian',
331
- 'nrped': 'North-Right-Pedestrian',
332
- 'xrped': 'X-/-Pedestrian',
333
- 'xlped': 'X-\\-Pedestrian',
334
- 'ewped': 'East-West-Pedestrian',
335
- 'snped': 'South-North-Pedestrian',
336
- 'redyellow': 'redyellow',
337
- 'vehiclethresh': 'Vehicle Queuing Threshold',
338
- 'pedestrianthresh': 'Pedestrian waiting Threshold',
339
- 'mainroad': 'main road',
340
- 'bypass': 'by-pass',
341
- 'pedestrianonly': 'pedestrian only',
342
- 'busonly': 'bus only',
343
- 'BRTonly': 'BRT only',
344
- 'tramonly': 'tram only',
345
- 'nonvehiclesonly': 'non vehicles only',
346
- 'virtualphase': 'virtual phase',
347
- 'pulsetype': 'PulseType',
348
- 'offpulse': 'Turn off pedestrian and vehicle pulses',
349
- 'sendvehiclepulse': 'Send vehicle pulse',
350
- 'sendpedestrianpulse': 'Send pedestrian pulse',
351
- 'sendpedestriansvehiclepulse': 'Send pedestrians and vehicles pulses'
352
- },
353
- 'overlap': {
354
- 'desc': 'Description',
355
- 'includedPhases': 'IncludedPhases',
356
- 'lane': 'Lane',
357
- 'operation': 'Operation',
358
- 'add': 'Add overlap',
359
- 'deletetip': 'Delete This Overlap?',
360
- 'mostdata': 'There are at most 16 data !'
361
- },
362
- 'pattern': {
363
- 'property': 'Property',
364
- 'desc': 'Description',
365
- 'offset': 'Offset',
366
- 'cycle': 'Cycle',
367
- 'operation': 'Operation',
368
- 'deletetip': 'Delete This Pattern?',
369
- 'firstphase': 'Please create phase first !',
370
- 'mostdata': 'There are at most 32 data !',
371
- 'ring': 'Ring',
372
- 'modeOption1': 'Other',
373
- 'modeOption2': 'None',
374
- 'modeOption3': 'Min Call',
375
- 'modeOption4': 'Max Call',
376
- 'modeOption5': 'Pedestrian Call',
377
- 'modeOption6': 'Max Call And Pedestrian Call',
378
- 'modeOption7': 'Omit Call',
379
- 'coordphaseOption1': 'Coordination Phase',
380
- 'coordphaseOption2': 'Key Phase',
381
- 'coordphaseOption4': 'Fixed Phase',
382
- 'forbiddenstage': 'Forbidden Stage',
383
- 'screenstage': 'Screen Stage',
384
- 'coordinatestage': 'Coordinate Stage ',
385
- 'delaystart': 'Delay Start ',
386
- 'advanceend': 'Advance End',
387
- 'stageConfig': 'Stage Config',
388
- 'parameters': 'Parameters',
389
- 'overLap': 'Over Lap',
390
- 'plan': 'Plan',
391
- 'ringConfig': 'Ring Config',
392
- 'stage': 'Stage',
393
- 'phase': 'Phase',
394
- 'agentidError': 'Failed to get agentid!',
395
- 'splitCheckMsg': 'The green letter ratio must be greater than the phase transition time or the pedestrian crossing + pedestrian transition time!',
396
- 'pattern': 'Pattern'
397
- },
398
- 'plan': {
399
- 'tipcontext': 'Please input your plan_name',
400
- 'editcontext': 'Please edit plan name',
401
- 'plannamerequired': 'Plan name is required!',
402
- 'plannamerepeated': 'Plan name cannot be repeated!',
403
- 'mostplandata': 'There are at most 16 data !!',
404
- 'tip': 'Tips',
405
- 'ok': 'OK',
406
- 'cancel': 'Cancel',
407
- 'desc': 'Description',
408
- 'time': 'Time',
409
- 'cycle': 'Cycle',
410
- 'pattern': 'Pattern',
411
- 'operation': 'Operation',
412
- 'deletetip': 'Delete This Plan?',
413
- 'tabtip': 'Delete This Tab?',
414
- 'mostdata': 'There are at most 48 data !',
415
- 'editname': 'Edit name',
416
- 'controltype': 'Control Type',
417
- 'ControlOption1': 'Yellow Clear',
418
- 'ControlOption2': 'Red Control',
419
- 'ControlOption3': 'Dark Control',
420
- 'ControlOption4': 'Step Control',
421
- 'ControlOption5': 'Fixed_Cycle Control',
422
- 'ControlOption6': 'Free Control',
423
- 'ControlOption9': 'Self-Adaption',
424
- 'ControlOption10': 'Nocable Control',
425
- 'ControlOption12': 'Pedestrian Crossing Control',
426
- 'ControlOption19': 'Inductive Pedestrian Crossing Control',
427
- 'plan': 'plan'
428
- },
429
- 'date': {
430
- 'desc': 'Description',
431
- 'month': 'Month',
432
- 'day': 'Day',
433
- 'date': 'Date',
434
- 'plan': 'Plan',
435
- 'operation': 'Operation',
436
- 'deletetip': 'Delete This Date?',
437
- 'mostdata': 'There are at most 40 data !'
438
- },
439
- 'channel': {
440
- 'desc': 'Description',
441
- 'controlsource': 'ControlSource',
442
- 'controlType': 'ControlType',
443
- 'voltthresh': 'Voltthresh',
444
- 'pacthresh': 'Pacthresh',
445
- 'peakhthresh': 'Peakhthresh',
446
- 'peaklthresh': 'Peaklthresh',
447
- 'operation': 'Operation',
448
- 'other': 'other',
449
- 'phaseVehicle': 'phaseVehicle',
450
- 'phasePedestrian': 'phasePedestrian',
451
- 'overlap': 'overlap',
452
- 'deletetip': 'Delete This Channel ?',
453
- 'deleteAlltip': 'Delete All Channel ?',
454
- 'mostdata': 'There are at most 40 data !',
455
- 'firstoverlapl': 'Please create overlap first !'
456
- },
457
- 'detector': {
458
- 'desc': 'Description',
459
- 'type': 'Type',
460
- 'typeOptionundefined': '',
461
- 'typeOption': 'typeOption',
462
- 'typeOption0': 'Coil',
463
- 'typeOption1': 'Smart junction terminal',
464
- 'callPhase': 'CallPhase',
465
- 'noactivity': 'NoActivity(min)',
466
- 'maxpresence': 'MaxPresence(min)',
467
- 'erraticCounts': 'ErraticCounts(Car/minute)',
468
- 'failtime': 'FailTime(second)',
469
- 'enable': 'Enable',
470
- 'mode': 'Mode',
471
- 'presenttime': 'Presenttime(second)',
472
- 'sense': 'Sense',
473
- 'sampletime': 'Sampletime(μs)',
474
- 'inthresh': 'Inthresh',
475
- 'outthresh': 'Outthresh',
476
- 'infilter': 'Infilter',
477
- 'outfilter': 'Outfilter ',
478
- 'saturationflow': 'SaturationFlow',
479
- 'operation': 'Operation',
480
- 'deletetip': 'Delete This Detector?',
481
- 'deleteAlltip': 'Delete All Detector?',
482
- 'mostdata': 'There are at most 64 data !',
483
- 'mostclonedata': 'There are at most 72 data !'
484
- },
485
- 'channellock': {
486
- 'deleteAlltip': 'Delete All channellock',
487
- 'deleteOnetip': 'Are you sure you want to delete this channel lock?',
488
- 'starttime': 'Start Time',
489
- 'endtime': 'End Time',
490
- 'transitiongreenflashtime': 'Green Flashing Time',
491
- 'transitionyellowtime': 'Yellow Time',
492
- 'channelstats': 'Channel Status',
493
- 'lockinperiod': 'Lock In Period',
494
- 'channel': 'Channel',
495
- 'channelinfo': 'Channel Info',
496
- 'status': 'Status',
497
- 'status1': 'Default',
498
- 'status2': 'Ded Light',
499
- 'status3': 'Yellow Light',
500
- 'status4': 'Green Light',
501
- 'status5': 'Green Flash',
502
- 'status6': 'Lights Off',
503
- 'status7': 'Red Flash',
504
- 'maxlength': 'There are at most 24 data !'
505
- },
506
- 'channelControl': {
507
- 'recoverysuccess': 'Recovery Success!',
508
- 'recoveryfailed': 'Recovery Failed!',
509
- 'testsuccess': 'Test Success!',
510
- 'testfailed': 'Test Failed!',
511
- 'channel': 'Channel',
512
- 'redresidualvoltage': 'Red Residual Voltage',
513
- 'redoutputvoltage': 'Red Output Voltage',
514
- 'redoffresidualpower': 'Red Off Residual Power',
515
- 'redonoutputpower': 'Red On Output Power',
516
- 'yellowresidualvoltage': 'Yellow Residual Voltage',
517
- 'yellowoutputvoltage': 'Yellow Output Voltage',
518
- 'yellowoffresidualpower': 'Yellow Off Residual Power',
519
- 'yellowonoutputpower': 'Yellow On Output Power',
520
- 'greenresidualvoltage': 'Green Residual Voltage',
521
- 'greenoutputvoltage': 'Green Output Voltage',
522
- 'greenoffresidualpower': 'Green Off Residual Power',
523
- 'greenonoutputpower': 'Green On Output Power',
524
- 'inputvoltage': 'Input Voltage',
525
- 'implement': 'Implement',
526
- 'implementsuccess': 'Implement success!',
527
- 'noClickedLamp': 'No channel light terminal selected!'
528
- },
529
- 'pedestrianDetector': {
530
- 'desc': 'Description ',
531
- 'callPhase': 'Call Phase',
532
- 'noactivity': 'Noactivity(min)',
533
- 'maxpresence': 'Maxpresence(min)',
534
- 'erraticCounts': 'Erratic Counts(one/min',
535
- 'operation': 'Operation',
536
- 'deletetip': 'Delete This Detector',
537
- 'mostdata': 'There are at most 8 data !',
538
- 'type': 'Detector Type',
539
- 'typeOptionundefined': '',
540
- 'typeOption': 'typeOption',
541
- 'typeOption0': 'Coil',
542
- 'typeOption1': 'Radar',
543
- 'typeOption2': 'Video',
544
- 'region': 'Detector Area',
545
- 'regionOption': 'regionOption',
546
- 'regionOptionundefined': '',
547
- 'regionOption0': 'Default',
548
- 'regionOption1': 'Waiting Area',
549
- 'regionOption2': 'Cross Street Area'
550
- },
551
- 'deviceinfo': {
552
- 'deviceinfo': 'Device Info:',
553
- 'addresscode': 'Adress Code:',
554
- 'areaid': 'Region ID:',
555
- 'devid': 'Intersection ID:',
556
- 'devname': 'Intersection Name',
557
- 'selflearning': 'Selflearning:',
558
- 'deviceparam': 'Device Parameters:',
559
- 'startyellowflashtime': 'Start Yellow Flash Time:',
560
- 'startredtime': 'Start Red Time:',
561
- 'greenwavetransitionperiod': 'Transition Cycle:',
562
- 'ip1': 'IP1',
563
- 'ip': 'IP: ',
564
- 'subnetmask': 'Subnet Mask:',
565
- 'gateway': 'Gateway:',
566
- 'ip2': 'IP2',
567
- 'centercommunicationip': 'Center Communication IP',
568
- 'port': 'Port:',
569
- 'cascade': 'Cascade:',
570
- 'lampcontrolpanel': 'Number Of Light Control Panels:',
571
- 'boardsformainengine': 'Number Of Inspection Boards:',
572
- 'ioboards': 'Number Of IO Boards:',
573
- 'slavecascadeoffset': 'Slave Cascade Offset:',
574
- 'deviceinfostyle': 'margin-left: 100px; top: 10px;',
575
- 'deviceparamstyle': 'margin-left: 170px; top: 10px;',
576
- 'deviceselflearningstyle': 'margin-left: 100px; top: 15px;',
577
- 'faultdetect': 'Fault Detect',
578
- 'closegreenandredon': 'Close Green And Red On: ',
579
- 'closenoredon': 'Close No Red On: ',
580
- 'detectgapgreenandredon': 'Detect Gap Green And Red On(0.1s): ',
581
- 'detectgapnoredon': 'Detect Gap No Red On(0.1s): ',
582
- 'detectgapgreenconflict': 'Detect Gap Green Conflict(0.1s): ',
583
- 'startOrderParams': 'Start Order Params ',
584
- 'netcardInfo': 'Network Info: ',
585
- 'stepType': 'Step Type',
586
- 'step0': 'stage',
587
- 'step1': 'step',
588
- 'seeCutEffect': 'See Cut Detail',
589
- 'siteIdLimit': 'SiteId must be whithin 0 ~ 99999',
590
- 'siteIdCutEffect': 'SiteId Cut Detail',
591
- 'cutData': 'Cut Data',
592
- 'cutEffect': 'Cut Detail',
593
- 'longgerThan20': 'Data length is longger than 20 !',
594
- 'timezonehour': 'Time zone / Hour',
595
- 'timezoneminute': 'Time zone / Minute'
596
- },
597
- 'singleoptim': {
598
- 'deletetip': 'Sure to delete ?',
599
- 'selfControlParams': 'Self Control Params',
600
- 'lossTimeOfGreenBeginning': 'LossTime Of Green Beginning(second)',
601
- 'lossTimeOfYellowEnding': 'LossTime Of Yellow Ending(second)',
602
- 'saturationFlow': 'Saturation Flow(vehidle/hour)',
603
- 'cycleAdjustmentFactor': 'Cycle Adjustment Factor',
604
- 'selfLearningModeOnOrOff': 'Self Learning Mode',
605
- 'staticWeight': 'Static Weight',
606
- 'phaseStaticFactor': 'Phase Static Factor',
607
- 'createPatternFirst': 'Please create pattern first',
608
- 'gratterThanHundred': 'The sum must less than hundred '
609
- },
610
- 'controlpanel': {
611
- 'controlmode': 'Control Mode',
612
- 'duration': 'Green Duration',
613
- 'transitiongreenflashtime': 'Green Flash Time',
614
- 'transitionyellowtime': 'Yellow Time',
615
- 'transitionredtime': 'All Red Time',
616
- 'mingreen': 'Min Green',
617
- 'channel': 'Channel',
618
- 'channeldesc': 'Channel Description',
619
- 'status': 'State',
620
- 'step': 'Step',
621
- 'allred': 'All Red',
622
- 'yellowflash': 'Yellow Flash',
623
- 'defaultsettings': 'Default Settings',
624
- 'allclear': 'All Clear',
625
- 'clear': 'Clear',
626
- 'execute': 'Lock current direction',
627
- 'resetstatus': 'Reset State',
628
- 'manualbtn': 'manualbtn',
629
- 'manualbtn1': '1',
630
- 'manualbtn2': '2',
631
- 'manualbtn3': '3',
632
- 'manualbtn4': '4',
633
- 'manualbtn5': '5',
634
- 'manualbtn6': '6',
635
- 'manualbtn7': '7',
636
- 'manualbtn8': '8',
637
- 'channelstatus': 'channelstatus',
638
- 'channelstatus1': 'Red',
639
- 'channelstatus3': 'Green',
640
- 'channelstatus4': 'Lights Out',
641
- 'getdefaultmanualpaneltips': 'Generate default parameters successfully, please check!',
642
- 'phaseanddetectornotnull': 'Phase and channel cannot be empty!',
643
- 'iscleardata': 'Clear data?',
644
- 'tips': 'Tips',
645
- 'cancelclear': 'Emptying cancelled',
646
- 'changered': 'Do you want to initialize all States to red?',
647
- 'cancelinit': 'Uninitialized',
648
- 'manualpanelundefined': '',
649
- 'manualpanel0': 'Default',
650
- 'manualpanel1': 'Custom',
651
- 'manualcontrolbackground': 'manualcontrolbackgrounden',
652
- 'lockconfigempty': 'Channel locK info cannot be empty!'
653
- },
654
- 'system': {
655
- 'information': 'Information',
656
- 'remotecontrol': 'Remote Control',
657
- 'channeldetection': 'Channel Detection',
658
- 'signalversion': 'Signal Version',
659
- 'softwareversion': 'Software Version',
660
- 'hardwareversion': 'Hardware Version',
661
- 'currentsystemtime': 'System Time',
662
- 'time': 'Time',
663
- 'featureparameterversion': 'Parameter Version',
664
- 'version': 'Version',
665
- 'identificationcode': 'Identification Code',
666
- 'equipmentidentificationcode': 'Device Identification Code',
667
- 'remotedebugging': 'Remote Debugging',
668
- 'openornot': 'Open',
669
- 'automaticshutdown': 'Auto Shutdown',
670
- 'systemupdate': 'System Update',
671
- 'dataupdate': 'Data Update',
672
- 'reset': 'Set',
673
- 'sure': 'Sure',
674
- 'oper': 'Operation',
675
- 'selectfile': 'Select File',
676
- 'noselectfile': 'No update file selected!',
677
- 'updateUSB': 'Update USB',
678
- 'recovery': 'Recovery',
679
- 'lampcontrolpanel': 'Lamp Control Panel',
680
- 'featureparameterversionsetting': 'Parameter Version Setting',
681
- 'deviceidentificationcodesetting': 'Device Identification Code Setting',
682
- 'baudrate': 'Baudrate',
683
- 'databit': 'Data Bits',
684
- 'stopbit': 'Stop Bit',
685
- 'paritybit': 'Parity Bit',
686
- 'signalidentificationcode': 'Signal Identification Code',
687
- 'modifysystemtime': 'Modify System Time',
688
- 'selectdate': 'Select Date',
689
- 'anytimepoint': 'Any Time Point',
690
- 'tips': 'Tips',
691
- 'update': 'Update',
692
- 'duration1': '5min',
693
- 'duration2': '60min',
694
- 'duration3': 'Unlimited',
695
- 'remote1': 'Restart',
696
- 'remote2': 'Authorize',
697
- 'remote3': 'Custom',
698
- 'test': 'Test',
699
- 'realTimeChannel': 'Real time channel',
700
- 'isReboot': 'The system file is downloaded successfully. The update takes effect after restarting. Do you want to restart the device?',
701
- 'rebootSuccess': 'Restart successfully!',
702
- 'rebootFaile': 'Restart failed!',
703
- 'resetSuccess': 'Set successfully!',
704
- 'filesuccess': 'Upgrade file transfer complete!',
705
- 'filefailed': 'Upgrade interface call failed!',
706
- 'updateovertime': 'Update file overtime!'
707
- },
708
- 'optimize': {
709
- 'strategy': 'Optimization strategy',
710
- 'learn': 'Self learning',
711
- 'saturation': 'Statistical parameters of intersection(The sampling period is 5 minutes):',
712
- 'phase': 'Phase',
713
- 'flow': 'Saturated Flow(veh.)',
714
- 'queue': 'Saturated Queue length(veh.)',
715
- 'speed': 'Max Speed(km/h)',
716
- 'Occupancy': 'Saturated Occupancy rate',
717
- 'mathematical': 'mathematical model'
718
- },
719
- 'history': {
720
- 'description': 'Description',
721
- 'user': 'User',
722
- 'updatetime': 'Update Time',
723
- 'operation': 'Operation',
724
- 'deletetip': 'Delete This History?'
725
- },
726
- 'fault': {
727
- 'refresh': 'Refresh',
728
- 'uploadfault': 'Upload Fault',
729
- 'export': 'Export',
730
- 'faultofcurrentdetailedlightgroup': 'Detail Faults',
731
- 'faultofcurrentdetailedvehicleinspectionversion': 'Detail Faults',
732
- 'tab': 'tab',
733
- 'tab0': 'Overview',
734
- 'tab1': 'Main Control Board',
735
- 'tab2': 'Light Control Panel',
736
- 'tab3': 'Vehicle Inspection Board',
737
- 'tab4': 'I/O Board',
738
- 'tab5': 'Fault board',
739
- 'tab6': 'Characteristic params',
740
- 'maintype': 'Maintype',
741
- 'subtype': 'Subtype',
742
- 'occurtime': 'Occurtime',
743
- 'recoverytime': 'Recoverytime',
744
- 'grade': 'Grade',
745
- 'value': 'value'
746
- },
747
- 'statistics': {
748
- 'username': 'User_name:',
749
- 'pass': 'Password:',
750
- 'usernameplaceholder': 'Enter one user name',
751
- 'passplaceholder': 'Please input a password',
752
- 'getdevicedata': 'Upload flow',
753
- 'detector': 'Detector',
754
- 'time': 'Time',
755
- 'flow': 'Flow',
756
- 'occupyrate': 'Occupancy',
757
- 'occupytime': 'Possession of time',
758
- 'userpassnotnull': 'User name or password cannot be empty!',
759
- 'historicalisempty': 'Get historical traffic data is empty!'
760
- },
761
- 'dailyrecord': {
762
- 'data': 'Data',
763
- 'infotype': 'Infotype',
764
- 'subject': 'Subject',
765
- 'object': 'Object',
766
- 'operationresults': 'Operation Result',
767
- 'uploaddailyrecord': 'Upload Dailyrecord',
768
- 'success': 'Success',
769
- 'fault': 'Fault',
770
- 'platform': 'Platform',
771
- 'configurationsoftware': 'Configuration Software',
772
- 'getmanualpanel': 'Getmanual Panel',
773
- 'signal': 'Signal Machine',
774
- 'localpanelcontrol': 'Local Panel Control',
775
- 'systemmanualcontrol': 'System Manual Control',
776
- 'systemdownloadcharacteristic': 'System Download Characteristic Parameters',
777
- 'systemdownload': 'System Download',
778
- 'systemuploadparameters': 'System Upload Parameters',
779
- 'systemrestartsignal': 'System Restart Signal',
780
- 'systemdownloadplan': 'System Download Plan',
781
- 'systemuploadplan': 'System Upload Plan',
782
- 'systemdownloadschedulingplan': 'System Download Scheduling Plan',
783
- 'systemuploadschedulingplan': 'System Upload Scheduling Plan',
784
- 'systemdownloaddate': 'System Download Date',
785
- 'systemuploaddate': 'System Upload Date',
786
- 'systemchanneldetection': 'System Channel Detection',
787
- 'systemsolutionintervention': 'System Solution Intervention',
788
- 'systemsetuptime': 'System Setup Time'
789
- },
790
- 'control': {
791
- 'mode': 'Mode:',
792
- 'control': 'Control:',
793
- 'cycle': 'Cycle:',
794
- 'offset': 'Offset:',
795
- 'curTime': 'CurTime:',
796
- 'syncTime': 'SyncTime:',
797
- 'score': 'Score:',
798
- 'level': 'Level:',
799
- 'patternid': 'Pattern Id:',
800
- 'name': 'Name:',
801
- 'current_phase': 'Current_phase:',
802
- 'phase': 'Phase',
803
- 'ring': 'Ring',
804
- 'control_style': 'Control',
805
- 'mode_style': 'Mode',
806
- 'pattern': 'Pattern',
807
- 'phase_countdown': 'Phase_countdown:',
808
- 'split': 'Split:',
809
- 'countdown': 'Countdown:',
810
- 'id': 'Id:',
811
- 'type': 'Type:',
812
- 'light_countdown': 'Light_countdown:',
813
- 'sequence': 'Sequence:',
814
- 'num': 'Num:',
815
- 'value': 'Parameters',
816
- 'currentvolume': 'CurrentVolume',
817
- 'time': 'Time'
818
- },
819
- 'button': {
820
- 'OK': 'OK',
821
- 'Cancel': 'Cancel',
822
- 'Back': 'Back',
823
- 'ignore': 'Ignore',
824
- 'confirm': 'Confirm',
825
- 'save': 'Save',
826
- 'reset': 'Reset'
827
- },
828
- 'common': {
829
- 'confirm': 'Confirm',
830
- 'query': 'Query',
831
- 'cancel': 'Cancel',
832
- 'add': 'Add',
833
- 'delete': 'Delete',
834
- 'clone': 'Clone',
835
- 'deleteall': 'DeleteAll',
836
- 'update': 'Update',
837
- 'search': 'Search',
838
- 'alarm': 'Alarm',
839
- 'none': 'none',
840
- 'weak': 'weak',
841
- 'normal': 'normal',
842
- 'strong': 'strong',
843
- 'name': 'Name',
844
- 'path': 'Path',
845
- 'description': 'Description',
846
- 'operations': 'Operations',
847
- 'addfailed': 'Add Success!',
848
- 'addsucess': 'Add Failed!',
849
- 'addcancel': 'Add Canceled!',
850
- 'deletefailed': 'Delete Failed!',
851
- 'deletesucess': 'Delete Success!',
852
- 'deletecancel': 'Delete Canceled!',
853
- 'updatefailed': 'Update Failed!',
854
- 'updatesucess': 'Update Success!',
855
- 'updatecancel': 'Update Canceled!',
856
- 'relatefailed': 'Relate Failed!',
857
- 'relatesucess': 'Relate Success!',
858
- 'relatecancel': 'Relate Canceled!',
859
- 'upload': 'Upload',
860
- 'select': 'Select',
861
- 'input': 'Please enter a word',
862
- 'entercontent': 'Please enter the content',
863
- 'commit': 'Commit',
864
- 'commitandexecute': 'CommitAndExecute',
865
- 'uploadsuccess': 'Upload Success!',
866
- 'download': 'Download Success!',
867
- 'downloaderror': 'Signal Check Error!',
868
- 'downloadandrun': 'Submit and run successfully!',
869
- 'editagentid': 'Edit AgentID',
870
- 'querysucess': 'Query Success!',
871
- 'setup': 'setup',
872
- 'tipsmodaltitle': 'Tips',
873
- 'deviceoffline': 'Device not online!',
874
- 'operationsuccess': 'Operation Success !',
875
- 'savesucess': 'Save Success!'
876
- },
877
- 'login': {
878
- 'title': 'Openatc-Configer',
879
- 'login': 'Sign in',
880
- 'authorize': 'Authorize',
881
- 'close': 'Close',
882
- 'dialogtitle': 'Available authorizations',
883
- 'username': 'User Name',
884
- 'password': 'Password',
885
- 'networkparam': 'Network parameters',
886
- 'port': 'Port',
887
- 'protocol': 'Protocol',
888
- 'restoredefaultparameters': 'Restore default parameters',
889
- 'enterip': 'Please enter IP',
890
- 'enterlegalip': 'Please enter legal IP!',
891
- 'enterpport': 'Please enter the port',
892
- 'entercorrectport': 'Please enter the correct port!',
893
- 'usernamenotnull': 'User name cannot be empty!',
894
- 'passnotnull': 'Password cannot be empty!',
895
- 'selectagreement': 'Please select protocol',
896
- 'enterdeviceid': 'Please enter device ID',
897
- 'loginerror': 'Login error!'
898
- },
899
- 'errorTip': {
900
- 'phaseNotZero': 'Must contain at least phase !',
901
- 'phaseExceed': 'One ring can not exceed 16 phases at most!',
902
- 'planNotZero': 'Must contain at least plan !',
903
- 'patternNotZero': 'Must contain at least pattern',
904
- 'dataNotZero': 'Must contain at least data!',
905
- 'dateIsAll': 'This date must be full year !',
906
- 'planDate': 'The time in the plan is unreasonable !',
907
- 'patternRing': 'The ring time of the same pattern must be equal !',
908
- 'dataPlan': 'The plan in the date can not be empty !',
909
- 'planPattern': 'The pattern in the plan can not be empty !',
910
- 'overlapRules': 'The parent phase in the overlap cannot be empty',
911
- 'manualpanel': 'The manualpanel cannot be empty!',
912
- 'momthIsNull': 'Month cannot be empty in date!',
913
- 'devicenotonline': 'Device not online!',
914
- 'abnormalcommunication': 'Abnormal Communication!',
915
- 'saveParamFailed': 'Signal save parameter failed!',
916
- 'ringErrorTip': 'Ring configuration should be started from ring 1, and skip ring configuration is not allowed!',
917
- 'deviceinformationnotnull': 'Address code in device information cannot be empty!',
918
- 'noSchemeUpload': 'There is no scheme to upload!',
919
- 'readSchemeSucc': 'Reading scheme succeeded!',
920
- 'singleDownloadNotZero': 'Download data cannot be empty!'
921
- },
922
- 'importTemp': {
923
- 'editTemplateData': 'Edit Template Data',
924
- 'template': 'Template',
925
- 'crossShape': 'Cross Shape',
926
- 'name': 'Name',
927
- 'phaseCount': 'Phase Count',
928
- 'phase': 'Phase',
929
- 'greenClear': 'GreenClear',
930
- 'yellow': 'Yellow',
931
- 'redClear': 'RedClear',
932
- 'pattern': 'Pattern',
933
- 'count': 'Count',
934
- 'split': 'Split',
935
- 'plan': 'Plan',
936
- 'date': 'Date',
937
- 'annual': 'Annual',
938
- 'crossShapes': {
939
- 'crossroads': 'Crossroads',
940
- 'tjunction': 'T-junction',
941
- 'roundabout': 'Roundabout',
942
- 'rampintersection': 'RampIntersection',
943
- 'pedestriancrossing': 'PedestrianCrossing',
944
- 'otherIntersections': 'OtherIntersections',
945
- 'customIntersection': 'CustomIntersection'
946
- },
947
- 'crossIntersection': {
948
- 'eastward': 'Eastward',
949
- 'westward': 'Westward',
950
- 'southward': 'Southward',
951
- 'northward': 'Northward',
952
- 'eastwestward': 'Eastwestdirection',
953
- 'southnorthward': 'Northsouthdirection'
954
- },
955
- 'crossPhase': {
956
- 'onePhase': 'OnePhase',
957
- 'twoPhase': 'TwoPhase',
958
- 'threePhase': 'ThreePhase',
959
- 'fourPhase': 'FourPhase',
960
- 'fivePhase': 'FivePhase',
961
- 'sixPhase': 'SixPhase',
962
- 'sevenPhase': 'SevenPhase',
963
- 'eightPhase': 'EightPhase',
964
- 'ninePhase': 'NinePhase',
965
- 'tenPhase': 'TenPhase',
966
- 'elevenPhase': 'ElevenPhase',
967
- 'twelvePhase': 'TwelvePhase',
968
- 'thirteenPhase': 'ThirteenPhase',
969
- 'fourteenPhase': 'FourteenPhase',
970
- 'fifteenPhase': 'FifteenPhase',
971
- 'sixteenPhase': 'SixteenPhase'
972
- }
973
- },
974
- 'about': {
975
- 'version': 'Version',
976
- 'copyright': 'Copyright',
977
- 'company': 'KEDACOM',
978
- 'packedtime': 'Packed time',
979
- 'opensourceagreement': 'Opensource Agreement'
980
- },
981
- 'message': {
982
- 'errorcode': 'Error code',
983
- '10000': 'Parameter is empty',
984
- '10001': 'Parameter length error',
985
- '1002': 'Error',
986
- '10002': 'Record cannot be empty',
987
- '20003': 'id cannot be empty and cannot be 0',
988
- '20004': 'No parameter record',
989
- '20005': 'No device id found',
990
- '20006': 'Data stream close failed!',
991
- '20007': 'Json Type conversion failed!',
992
- '20008': 'File read failed!',
993
- '20009': 'File does not exist!',
994
- '20010': 'I/O close mistake!',
995
- // 全局异常错误
996
- '0001': 'Null pointer',
997
- '0002': 'Wrong request method',
998
- '0003': 'Incorrect input parameter type',
999
- '0004': 'Incomplete input parameters',
1000
- '0005': 'Input parameters do not meet constraints',
1001
- '0006': 'system error',
1002
- // 用户管理错误
1003
- '3001': 'Username does not exist',
1004
- '3002': 'Authentication failed',
1005
- '3003': 'Duplicate username',
1006
- '3004': 'The old and new passwords cannot be the same',
1007
- '3005': 'password can not be blank',
1008
- '3006': 'The original password is wrong',
1009
- '3007': 'Login user does not exist',
1010
- '3008': 'No access',
1011
- '3009': 'wrong password',
1012
- '3010': 'Super user role cannot be modified',
1013
- '3011': 'username or password is wrong',
1014
- '3013': 'Account is disabled',
1015
- '3014': 'token has expired',
1016
- '3015': 'token failure',
1017
- '3016': 'User organization is empty',
1018
- '3017': 'Organization does not exist',
1019
- '3018': 'Access ip is inconsistent with user ip, login is forbidden',
1020
- // 消息通讯错误
1021
- '4001': 'Error Request',
1022
- '4002': 'Error Response',
1023
- '4003': 'Device Not Online',
1024
- '4004': 'Repeat ID',
1025
- '4005': 'Device Empty Response',
1026
- '4006': 'Device Response Operation Is None',
1027
- // 错误子类型
1028
- // error-request
1029
- '4100': 'agentid is null!',
1030
- '4101': 'operation is null!',
1031
- '4102': 'infotype is null!',
1032
- '4103': 'infodata is null!',
1033
- '4104': 'JSON format is incorrect!',
1034
- '4105': 'agentid not exist!',
1035
- '4106': 'Unknown operation type!',
1036
- '4107': 'Unknown infotype!',
1037
- '4108': 'protocol is null!',
1038
- '4109': 'Receive Time Out or Receive Incorrect Data!',
1039
- '4110': 'Last sendData is not finished!',
1040
- '4111': 'Port is null!',
1041
- '4112': 'Cache is null!',
1042
- '4113': 'Keyints can not be null',
1043
- '4114': 'Keyints can not be the first two when strategy is up!',
1044
- '4115': 'Keyints can not be the last two when strategy is down!',
1045
- '4116': 'No less than three intersections!',
1046
- // error-response
1047
- '4200': 'response is null!',
1048
- '4201': 'response format error!',
1049
- '4203': 'Unknown request instruction!',
1050
- '4204': 'Comm Send Data error!',
1051
- '4205': 'Udp Receive InfoType error by Send InfoType',
1052
- '4206': 'Can not find UdpCommunication for Receive Msg',
1053
- '4207': 'Error response from feature download',
1054
- // device not online
1055
- '4301': 'Device not online',
1056
- // 协调路线错误
1057
- '5001': 'Repeat Route Name',
1058
- // 勤务路线错误
1059
- '6001': 'Repeat Route Name',
1060
- '6002': 'The route is on execution',
1061
- '6003': 'VipRoute Cannot cancel! Control is changed.',
1062
- // 流量错误
1063
- '7001': 'ftp clent connect fail',
1064
- // 组织机构错误
1065
- '11001': 'Repeat Name!',
1066
- // 路口管理错误
1067
- '8001': 'device not found By Agentid!',
1068
- '8002': 'device is found By CoordinateRoute',
1069
- '8003': 'device is found By VipRoute',
1070
- '8004': 'Agentid is duplicated',
1071
- // 错误类型子类型,返回码第二层
1072
- '8101': 'Device can not delete!',
1073
- // 瓶颈控制错误
1074
- '9001': 'Overflow control failed!',
1075
- '9002': 'Overflow recovery failed!',
1076
- '9003': 'Overflow is executing, can not be deleted!',
1077
- '9004': 'Overflow pattern name is already exist!',
1078
- '9005': 'Overflow pattern is empty!',
1079
- '9006': 'No Overflow pattern is in execution!'
1080
- },
1081
- 'faultrecord': {
1082
- 'faultDetail': 'Fault Detail',
1083
- 'faultMaintype': 'Main Type',
1084
- 'faultSubtype': 'Sub Type',
1085
- 'faultOccurtime': 'Occur Time',
1086
- 'boardCardType': 'BoardCard Type',
1087
- 'faultGrade': 'Grade',
1088
- 'faultValue': 'Value',
1089
- 'asc': 'Asc',
1090
- 'patterncalc': 'Pattern Calc',
1091
- 'monitor': 'Monitor',
1092
- 'statusfault': 'Status Fault',
1093
- 'untreated': 'Untreated',
1094
- 'ignored': 'Ignored',
1095
- 'confirmed': 'Confirmed',
1096
- 'powerup': 'Output Power Is Up',
1097
- 'powerdown': 'Output Power Is Down',
1098
- 'powerno': 'Output Power Is Zero',
1099
- 'powerfault': 'Off Output Power Is High',
1100
- 'general': 'General failure',
1101
- 'degradation': 'Degradation failure',
1102
- 'serious': 'Serious failure',
1103
- 'maincontrolboard': 'Main Control Board',
1104
- 'lightcontrolversion': 'Light Control Version',
1105
- 'carinspectionboard': 'Car Inspection Board',
1106
- 'eportingmodule': 'Eporting Module',
1107
- 'roadname': 'Road Name',
1108
- 'eventtype': 'Event Type',
1109
- 'neglect': 'Neglect',
1110
- 'faultlist': 'Fault Center',
1111
- 'confirm': 'Confirm',
1112
- 'realtimealert': 'Real Time Alert',
1113
- 'detaileddescription': 'Detailed Description',
1114
- 'ioboard': 'I/O board',
1115
- 'faultboard': 'Fault board',
1116
- 'characteristicparams': 'Characteristic params',
1117
- 'maincontrolboardfault': 'Main Control Board Fault',
1118
- 'lightcontrolversionfault': 'Light Control Version Fault',
1119
- 'carinspectionboardfault': 'Car Inspection Board Fault',
1120
- 'ioboardfault': 'I/O board Fault',
1121
- 'fixdetail': 'Fix Detail',
1122
- 'deviceid': 'Device Id',
1123
- 'faultid': 'Fault Id',
1124
- 'boardcardtype': 'Board Card Type',
1125
- 'faultbegintime': 'Fault Begin Time',
1126
- 'faultendtime': 'Fault End Time',
1127
- 'faulttype': 'Fault Type',
1128
- 'faultchild': 'Fault Child',
1129
- 'faultgrade': 'Fault Grade',
1130
- 'operation': 'Operation',
1131
- 'faultvaluedetail': 'Fault Value Detail',
1132
- 'operator': 'Operator',
1133
- 'operationTime': 'Operation Time',
1134
- 'enumerate': 'Enumerate',
1135
- 'realtimefault': 'Realtime Fault',
1136
- 'historicalfault': 'Historical Fault',
1137
- 'boardtype': 'Board type',
1138
- 'mainfaulttype': 'Main fault type',
1139
- 'confirmresults': 'Confirmation results',
1140
- 'intersectionname': 'Intersection Name',
1141
- 'faulttime': 'Time of failure',
1142
- 'isdelfaultrecord': 'Delete this fault record?',
1143
- 'channel': 'channel',
1144
- 'detector': 'detector',
1145
- 'port': 'port'
1146
- },
1147
- 'channelizationmap': {
1148
- 'importpicture': 'Import Picture',
1149
- 'importtip': 'The picture format is SVG, PNG and JPG, and the size is no more than 10MB',
1150
- 'importsizeerror': 'Picture size exceeds 10MB, please re import!',
1151
- 'importtypeerror': 'Picture format error, please import again!',
1152
- 'importcrosspicture': 'Import intersection picture',
1153
- 'againimport': 'Re import',
1154
- 'motorway': 'Motorway',
1155
- 'bicyclelane': 'Non motorized Lane',
1156
- 'pedcrossing': 'Ped crossing',
1157
- 'countdown': 'Countdown',
1158
- 'detector': 'Detector',
1159
- 'laneturn': 'Lane turn',
1160
- 'straightahead': 'Straightahead',
1161
- 'turnleft': 'Turnleft',
1162
- 'turnright': 'Turnright',
1163
- 'turnaround': 'Turnaround',
1164
- 'position': 'Position',
1165
- 'eastward': 'Eastward',
1166
- 'westward': 'Westward',
1167
- 'southward': 'Southward',
1168
- 'northward': 'Northward',
1169
- 'etped': 'East-Top',
1170
- 'ebped': 'East-Bottom',
1171
- 'wtped': 'West-Top',
1172
- 'wbped': 'West-Bottom',
1173
- 'slped': 'South-Left',
1174
- 'srped': 'South-Right',
1175
- 'nlped': 'North-Left',
1176
- 'nrped': 'North-Right',
1177
- 'xrped': 'X-/',
1178
- 'xlped': 'X-\\',
1179
- 'ewped': 'East-West',
1180
- 'snped': 'South-North',
1181
- 'choosedirerror': 'Select at least one lane to turn!',
1182
- 'lanetype': 'Lane Type',
1183
- 'vehiclemainroad': 'Vehicle Main Road',
1184
- 'vehiclebranch': 'Vehicle Branch',
1185
- 'nonmotorizedlane': 'Non Motorized',
1186
- 'buslane': 'Bus Lane',
1187
- 'BRTlane': 'BRT Lane',
1188
- 'tramlane': 'Tram Lane',
1189
- 'pedestriantype': 'Pedestrian Type',
1190
- 'pedestrian': 'Pedestrian',
1191
- 'secondcrossing': 'Second Crossing',
1192
- 'xpedestrian': 'X Pedestrian',
1193
- 'sectionpedestrian': 'Section Pedestrian',
1194
- 'delete': 'Delete',
1195
- 'clone': 'Clone',
1196
- 'drawtips': 'Click add on the intersection map after selection',
1197
- 'canclesetting': 'Cancel the channelization setting of the current intersection?',
1198
- 'phaseassociated': 'Phase Associated',
1199
- 'phase': 'phase',
1200
- 'associatedphaseerror': 'Association failed. Lanes in the same direction cannot be associated with different phases!',
1201
- 'overlapassociated': 'Overlap Associated',
1202
- 'flowsaturation': 'Flow saturation',
1203
- 'occupancysaturation': 'Occupancy saturation',
1204
- 'detectortype': 'Detector Type',
1205
- 'vehicledetector': 'Detector',
1206
- 'pedestriandetector': 'Pedestrian Detector',
1207
- 'detectorassociated': 'Detector Associated',
1208
- 'laneassociated': 'Lane Associated',
1209
- 'detectorthreshold': 'Detector Threshold',
1210
- 'occupancythreshold': 'Greenlight Utilization Threshold',
1211
- 'saturationthreshold': 'Flow Saturation Threshold',
1212
- 'checkthreshold': 'The threshold value cannot be blank. Please fill in a positive integer within the range of 0-100!',
1213
- 'pedestriancrossing': 'Pedestrian crossing',
1214
- 'pedestriansecondarycrossing': 'Pedestrian secondary crossing',
1215
- 'obliquepedestriancrossing': 'Oblique pedestrian crossing',
1216
- 'sectionpedestriancrossing': 'Section pedestrian crossing',
1217
- 'flipdisplay': 'Flip display',
1218
- 'vehiclelane': 'Vehicle lane',
1219
- 'sidewalk': 'Sidewalk',
1220
- 'angle': 'Angle',
1221
- 'basicinfo': 'Basic information',
1222
- 'importfilesuccess': 'Import of JSON file succeeded!'
1223
- }
1224
- }
1225
- }
1226
-
1227
- export default en
1
+ /**
2
+ * Copyright (c) 2020 kedacom
3
+ * OpenATC is licensed under Mulan PSL v2.
4
+ * You can use this software according to the terms and conditions of the Mulan PSL v2.
5
+ * You may obtain a copy of Mulan PSL v2 at:
6
+ * http://license.coscl.org.cn/MulanPSL2
7
+ * THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
8
+ * EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
9
+ * MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
10
+ * See the Mulan PSL v2 for more details.
11
+ **/
12
+ const en = {
13
+ openatccomponents: {
14
+ 'auth': {
15
+ 'current': 'Current Password',
16
+ 'new': 'New Password',
17
+ 'contain': 'Passsword should contain',
18
+ 'contain1': ' 8 or more characters.',
19
+ 'contain2': 'numbers,letters and special',
20
+ 'contain3': 'characters.',
21
+ 'confirm': 'Confirm New Password',
22
+ 'strength': 'Strength',
23
+ 'none': 'none',
24
+ 'weak': 'weak',
25
+ 'normal': 'normal',
26
+ 'strong': 'strong',
27
+ 'setnewpassword': 'Set New Password',
28
+ 'oldpass': 'Old Password',
29
+ 'inputpassagain': 'Please enter the password again',
30
+ 'twopassinconsistent': 'The two passwords are inconsistent',
31
+ 'inputpass': 'Please input a password',
32
+ 'enternewpass': 'Please enter a new password',
33
+ 'inputoldpass': 'Please input the old password!',
34
+ 'twopassnotdiff': 'The new password cannot be the same as the old one!',
35
+ 'originalpasserror': 'Original password error',
36
+ 'modifisucceeded': 'Modification succeeded',
37
+ 'getmd5error': 'Failed to get MD5!'
38
+ },
39
+ 'route': {
40
+ 'dashboard': 'Dashboard',
41
+ 'overview': 'Overview',
42
+ 'edge': 'Tsc',
43
+ 'phase': 'Phase',
44
+ 'overlap': 'Overlap',
45
+ 'pattern': 'Pattern',
46
+ 'plan': 'Plan',
47
+ 'date': 'Date',
48
+ 'channel': 'Channel',
49
+ 'channelLock': 'ChannelLock',
50
+ 'detector': 'Detector',
51
+ 'pedestrianDetector': 'PedDetector',
52
+ 'system': 'System',
53
+ 'history': 'Fault',
54
+ 'optimize': 'Optimize',
55
+ 'control': 'Control',
56
+ 'deviceInfo': 'DeviceInfo',
57
+ 'adaptiveParameter': 'AdaptiveParameter',
58
+ 'user': 'User',
59
+ 'dailyRecord': 'DailyRecord',
60
+ 'controlPanel': 'ControlPanel',
61
+ 'statistics': 'Statistics'
62
+ },
63
+ 'main': {
64
+ 'main': 'Main',
65
+ 'home': 'Home',
66
+ 'logout': 'LogOut',
67
+ 'upload': 'Upload',
68
+ 'download': 'Download',
69
+ 'import': 'Import',
70
+ 'export': 'Export',
71
+ 'importtemplate': 'Import Template',
72
+ 'copy': 'Copy',
73
+ 'copyDevice': 'Device',
74
+ 'copyPattern': 'pattern already copied',
75
+ 'tip': 'Tips',
76
+ 'read': 'Read',
77
+ 'language': 'Language',
78
+ 'readDevice': 'Whether to load device',
79
+ 'readPattern': 'pattern into the current device configuration ?',
80
+ 'title': 'Welcome to KISS Edge Manage Center',
81
+ 'changelanguage': 'Switch Language',
82
+ 'agentid': 'AGENTID',
83
+ 'Password expiration': 'Password expiration',
84
+ 'organization': 'Organization',
85
+ 'realname': 'Name',
86
+ 'phone': 'Telephone',
87
+ 'email': 'Email',
88
+ 'changepass': 'Change Password',
89
+ 'about': 'About',
90
+ 'exit': 'Exit',
91
+ 'help': 'Help',
92
+ 'options': 'options',
93
+ 'options1': 'All',
94
+ 'options2': 'Phase',
95
+ 'options3': 'Overlap',
96
+ 'options4': 'Pattern',
97
+ 'options5': 'Plan',
98
+ 'options6': 'Date',
99
+ 'options7': 'Channel',
100
+ 'options8': 'Detector',
101
+ 'options9': 'PedestrianDetector',
102
+ 'graphics': 'Graphics interface',
103
+ 'text': 'Text interface'
104
+ },
105
+ 'overview': {
106
+ 'crossinfo': 'Cross Information',
107
+ 'crossname': 'Cross Name',
108
+ 'divicestate': 'Device Status',
109
+ 'protocoltype': 'Protocol',
110
+ 'signalID': 'Intersection ID',
111
+ 'signalIP': 'Signal IP',
112
+ 'faultinfo': 'Fault Information',
113
+ 'platform': 'platform',
114
+ 'online': 'Online',
115
+ 'patternid': 'Pattern Id',
116
+ 'offline': 'Offline',
117
+ 'connected': 'Connected',
118
+ 'onlineing': 'Offline...',
119
+ 'controlmode': 'Control Mode',
120
+ 'manual': 'Manual',
121
+ 'exitmanual': 'Exit Manual',
122
+ 'controlmodel': 'Control Pattern',
123
+ 'patternname': 'Pattern Name',
124
+ 'controlnumber': 'Pattern Num',
125
+ 'mode': 'Mode',
126
+ 'stage': 'Stage',
127
+ 'specialcontrol': 'Special Control',
128
+ 'phaseclosecontrol': 'Phase Close Control',
129
+ 'phaseclose': 'Close Phase',
130
+ 'phaselocking': 'Priority Control',
131
+ 'tentativeplan': 'Tentative Plan',
132
+ 'prioritycontrol': 'Priority Control',
133
+ 'implement': 'Execute',
134
+ 'comfirm': 'Comfirm',
135
+ 'ipaddress': 'IP',
136
+ 'deviceport': 'Port',
137
+ 'agreement': 'Protocol',
138
+ 'currentstage': 'Current Stage',
139
+ 'allstagesnum': 'Total Stages',
140
+ 'patternnum': 'Pattern Number',
141
+ 'details': 'Details',
142
+ 'autocontrol': 'Multi Period',
143
+ 'yellowflash': 'Yellow Flash Control',
144
+ 'allred': 'Red Control',
145
+ 'step': 'Step Control',
146
+ 'fixedperiod': 'Fixed_Cycle Control',
147
+ 'inductioncontrol': 'Free Control',
148
+ 'nocablecoordination': 'Nocable Control',
149
+ 'phasewalk': 'Pedestrian Crossing Control',
150
+ 'websteroptimization': 'Webster Single Point Optimization',
151
+ 'inductivePedestrianCrossControl': 'Inductive Pedestrian Crossing Control',
152
+ 'selfadaption': 'Self-Adaption',
153
+ 'custom': 'Custom',
154
+ 'controlmodevalue': 'Control Value',
155
+ 'patternstate': 'Pattern State',
156
+ 'cycle': 'Cycle',
157
+ 'phasesplit': 'Phase Split',
158
+ 'phase': 'Phase',
159
+ 'patternoffset': 'Pattern offset',
160
+ 'coordinationtime': 'Offset',
161
+ 'getintersectionmapagain': 'Get intersection map again',
162
+ 'ring': 'Ring',
163
+ 'phaseid': 'Phase ID',
164
+ 'detectorid': 'Detector ID',
165
+ 'smallcars': 'Small Cars',
166
+ 'mediumvehicles': 'Medium Vehicles',
167
+ 'bigcars': 'Big Cars',
168
+ 'possessionoftime': 'Possession Of Time',
169
+ 'occupancy': 'Occupancy',
170
+ 'phase_countdown': 'Phase_countdown',
171
+ 'split': 'Split',
172
+ 'type': 'Type',
173
+ 'showlist': 'showlist',
174
+ 'showlist1': 'Control Mode',
175
+ 'showlist2': 'Cycle',
176
+ 'showlist3': 'Current/Remaining Time',
177
+ 'showlist4': 'Control Mode',
178
+ 'showlist5': 'Offset',
179
+ 'showlist6': 'Real-time Volume',
180
+ 'platformcontrol': 'Platform Control',
181
+ 'configurationtoolcontrol': 'Configuration Tool Control',
182
+ 'manualcontrol': 'Manual Control',
183
+ 'modelList': 'modelList',
184
+ 'modelList0': 'Multi Period',
185
+ 'modelList1': 'Yellow Flash',
186
+ 'modelList2': 'Red Control',
187
+ 'modelList3': 'Dark Control',
188
+ 'modelList4': 'Step Control',
189
+ 'modelList5': 'Fixed_Cycle Control',
190
+ 'modelList6': 'Free Control',
191
+ 'modelList7': 'Coordinated Induction Control',
192
+ 'modelList8': 'Solution Selection Control',
193
+ 'modelList9': 'Self-Adaption',
194
+ 'modelList10': 'Nocable Control',
195
+ 'modelList11': 'Host Computer Coordinated Control',
196
+ 'modelList12': 'phasewalk',
197
+ 'modelList13': 'Pattern Recovery',
198
+ 'modelList14': 'Phase dwell',
199
+ 'modelList15': 'Channel Detection',
200
+ 'modelList16': 'Direction lock',
201
+ 'modelList17': 'Webster Single Point Coordination',
202
+ 'modelList18': 'Reserving18',
203
+ 'modelList19': 'Inductive Pedestrian Crossing Control',
204
+ 'modelList20': 'Program Intervention',
205
+ // 'modelList100': 'Program Intervention',
206
+ 'modelList21': 'Reserving21',
207
+ 'modelList22': 'Priority Control',
208
+ 'modelList23': 'Close Phase',
209
+ 'modelList100': 'Tentative Plan',
210
+ 'modelList24': 'Priority Control',
211
+ 'priorityType': 'Priority Type',
212
+ 'priorityPhase': 'Priority Phase',
213
+ 'typeOption0': 'Regular Priority',
214
+ 'typeOption1': 'Urgent Priority',
215
+ 'es': 'East-Straight',
216
+ 'el': 'East-Left',
217
+ 'er': 'East-Right',
218
+ 'eb': 'East-Back',
219
+ 'ws': 'West-Straight',
220
+ 'wl': 'West-Left',
221
+ 'wr': 'West-Right',
222
+ 'wb': 'West-Back',
223
+ 'ns': 'North-Straight',
224
+ 'nl': 'North-Left',
225
+ 'nr': 'North-Right',
226
+ 'nb': 'North-Back',
227
+ 'ss': 'South-Straight',
228
+ 'sl': 'South-Left',
229
+ 'sr': 'South-Right',
230
+ 'sb': 'South-Back',
231
+ 'level': 'Level',
232
+ 'levelOption': 'LevelOption',
233
+ 'levelOption1': '1',
234
+ 'levelOption2': '2',
235
+ 'levelOption3': '3',
236
+ 'levelOption4': '4',
237
+ 'levelOption5': '5',
238
+ 'modelList99': 'Device Mantenance',
239
+ 'tips': 'Tips',
240
+ 'exitmanul': 'It is necessary to restore self-control before exiting. Do you want to exit?',
241
+ 'canceled': 'Cancelled',
242
+ 'nextcycleeffic': 'Successful execution, the next cycle will take effect!',
243
+ 'transitioneffic': 'The execution is successful. It will take effect after the transition switch!',
244
+ 'controlnumerrormess': 'When the control mode is user-defined, the control mode number cannot be empty!',
245
+ 'delay': 'Delay time',
246
+ 'duration': 'Duration',
247
+ 'curModel': 'Current Model',
248
+ 'curStage': 'Current Stage',
249
+ 'curPhase': 'Current Phase',
250
+ 'responseTime': 'Response Time',
251
+ 'putTscControlError1': 'Unsupported control pattern',
252
+ 'putTscControlError2': 'Control number not exist',
253
+ 'putTscControlError3': 'Unsupported control params',
254
+ 'putTscControlError4': 'Unable to execute because device is in initialization',
255
+ 'putTscControlError5': 'Cannot be executed, beacuse the pattern with higher priority is under control',
256
+ 'putTscControlError6': 'Cannot be executed, beacuse the user with higher priority is under control',
257
+ 'putTscControlError7': 'The scheme corresponding to the scheme number does not exist',
258
+ 'putTscControlError8': 'Configuration contains green conflicts',
259
+ 'putTscControlError20': 'In the provisional scheme, the green signal ratio should be greater than the phase minimum green + yellow light + all red, and less than the maximum green 1+ yellow light + all red',
260
+ 'nofault': 'None',
261
+ 'extendedContent': 'Extended Content',
262
+ 'JSONFormatError': 'JSON format error!',
263
+ 'showFault': 'Display fault details',
264
+ 'hideFault': 'Hide fault details',
265
+ 'close': 'close',
266
+ 'closemode': 'mode',
267
+ 'closeOption0': 'recovery',
268
+ 'closeOption1': 'close',
269
+ 'closeOption2': 'only vehicle close',
270
+ 'closeOption3': 'only pedestrian close',
271
+ 'lockingOption0': 'recovery',
272
+ 'lockingOption1': 'locking',
273
+ 'lockingOption2': 'only vehicle locking',
274
+ 'lockingOption3': 'only pedestrian locking',
275
+ 'vehicle': 'vehicle',
276
+ 'pedestrian': 'pedestrian',
277
+ 'confirmed': 'confirmed',
278
+ 'ignored': 'ignored',
279
+ 'untreated': 'untreated',
280
+ 'item': 'item'
281
+ },
282
+ 'phase': {
283
+ 'desc': 'LaneDirection',
284
+ 'peddesc': 'PedestrianDirection',
285
+ 'controltype': 'ControlType',
286
+ 'mingreen': 'MinGreen',
287
+ 'max1': 'Max1',
288
+ 'max2': 'Max2',
289
+ 'passage': 'passage(min)',
290
+ 'phasewalk': 'phasewalk',
291
+ 'pedclear': 'PedClear',
292
+ 'yellow': 'Yellow(min)',
293
+ 'redclear': 'RedClear(min)',
294
+ 'greenclear': 'GreenClear',
295
+ 'ring': 'Ring',
296
+ 'greenpulse': 'Greenpulse',
297
+ 'redpulse': 'Redpulse',
298
+ 'concurrent': 'Concurrent',
299
+ 'lane': 'Connection',
300
+ 'operation': 'Operation',
301
+ 'add': 'Add Phase',
302
+ 'deletetip': 'Delete This Phase ?',
303
+ 'deleteAlltip': 'Are you sure to delete all phases and patterns ?',
304
+ 'mostdata': 'There are at most 40 data !',
305
+ 'es': 'East-Straight',
306
+ 'el': 'East-Left',
307
+ 'er': 'East-Right',
308
+ 'eb': 'East-Back',
309
+ 'ws': 'West-Straight',
310
+ 'wl': 'West-Left',
311
+ 'wr': 'West-Right',
312
+ 'wb': 'West-Back',
313
+ 'ns': 'North-Straight',
314
+ 'nl': 'North-Left',
315
+ 'nr': 'North-Right',
316
+ 'nb': 'North-Back',
317
+ 'ss': 'South-Straight',
318
+ 'sl': 'South-Left',
319
+ 'sr': 'South-Right',
320
+ 'sb': 'South-Back',
321
+ 'eped': 'East-Pedestrian',
322
+ 'wped': 'West-Pedestrian',
323
+ 'sped': 'South-Pedestrian',
324
+ 'nped': 'North-Pedestrian',
325
+ 'etped': 'East-Top-Pedestrian',
326
+ 'ebped': 'East-Bottom-Pedestrian',
327
+ 'wtped': 'West-Top-Pedestrian',
328
+ 'wbped': 'West-Bottom-Pedestrian',
329
+ 'slped': 'South-Left-Pedestrian',
330
+ 'srped': 'South-Right-Pedestrian',
331
+ 'nlped': 'North-Left-Pedestrian',
332
+ 'nrped': 'North-Right-Pedestrian',
333
+ 'xrped': 'X-/-Pedestrian',
334
+ 'xlped': 'X-\\-Pedestrian',
335
+ 'ewped': 'East-West-Pedestrian',
336
+ 'snped': 'South-North-Pedestrian',
337
+ 'redyellow': 'redyellow',
338
+ 'vehiclethresh': 'Vehicle Queuing Threshold',
339
+ 'pedestrianthresh': 'Pedestrian waiting Threshold',
340
+ 'mainroad': 'main road',
341
+ 'bypass': 'by-pass',
342
+ 'pedestrianonly': 'pedestrian only',
343
+ 'busonly': 'bus only',
344
+ 'BRTonly': 'BRT only',
345
+ 'tramonly': 'tram only',
346
+ 'nonvehiclesonly': 'non vehicles only',
347
+ 'virtualphase': 'virtual phase',
348
+ 'pulsetype': 'PulseType',
349
+ 'offpulse': 'Turn off pedestrian and vehicle pulses',
350
+ 'sendvehiclepulse': 'Send vehicle pulse',
351
+ 'sendpedestrianpulse': 'Send pedestrian pulse',
352
+ 'sendpedestriansvehiclepulse': 'Send pedestrians and vehicles pulses'
353
+ },
354
+ 'overlap': {
355
+ 'desc': 'Description',
356
+ 'includedPhases': 'IncludedPhases',
357
+ 'lane': 'Lane',
358
+ 'operation': 'Operation',
359
+ 'add': 'Add overlap',
360
+ 'deletetip': 'Delete This Overlap?',
361
+ 'mostdata': 'There are at most 16 data !'
362
+ },
363
+ 'pattern': {
364
+ 'property': 'Property',
365
+ 'desc': 'Description',
366
+ 'offset': 'Offset',
367
+ 'cycle': 'Cycle',
368
+ 'operation': 'Operation',
369
+ 'deletetip': 'Delete This Pattern?',
370
+ 'firstphase': 'Please create phase first !',
371
+ 'mostdata': 'There are at most 32 data !',
372
+ 'ring': 'Ring',
373
+ 'modeOption1': 'Other',
374
+ 'modeOption2': 'None',
375
+ 'modeOption3': 'Min Call',
376
+ 'modeOption4': 'Max Call',
377
+ 'modeOption5': 'Pedestrian Call',
378
+ 'modeOption6': 'Max Call And Pedestrian Call',
379
+ 'modeOption7': 'Omit Call',
380
+ 'coordphaseOption1': 'Coordination Phase',
381
+ 'coordphaseOption2': 'Key Phase',
382
+ 'coordphaseOption4': 'Fixed Phase',
383
+ 'forbiddenstage': 'Forbidden Stage',
384
+ 'screenstage': 'Screen Stage',
385
+ 'coordinatestage': 'Coordinate Stage ',
386
+ 'delaystart': 'Delay Start ',
387
+ 'advanceend': 'Advance End',
388
+ 'stageConfig': 'Stage Config',
389
+ 'parameters': 'Parameters',
390
+ 'overLap': 'Over Lap',
391
+ 'plan': 'Plan',
392
+ 'ringConfig': 'Ring Config',
393
+ 'stage': 'Stage',
394
+ 'phase': 'Phase',
395
+ 'agentidError': 'Failed to get agentid!',
396
+ 'splitCheckMsg': 'The green letter ratio must be greater than the phase transition time or the pedestrian crossing + pedestrian transition time!',
397
+ 'pattern': 'Pattern'
398
+ },
399
+ 'plan': {
400
+ 'tipcontext': 'Please input your plan_name',
401
+ 'editcontext': 'Please edit plan name',
402
+ 'plannamerequired': 'Plan name is required!',
403
+ 'plannamerepeated': 'Plan name cannot be repeated!',
404
+ 'mostplandata': 'There are at most 16 data !!',
405
+ 'tip': 'Tips',
406
+ 'ok': 'OK',
407
+ 'cancel': 'Cancel',
408
+ 'desc': 'Description',
409
+ 'time': 'Time',
410
+ 'cycle': 'Cycle',
411
+ 'pattern': 'Pattern',
412
+ 'operation': 'Operation',
413
+ 'deletetip': 'Delete This Plan?',
414
+ 'tabtip': 'Delete This Tab?',
415
+ 'mostdata': 'There are at most 48 data !',
416
+ 'editname': 'Edit name',
417
+ 'controltype': 'Control Type',
418
+ 'ControlOption1': 'Yellow Clear',
419
+ 'ControlOption2': 'Red Control',
420
+ 'ControlOption3': 'Dark Control',
421
+ 'ControlOption4': 'Step Control',
422
+ 'ControlOption5': 'Fixed_Cycle Control',
423
+ 'ControlOption6': 'Free Control',
424
+ 'ControlOption9': 'Self-Adaption',
425
+ 'ControlOption10': 'Nocable Control',
426
+ 'ControlOption12': 'Pedestrian Crossing Control',
427
+ 'ControlOption19': 'Inductive Pedestrian Crossing Control',
428
+ 'plan': 'plan'
429
+ },
430
+ 'date': {
431
+ 'desc': 'Description',
432
+ 'month': 'Month',
433
+ 'day': 'Day',
434
+ 'date': 'Date',
435
+ 'plan': 'Plan',
436
+ 'operation': 'Operation',
437
+ 'deletetip': 'Delete This Date?',
438
+ 'mostdata': 'There are at most 40 data !'
439
+ },
440
+ 'channel': {
441
+ 'desc': 'Description',
442
+ 'controlsource': 'ControlSource',
443
+ 'controlType': 'ControlType',
444
+ 'voltthresh': 'Voltthresh',
445
+ 'pacthresh': 'Pacthresh',
446
+ 'peakhthresh': 'Peakhthresh',
447
+ 'peaklthresh': 'Peaklthresh',
448
+ 'operation': 'Operation',
449
+ 'other': 'other',
450
+ 'phaseVehicle': 'phaseVehicle',
451
+ 'phasePedestrian': 'phasePedestrian',
452
+ 'overlap': 'overlap',
453
+ 'deletetip': 'Delete This Channel ?',
454
+ 'deleteAlltip': 'Delete All Channel ?',
455
+ 'mostdata': 'There are at most 40 data !',
456
+ 'firstoverlapl': 'Please create overlap first !'
457
+ },
458
+ 'detector': {
459
+ 'desc': 'Description',
460
+ 'type': 'Type',
461
+ 'typeOptionundefined': '',
462
+ 'typeOption': 'typeOption',
463
+ 'typeOption0': 'Coil',
464
+ 'typeOption1': 'Smart junction terminal',
465
+ 'callPhase': 'CallPhase',
466
+ 'noactivity': 'NoActivity(min)',
467
+ 'maxpresence': 'MaxPresence(min)',
468
+ 'erraticCounts': 'ErraticCounts(Car/minute)',
469
+ 'failtime': 'FailTime(second)',
470
+ 'enable': 'Enable',
471
+ 'mode': 'Mode',
472
+ 'presenttime': 'Presenttime(second)',
473
+ 'sense': 'Sense',
474
+ 'sampletime': 'Sampletime(μs)',
475
+ 'inthresh': 'Inthresh',
476
+ 'outthresh': 'Outthresh',
477
+ 'infilter': 'Infilter',
478
+ 'outfilter': 'Outfilter ',
479
+ 'saturationflow': 'SaturationFlow',
480
+ 'operation': 'Operation',
481
+ 'deletetip': 'Delete This Detector?',
482
+ 'deleteAlltip': 'Delete All Detector?',
483
+ 'mostdata': 'There are at most 64 data !',
484
+ 'mostclonedata': 'There are at most 72 data !'
485
+ },
486
+ 'channellock': {
487
+ 'deleteAlltip': 'Delete All channellock',
488
+ 'deleteOnetip': 'Are you sure you want to delete this channel lock?',
489
+ 'starttime': 'Start Time',
490
+ 'endtime': 'End Time',
491
+ 'transitiongreenflashtime': 'Green Flashing Time',
492
+ 'transitionyellowtime': 'Yellow Time',
493
+ 'channelstats': 'Channel Status',
494
+ 'lockinperiod': 'Lock In Period',
495
+ 'channel': 'Channel',
496
+ 'channelinfo': 'Channel Info',
497
+ 'status': 'Status',
498
+ 'status1': 'Default',
499
+ 'status2': 'Ded Light',
500
+ 'status3': 'Yellow Light',
501
+ 'status4': 'Green Light',
502
+ 'status5': 'Green Flash',
503
+ 'status6': 'Lights Off',
504
+ 'status7': 'Red Flash',
505
+ 'maxlength': 'There are at most 24 data !'
506
+ },
507
+ 'channelControl': {
508
+ 'recoverysuccess': 'Recovery Success!',
509
+ 'recoveryfailed': 'Recovery Failed!',
510
+ 'testsuccess': 'Test Success!',
511
+ 'testfailed': 'Test Failed!',
512
+ 'channel': 'Channel',
513
+ 'redresidualvoltage': 'Red Residual Voltage',
514
+ 'redoutputvoltage': 'Red Output Voltage',
515
+ 'redoffresidualpower': 'Red Off Residual Power',
516
+ 'redonoutputpower': 'Red On Output Power',
517
+ 'yellowresidualvoltage': 'Yellow Residual Voltage',
518
+ 'yellowoutputvoltage': 'Yellow Output Voltage',
519
+ 'yellowoffresidualpower': 'Yellow Off Residual Power',
520
+ 'yellowonoutputpower': 'Yellow On Output Power',
521
+ 'greenresidualvoltage': 'Green Residual Voltage',
522
+ 'greenoutputvoltage': 'Green Output Voltage',
523
+ 'greenoffresidualpower': 'Green Off Residual Power',
524
+ 'greenonoutputpower': 'Green On Output Power',
525
+ 'inputvoltage': 'Input Voltage',
526
+ 'implement': 'Implement',
527
+ 'implementsuccess': 'Implement success!',
528
+ 'noClickedLamp': 'No channel light terminal selected!'
529
+ },
530
+ 'pedestrianDetector': {
531
+ 'desc': 'Description ',
532
+ 'callPhase': 'Call Phase',
533
+ 'noactivity': 'Noactivity(min)',
534
+ 'maxpresence': 'Maxpresence(min)',
535
+ 'erraticCounts': 'Erratic Counts(one/min)',
536
+ 'operation': 'Operation',
537
+ 'deletetip': 'Delete This Detector',
538
+ 'mostdata': 'There are at most 8 data !',
539
+ 'type': 'Detector Type',
540
+ 'typeOptionundefined': '',
541
+ 'typeOption': 'typeOption',
542
+ 'typeOption0': 'Coil',
543
+ 'typeOption1': 'Radar',
544
+ 'typeOption2': 'Video',
545
+ 'region': 'Detector Area',
546
+ 'regionOption': 'regionOption',
547
+ 'regionOptionundefined': '',
548
+ 'regionOption0': 'Default',
549
+ 'regionOption1': 'Waiting Area',
550
+ 'regionOption2': 'Cross Street Area'
551
+ },
552
+ 'deviceinfo': {
553
+ 'deviceinfo': 'Device Info:',
554
+ 'addresscode': 'Adress Code:',
555
+ 'areaid': 'Region ID:',
556
+ 'devid': 'Intersection ID:',
557
+ 'devname': 'Intersection Name',
558
+ 'selflearning': 'Selflearning:',
559
+ 'deviceparam': 'Device Parameters:',
560
+ 'startyellowflashtime': 'Start Yellow Flash Time:',
561
+ 'startredtime': 'Start Red Time:',
562
+ 'greenwavetransitionperiod': 'Transition Cycle:',
563
+ 'ip1': 'IP1',
564
+ 'ip': 'IP: ',
565
+ 'subnetmask': 'Subnet Mask:',
566
+ 'gateway': 'Gateway:',
567
+ 'ip2': 'IP2',
568
+ 'centercommunicationip': 'Center Communication IP',
569
+ 'port': 'Port:',
570
+ 'cascade': 'Cascade:',
571
+ 'lampcontrolpanel': 'Number Of Light Control Panels:',
572
+ 'boardsformainengine': 'Number Of Inspection Boards:',
573
+ 'ioboards': 'Number Of IO Boards:',
574
+ 'slavecascadeoffset': 'Slave Cascade Offset:',
575
+ 'deviceinfostyle': 'margin-left: 100px; top: 10px;',
576
+ 'deviceparamstyle': 'margin-left: 170px; top: 10px;',
577
+ 'deviceselflearningstyle': 'margin-left: 100px; top: 15px;',
578
+ 'faultdetect': 'Fault Detect',
579
+ 'closegreenandredon': 'Close Green And Red On: ',
580
+ 'closenoredon': 'Close No Red On: ',
581
+ 'detectgapgreenandredon': 'Detect Gap Green And Red On(0.1s): ',
582
+ 'detectgapnoredon': 'Detect Gap No Red On(0.1s): ',
583
+ 'detectgapgreenconflict': 'Detect Gap Green Conflict(0.1s): ',
584
+ 'startOrderParams': 'Start Order Params ',
585
+ 'netcardInfo': 'Network Info: ',
586
+ 'stepType': 'Step Type',
587
+ 'step0': 'stage',
588
+ 'step1': 'step',
589
+ 'seeCutEffect': 'See Cut Detail',
590
+ 'siteIdLimit': 'SiteId must be whithin 0 ~ 99999',
591
+ 'siteIdCutEffect': 'SiteId Cut Detail',
592
+ 'cutData': 'Cut Data',
593
+ 'cutEffect': 'Cut Detail',
594
+ 'longgerThan20': 'Data length is longger than 20 !',
595
+ 'timezonehour': 'Time zone / Hour',
596
+ 'timezoneminute': 'Time zone / Minute'
597
+ },
598
+ 'singleoptim': {
599
+ 'deletetip': 'Sure to delete ?',
600
+ 'selfControlParams': 'Self Control Params',
601
+ 'lossTimeOfGreenBeginning': 'LossTime Of Green Beginning(second)',
602
+ 'lossTimeOfYellowEnding': 'LossTime Of Yellow Ending(second)',
603
+ 'saturationFlow': 'Saturation Flow(vehidle/hour)',
604
+ 'cycleAdjustmentFactor': 'Cycle Adjustment Factor',
605
+ 'selfLearningModeOnOrOff': 'Self Learning Mode',
606
+ 'staticWeight': 'Static Weight',
607
+ 'phaseStaticFactor': 'Phase Static Factor',
608
+ 'createPatternFirst': 'Please create pattern first',
609
+ 'gratterThanHundred': 'The sum must less than hundred '
610
+ },
611
+ 'controlpanel': {
612
+ 'controlmode': 'Control Mode',
613
+ 'duration': 'Green Duration',
614
+ 'transitiongreenflashtime': 'Green Flash Time',
615
+ 'transitionyellowtime': 'Yellow Time',
616
+ 'transitionredtime': 'All Red Time',
617
+ 'mingreen': 'Min Green',
618
+ 'channel': 'Channel',
619
+ 'channeldesc': 'Channel Description',
620
+ 'status': 'State',
621
+ 'step': 'Step',
622
+ 'allred': 'All Red',
623
+ 'yellowflash': 'Yellow Flash',
624
+ 'defaultsettings': 'Default Settings',
625
+ 'allclear': 'All Clear',
626
+ 'clear': 'Clear',
627
+ 'execute': 'Lock current direction',
628
+ 'resetstatus': 'Reset State',
629
+ 'manualbtn': 'manualbtn',
630
+ 'manualbtn1': '1',
631
+ 'manualbtn2': '2',
632
+ 'manualbtn3': '3',
633
+ 'manualbtn4': '4',
634
+ 'manualbtn5': '5',
635
+ 'manualbtn6': '6',
636
+ 'manualbtn7': '7',
637
+ 'manualbtn8': '8',
638
+ 'channelstatus': 'channelstatus',
639
+ 'channelstatus1': 'Red',
640
+ 'channelstatus3': 'Green',
641
+ 'channelstatus4': 'Lights Out',
642
+ 'getdefaultmanualpaneltips': 'Generate default parameters successfully, please check!',
643
+ 'phaseanddetectornotnull': 'Phase and channel cannot be empty!',
644
+ 'iscleardata': 'Clear data?',
645
+ 'tips': 'Tips',
646
+ 'cancelclear': 'Emptying cancelled',
647
+ 'changered': 'Do you want to initialize all States to red?',
648
+ 'cancelinit': 'Uninitialized',
649
+ 'manualpanelundefined': '',
650
+ 'manualpanel0': 'Default',
651
+ 'manualpanel1': 'Custom',
652
+ 'manualcontrolbackground': 'manualcontrolbackgrounden',
653
+ 'lockconfigempty': 'Channel locK info cannot be empty!'
654
+ },
655
+ 'system': {
656
+ 'information': 'Information',
657
+ 'remotecontrol': 'Remote Control',
658
+ 'channeldetection': 'Channel Detection',
659
+ 'signalversion': 'Signal Version',
660
+ 'softwareversion': 'Software Version',
661
+ 'hardwareversion': 'Hardware Version',
662
+ 'currentsystemtime': 'System Time',
663
+ 'time': 'Time',
664
+ 'featureparameterversion': 'Parameter Version',
665
+ 'version': 'Version',
666
+ 'identificationcode': 'Identification Code',
667
+ 'equipmentidentificationcode': 'Device Identification Code',
668
+ 'remotedebugging': 'Remote Debugging',
669
+ 'openornot': 'Open',
670
+ 'automaticshutdown': 'Auto Shutdown',
671
+ 'systemupdate': 'System Update',
672
+ 'dataupdate': 'Data Update',
673
+ 'reset': 'Set',
674
+ 'sure': 'Sure',
675
+ 'oper': 'Operation',
676
+ 'selectfile': 'Select File',
677
+ 'noselectfile': 'No update file selected!',
678
+ 'updateUSB': 'Update USB',
679
+ 'recovery': 'Recovery',
680
+ 'lampcontrolpanel': 'Lamp Control Panel',
681
+ 'featureparameterversionsetting': 'Parameter Version Setting',
682
+ 'deviceidentificationcodesetting': 'Device Identification Code Setting',
683
+ 'baudrate': 'Baudrate',
684
+ 'databit': 'Data Bits',
685
+ 'stopbit': 'Stop Bit',
686
+ 'paritybit': 'Parity Bit',
687
+ 'signalidentificationcode': 'Signal Identification Code',
688
+ 'modifysystemtime': 'Modify System Time',
689
+ 'selectdate': 'Select Date',
690
+ 'anytimepoint': 'Any Time Point',
691
+ 'tips': 'Tips',
692
+ 'update': 'Update',
693
+ 'duration1': '5min',
694
+ 'duration2': '60min',
695
+ 'duration3': 'Unlimited',
696
+ 'remote1': 'Restart',
697
+ 'remote2': 'Authorize',
698
+ 'remote3': 'Custom',
699
+ 'test': 'Test',
700
+ 'realTimeChannel': 'Real time channel',
701
+ 'isReboot': 'The system file is downloaded successfully. The update takes effect after restarting. Do you want to restart the device?',
702
+ 'rebootSuccess': 'Restart successfully!',
703
+ 'rebootFaile': 'Restart failed!',
704
+ 'resetSuccess': 'Set successfully!',
705
+ 'filesuccess': 'Upgrade file transfer complete!',
706
+ 'filefailed': 'Upgrade interface call failed!',
707
+ 'updateovertime': 'Update file overtime!'
708
+ },
709
+ 'optimize': {
710
+ 'strategy': 'Optimization strategy',
711
+ 'learn': 'Self learning',
712
+ 'saturation': 'Statistical parameters of intersection(The sampling period is 5 minutes):',
713
+ 'phase': 'Phase',
714
+ 'flow': 'Saturated Flow(veh.)',
715
+ 'queue': 'Saturated Queue length(veh.)',
716
+ 'speed': 'Max Speed(km/h)',
717
+ 'Occupancy': 'Saturated Occupancy rate',
718
+ 'mathematical': 'mathematical model'
719
+ },
720
+ 'history': {
721
+ 'description': 'Description',
722
+ 'user': 'User',
723
+ 'updatetime': 'Update Time',
724
+ 'operation': 'Operation',
725
+ 'deletetip': 'Delete This History?'
726
+ },
727
+ 'fault': {
728
+ 'refresh': 'Refresh',
729
+ 'uploadfault': 'Upload Fault',
730
+ 'export': 'Export',
731
+ 'faultofcurrentdetailedlightgroup': 'Detail Faults',
732
+ 'faultofcurrentdetailedvehicleinspectionversion': 'Detail Faults',
733
+ 'tab': 'tab',
734
+ 'tab0': 'Overview',
735
+ 'tab1': 'Main Control Board',
736
+ 'tab2': 'Light Control Panel',
737
+ 'tab3': 'Vehicle Inspection Board',
738
+ 'tab4': 'I/O Board',
739
+ 'tab5': 'Fault board',
740
+ 'tab6': 'Characteristic params',
741
+ 'maintype': 'Maintype',
742
+ 'subtype': 'Subtype',
743
+ 'occurtime': 'Occurtime',
744
+ 'recoverytime': 'Recoverytime',
745
+ 'grade': 'Grade',
746
+ 'value': 'value'
747
+ },
748
+ 'statistics': {
749
+ 'username': 'User_name:',
750
+ 'pass': 'Password:',
751
+ 'usernameplaceholder': 'Enter one user name',
752
+ 'passplaceholder': 'Please input a password',
753
+ 'getdevicedata': 'Upload flow',
754
+ 'detector': 'Detector',
755
+ 'time': 'Time',
756
+ 'flow': 'Flow',
757
+ 'occupyrate': 'Occupancy',
758
+ 'occupytime': 'Possession of time',
759
+ 'userpassnotnull': 'User name or password cannot be empty!',
760
+ 'historicalisempty': 'Get historical traffic data is empty!'
761
+ },
762
+ 'dailyrecord': {
763
+ 'data': 'Data',
764
+ 'infotype': 'Infotype',
765
+ 'subject': 'Subject',
766
+ 'object': 'Object',
767
+ 'operationresults': 'Operation Result',
768
+ 'uploaddailyrecord': 'Upload Dailyrecord',
769
+ 'success': 'Success',
770
+ 'fault': 'Fault',
771
+ 'platform': 'Platform',
772
+ 'configurationsoftware': 'Configuration Software',
773
+ 'getmanualpanel': 'Getmanual Panel',
774
+ 'signal': 'Signal Machine',
775
+ 'localpanelcontrol': 'Local Panel Control',
776
+ 'systemmanualcontrol': 'System Manual Control',
777
+ 'systemdownloadcharacteristic': 'System Download Characteristic Parameters',
778
+ 'systemdownload': 'System Download',
779
+ 'systemuploadparameters': 'System Upload Parameters',
780
+ 'systemrestartsignal': 'System Restart Signal',
781
+ 'systemdownloadplan': 'System Download Plan',
782
+ 'systemuploadplan': 'System Upload Plan',
783
+ 'systemdownloadschedulingplan': 'System Download Scheduling Plan',
784
+ 'systemuploadschedulingplan': 'System Upload Scheduling Plan',
785
+ 'systemdownloaddate': 'System Download Date',
786
+ 'systemuploaddate': 'System Upload Date',
787
+ 'systemchanneldetection': 'System Channel Detection',
788
+ 'systemsolutionintervention': 'System Solution Intervention',
789
+ 'systemsetuptime': 'System Setup Time'
790
+ },
791
+ 'control': {
792
+ 'mode': 'Mode:',
793
+ 'control': 'Control:',
794
+ 'cycle': 'Cycle:',
795
+ 'offset': 'Offset:',
796
+ 'curTime': 'CurTime:',
797
+ 'syncTime': 'SyncTime:',
798
+ 'score': 'Score:',
799
+ 'level': 'Level:',
800
+ 'patternid': 'Pattern Id:',
801
+ 'name': 'Name:',
802
+ 'current_phase': 'Current_phase:',
803
+ 'phase': 'Phase',
804
+ 'ring': 'Ring',
805
+ 'control_style': 'Control',
806
+ 'mode_style': 'Mode',
807
+ 'pattern': 'Pattern',
808
+ 'phase_countdown': 'Phase_countdown:',
809
+ 'split': 'Split:',
810
+ 'countdown': 'Countdown:',
811
+ 'id': 'Id:',
812
+ 'type': 'Type:',
813
+ 'light_countdown': 'Light_countdown:',
814
+ 'sequence': 'Sequence:',
815
+ 'num': 'Num:',
816
+ 'value': 'Parameters',
817
+ 'currentvolume': 'CurrentVolume',
818
+ 'time': 'Time'
819
+ },
820
+ 'button': {
821
+ 'OK': 'OK',
822
+ 'Cancel': 'Cancel',
823
+ 'Back': 'Back',
824
+ 'ignore': 'Ignore',
825
+ 'confirm': 'Confirm',
826
+ 'save': 'Save',
827
+ 'reset': 'Reset'
828
+ },
829
+ 'common': {
830
+ 'confirm': 'Confirm',
831
+ 'query': 'Query',
832
+ 'cancel': 'Cancel',
833
+ 'add': 'Add',
834
+ 'delete': 'Delete',
835
+ 'clone': 'Clone',
836
+ 'deleteall': 'DeleteAll',
837
+ 'update': 'Update',
838
+ 'search': 'Search',
839
+ 'alarm': 'Alarm',
840
+ 'none': 'none',
841
+ 'weak': 'weak',
842
+ 'normal': 'normal',
843
+ 'strong': 'strong',
844
+ 'name': 'Name',
845
+ 'path': 'Path',
846
+ 'description': 'Description',
847
+ 'operations': 'Operations',
848
+ 'addfailed': 'Add Success!',
849
+ 'addsucess': 'Add Failed!',
850
+ 'addcancel': 'Add Canceled!',
851
+ 'deletefailed': 'Delete Failed!',
852
+ 'deletesucess': 'Delete Success!',
853
+ 'deletecancel': 'Delete Canceled!',
854
+ 'updatefailed': 'Update Failed!',
855
+ 'updatesucess': 'Update Success!',
856
+ 'updatecancel': 'Update Canceled!',
857
+ 'relatefailed': 'Relate Failed!',
858
+ 'relatesucess': 'Relate Success!',
859
+ 'relatecancel': 'Relate Canceled!',
860
+ 'upload': 'Upload',
861
+ 'select': 'Select',
862
+ 'input': 'Please enter a word',
863
+ 'entercontent': 'Please enter the content',
864
+ 'commit': 'Commit',
865
+ 'commitandexecute': 'CommitAndExecute',
866
+ 'uploadsuccess': 'Upload Success!',
867
+ 'download': 'Download Success!',
868
+ 'downloaderror': 'Signal Check Error!',
869
+ 'downloadandrun': 'Submit and run successfully!',
870
+ 'editagentid': 'Edit AgentID',
871
+ 'querysucess': 'Query Success!',
872
+ 'setup': 'setup',
873
+ 'tipsmodaltitle': 'Tips',
874
+ 'deviceoffline': 'Device not online!',
875
+ 'operationsuccess': 'Operation Success !',
876
+ 'savesucess': 'Save Success!'
877
+ },
878
+ 'login': {
879
+ 'title': 'Openatc-Configer',
880
+ 'login': 'Sign in',
881
+ 'authorize': 'Authorize',
882
+ 'close': 'Close',
883
+ 'dialogtitle': 'Available authorizations',
884
+ 'username': 'User Name',
885
+ 'password': 'Password',
886
+ 'networkparam': 'Network parameters',
887
+ 'port': 'Port',
888
+ 'protocol': 'Protocol',
889
+ 'restoredefaultparameters': 'Restore default parameters',
890
+ 'enterip': 'Please enter IP',
891
+ 'enterlegalip': 'Please enter legal IP!',
892
+ 'enterpport': 'Please enter the port',
893
+ 'entercorrectport': 'Please enter the correct port!',
894
+ 'usernamenotnull': 'User name cannot be empty!',
895
+ 'passnotnull': 'Password cannot be empty!',
896
+ 'selectagreement': 'Please select protocol',
897
+ 'enterdeviceid': 'Please enter device ID',
898
+ 'loginerror': 'Login error!'
899
+ },
900
+ 'errorTip': {
901
+ 'phaseNotZero': 'Must contain at least phase !',
902
+ 'phaseExceed': 'One ring can not exceed 16 phases at most!',
903
+ 'planNotZero': 'Must contain at least plan !',
904
+ 'patternNotZero': 'Must contain at least pattern',
905
+ 'dataNotZero': 'Must contain at least data!',
906
+ 'dateIsAll': 'This date must be full year !',
907
+ 'planDate': 'The time in the plan is unreasonable !',
908
+ 'patternRing': 'The ring time of the same pattern must be equal !',
909
+ 'dataPlan': 'The plan in the date can not be empty !',
910
+ 'planPattern': 'The pattern in the plan can not be empty !',
911
+ 'overlapRules': 'The parent phase in the overlap cannot be empty!',
912
+ 'manualpanel': 'The manualpanel cannot be empty!',
913
+ 'momthIsNull': 'Month cannot be empty in date!',
914
+ 'devicenotonline': 'Device not online!',
915
+ 'abnormalcommunication': 'Abnormal Communication!',
916
+ 'saveParamFailed': 'Signal save parameter failed!',
917
+ 'ringErrorTip': 'Ring configuration should be started from ring 1, and skip ring configuration is not allowed!',
918
+ 'deviceinformationnotnull': 'Address code in device information cannot be empty!',
919
+ 'noSchemeUpload': 'There is no scheme to upload!',
920
+ 'readSchemeSucc': 'Reading scheme succeeded!',
921
+ 'singleDownloadNotZero': 'Download data cannot be empty!'
922
+ },
923
+ 'importTemp': {
924
+ 'editTemplateData': 'Edit Template Data',
925
+ 'template': 'Template',
926
+ 'crossShape': 'Cross Shape',
927
+ 'name': 'Name',
928
+ 'phaseCount': 'Phase Count',
929
+ 'phase': 'Phase',
930
+ 'greenClear': 'GreenClear',
931
+ 'yellow': 'Yellow',
932
+ 'redClear': 'RedClear',
933
+ 'pattern': 'Pattern',
934
+ 'count': 'Count',
935
+ 'split': 'Split',
936
+ 'plan': 'Plan',
937
+ 'date': 'Date',
938
+ 'annual': 'Annual',
939
+ 'crossShapes': {
940
+ 'crossroads': 'Crossroads',
941
+ 'tjunction': 'T-junction',
942
+ 'roundabout': 'Roundabout',
943
+ 'rampintersection': 'RampIntersection',
944
+ 'pedestriancrossing': 'PedestrianCrossing',
945
+ 'otherIntersections': 'OtherIntersections',
946
+ 'customIntersection': 'CustomIntersection'
947
+ },
948
+ 'crossIntersection': {
949
+ 'eastward': 'Eastward',
950
+ 'westward': 'Westward',
951
+ 'southward': 'Southward',
952
+ 'northward': 'Northward',
953
+ 'eastwestward': 'Eastwestdirection',
954
+ 'southnorthward': 'Northsouthdirection'
955
+ },
956
+ 'crossPhase': {
957
+ 'onePhase': 'OnePhase',
958
+ 'twoPhase': 'TwoPhase',
959
+ 'threePhase': 'ThreePhase',
960
+ 'fourPhase': 'FourPhase',
961
+ 'fivePhase': 'FivePhase',
962
+ 'sixPhase': 'SixPhase',
963
+ 'sevenPhase': 'SevenPhase',
964
+ 'eightPhase': 'EightPhase',
965
+ 'ninePhase': 'NinePhase',
966
+ 'tenPhase': 'TenPhase',
967
+ 'elevenPhase': 'ElevenPhase',
968
+ 'twelvePhase': 'TwelvePhase',
969
+ 'thirteenPhase': 'ThirteenPhase',
970
+ 'fourteenPhase': 'FourteenPhase',
971
+ 'fifteenPhase': 'FifteenPhase',
972
+ 'sixteenPhase': 'SixteenPhase'
973
+ }
974
+ },
975
+ 'about': {
976
+ 'version': 'Version',
977
+ 'copyright': 'Copyright',
978
+ 'company': 'KEDACOM',
979
+ 'packedtime': 'Packed time',
980
+ 'opensourceagreement': 'Opensource Agreement'
981
+ },
982
+ 'message': {
983
+ 'errorcode': 'Error code',
984
+ '10000': 'Parameter is empty',
985
+ '10001': 'Parameter length error',
986
+ '1002': 'Error',
987
+ '10002': 'Record cannot be empty',
988
+ '20003': 'id cannot be empty and cannot be 0',
989
+ '20004': 'No parameter record',
990
+ '20005': 'No device id found',
991
+ '20006': 'Data stream close failed!',
992
+ '20007': 'Json Type conversion failed!',
993
+ '20008': 'File read failed!',
994
+ '20009': 'File does not exist!',
995
+ '20010': 'I/O close mistake!',
996
+ // 全局异常错误
997
+ '0001': 'Null pointer',
998
+ '0002': 'Wrong request method',
999
+ '0003': 'Incorrect input parameter type',
1000
+ '0004': 'Incomplete input parameters',
1001
+ '0005': 'Input parameters do not meet constraints',
1002
+ '0006': 'system error',
1003
+ // 用户管理错误
1004
+ '3001': 'Username does not exist',
1005
+ '3002': 'Authentication failed',
1006
+ '3003': 'Duplicate username',
1007
+ '3004': 'The old and new passwords cannot be the same',
1008
+ '3005': 'password can not be blank',
1009
+ '3006': 'The original password is wrong',
1010
+ '3007': 'Login user does not exist',
1011
+ '3008': 'No access',
1012
+ '3009': 'wrong password',
1013
+ '3010': 'Super user role cannot be modified',
1014
+ '3011': 'username or password is wrong',
1015
+ '3013': 'Account is disabled',
1016
+ '3014': 'token has expired',
1017
+ '3015': 'token failure',
1018
+ '3016': 'User organization is empty',
1019
+ '3017': 'Organization does not exist',
1020
+ '3018': 'Access ip is inconsistent with user ip, login is forbidden',
1021
+ // 消息通讯错误
1022
+ '4001': 'Error Request',
1023
+ '4002': 'Error Response',
1024
+ '4003': 'Device Not Online',
1025
+ '4004': 'Repeat ID',
1026
+ '4005': 'Device Empty Response',
1027
+ '4006': 'Device Response Operation Is None',
1028
+ // 错误子类型
1029
+ // error-request
1030
+ '4100': 'agentid is null!',
1031
+ '4101': 'operation is null!',
1032
+ '4102': 'infotype is null!',
1033
+ '4103': 'infodata is null!',
1034
+ '4104': 'JSON format is incorrect!',
1035
+ '4105': 'agentid not exist!',
1036
+ '4106': 'Unknown operation type!',
1037
+ '4107': 'Unknown infotype!',
1038
+ '4108': 'protocol is null!',
1039
+ '4109': 'Receive Time Out or Receive Incorrect Data!',
1040
+ '4110': 'Last sendData is not finished!',
1041
+ '4111': 'Port is null!',
1042
+ '4112': 'Cache is null!',
1043
+ '4113': 'Keyints can not be null',
1044
+ '4114': 'Keyints can not be the first two when strategy is up!',
1045
+ '4115': 'Keyints can not be the last two when strategy is down!',
1046
+ '4116': 'No less than three intersections!',
1047
+ // error-response
1048
+ '4200': 'response is null!',
1049
+ '4201': 'response format error!',
1050
+ '4203': 'Unknown request instruction!',
1051
+ '4204': 'Comm Send Data error!',
1052
+ '4205': 'Udp Receive InfoType error by Send InfoType',
1053
+ '4206': 'Can not find UdpCommunication for Receive Msg',
1054
+ '4207': 'Error response from feature download',
1055
+ // device not online
1056
+ '4301': 'Device not online',
1057
+ // 协调路线错误
1058
+ '5001': 'Repeat Route Name',
1059
+ // 勤务路线错误
1060
+ '6001': 'Repeat Route Name',
1061
+ '6002': 'The route is on execution',
1062
+ '6003': 'VipRoute Cannot cancel! Control is changed.',
1063
+ // 流量错误
1064
+ '7001': 'ftp clent connect fail',
1065
+ // 组织机构错误
1066
+ '11001': 'Repeat Name!',
1067
+ // 路口管理错误
1068
+ '8001': 'device not found By Agentid!',
1069
+ '8002': 'device is found By CoordinateRoute',
1070
+ '8003': 'device is found By VipRoute',
1071
+ '8004': 'Agentid is duplicated',
1072
+ // 错误类型子类型,返回码第二层
1073
+ '8101': 'Device can not delete!',
1074
+ // 瓶颈控制错误
1075
+ '9001': 'Overflow control failed!',
1076
+ '9002': 'Overflow recovery failed!',
1077
+ '9003': 'Overflow is executing, can not be deleted!',
1078
+ '9004': 'Overflow pattern name is already exist!',
1079
+ '9005': 'Overflow pattern is empty!',
1080
+ '9006': 'No Overflow pattern is in execution!'
1081
+ },
1082
+ 'faultrecord': {
1083
+ 'faultDetail': 'Fault Detail',
1084
+ 'faultMaintype': 'Main Type',
1085
+ 'faultSubtype': 'Sub Type',
1086
+ 'faultOccurtime': 'Occur Time',
1087
+ 'boardCardType': 'BoardCard Type',
1088
+ 'faultGrade': 'Grade',
1089
+ 'faultValue': 'Value',
1090
+ 'asc': 'Asc',
1091
+ 'patterncalc': 'Pattern Calc',
1092
+ 'monitor': 'Monitor',
1093
+ 'statusfault': 'Status Fault',
1094
+ 'untreated': 'Untreated',
1095
+ 'ignored': 'Ignored',
1096
+ 'confirmed': 'Confirmed',
1097
+ 'powerup': 'Output Power Is Up',
1098
+ 'powerdown': 'Output Power Is Down',
1099
+ 'powerno': 'Output Power Is Zero',
1100
+ 'powerfault': 'Off Output Power Is High',
1101
+ 'general': 'General failure',
1102
+ 'degradation': 'Degradation failure',
1103
+ 'serious': 'Serious failure',
1104
+ 'maincontrolboard': 'Main Control Board',
1105
+ 'lightcontrolversion': 'Light Control Version',
1106
+ 'carinspectionboard': 'Car Inspection Board',
1107
+ 'eportingmodule': 'Eporting Module',
1108
+ 'roadname': 'Road Name',
1109
+ 'eventtype': 'Event Type',
1110
+ 'neglect': 'Neglect',
1111
+ 'faultlist': 'Fault Center',
1112
+ 'confirm': 'Confirm',
1113
+ 'realtimealert': 'Real Time Alert',
1114
+ 'detaileddescription': 'Detailed Description',
1115
+ 'ioboard': 'I/O board',
1116
+ 'faultboard': 'Fault board',
1117
+ 'characteristicparams': 'Characteristic params',
1118
+ 'maincontrolboardfault': 'Main Control Board Fault',
1119
+ 'lightcontrolversionfault': 'Light Control Version Fault',
1120
+ 'carinspectionboardfault': 'Car Inspection Board Fault',
1121
+ 'ioboardfault': 'I/O board Fault',
1122
+ 'fixdetail': 'Fix Detail',
1123
+ 'deviceid': 'Device Id',
1124
+ 'faultid': 'Fault Id',
1125
+ 'boardcardtype': 'Board Card Type',
1126
+ 'faultbegintime': 'Fault Begin Time',
1127
+ 'faultendtime': 'Fault End Time',
1128
+ 'faulttype': 'Fault Type',
1129
+ 'faultchild': 'Fault Child',
1130
+ 'faultgrade': 'Fault Grade',
1131
+ 'operation': 'Operation',
1132
+ 'faultvaluedetail': 'Fault Value Detail',
1133
+ 'operator': 'Operator',
1134
+ 'operationTime': 'Operation Time',
1135
+ 'enumerate': 'Enumerate',
1136
+ 'realtimefault': 'Realtime Fault',
1137
+ 'historicalfault': 'Historical Fault',
1138
+ 'boardtype': 'Board type',
1139
+ 'mainfaulttype': 'Main fault type',
1140
+ 'confirmresults': 'Confirmation results',
1141
+ 'intersectionname': 'Intersection Name',
1142
+ 'faulttime': 'Time of failure',
1143
+ 'isdelfaultrecord': 'Delete this fault record?',
1144
+ 'channel': 'channel',
1145
+ 'detector': 'detector',
1146
+ 'port': 'port'
1147
+ },
1148
+ 'channelizationmap': {
1149
+ 'importpicture': 'Import Picture',
1150
+ 'importtip': 'The picture format is SVG, PNG and JPG, and the size is no more than 10MB',
1151
+ 'importsizeerror': 'Picture size exceeds 10MB, please re import!',
1152
+ 'importtypeerror': 'Picture format error, please import again!',
1153
+ 'importcrosspicture': 'Import intersection picture',
1154
+ 'againimport': 'Re import',
1155
+ 'motorway': 'Motorway',
1156
+ 'bicyclelane': 'Non motorized Lane',
1157
+ 'pedcrossing': 'Ped crossing',
1158
+ 'countdown': 'Countdown',
1159
+ 'detector': 'Detector',
1160
+ 'laneturn': 'Lane turn',
1161
+ 'straightahead': 'Straightahead',
1162
+ 'turnleft': 'Turnleft',
1163
+ 'turnright': 'Turnright',
1164
+ 'turnaround': 'Turnaround',
1165
+ 'position': 'Position',
1166
+ 'eastward': 'Eastward',
1167
+ 'westward': 'Westward',
1168
+ 'southward': 'Southward',
1169
+ 'northward': 'Northward',
1170
+ 'etped': 'East-Top',
1171
+ 'ebped': 'East-Bottom',
1172
+ 'wtped': 'West-Top',
1173
+ 'wbped': 'West-Bottom',
1174
+ 'slped': 'South-Left',
1175
+ 'srped': 'South-Right',
1176
+ 'nlped': 'North-Left',
1177
+ 'nrped': 'North-Right',
1178
+ 'xrped': 'X-/',
1179
+ 'xlped': 'X-\\',
1180
+ 'ewped': 'East-West',
1181
+ 'snped': 'South-North',
1182
+ 'choosedirerror': 'Select at least one lane to turn!',
1183
+ 'lanetype': 'Lane Type',
1184
+ 'vehiclemainroad': 'Vehicle Main Road',
1185
+ 'vehiclebranch': 'Vehicle Branch',
1186
+ 'nonmotorizedlane': 'Non Motorized',
1187
+ 'buslane': 'Bus Lane',
1188
+ 'BRTlane': 'BRT Lane',
1189
+ 'tramlane': 'Tram Lane',
1190
+ 'pedestriantype': 'Pedestrian Type',
1191
+ 'pedestrian': 'Pedestrian',
1192
+ 'secondcrossing': 'Second Crossing',
1193
+ 'xpedestrian': 'X Pedestrian',
1194
+ 'sectionpedestrian': 'Section Pedestrian',
1195
+ 'delete': 'Delete',
1196
+ 'clone': 'Clone',
1197
+ 'drawtips': 'Click add on the intersection map after selection',
1198
+ 'canclesetting': 'Cancel the channelization setting of the current intersection?',
1199
+ 'phaseassociated': 'Phase Associated',
1200
+ 'phase': 'phase',
1201
+ 'associatedphaseerror': 'Association failed. Lanes in the same direction cannot be associated with different phases!',
1202
+ 'overlapassociated': 'Overlap Associated',
1203
+ 'flowsaturation': 'Flow saturation',
1204
+ 'occupancysaturation': 'Occupancy saturation',
1205
+ 'detectortype': 'Detector Type',
1206
+ 'vehicledetector': 'Detector',
1207
+ 'pedestriandetector': 'Pedestrian Detector',
1208
+ 'detectorassociated': 'Detector Associated',
1209
+ 'laneassociated': 'Lane Associated',
1210
+ 'detectorthreshold': 'Detector Threshold',
1211
+ 'occupancythreshold': 'Greenlight Utilization Threshold',
1212
+ 'saturationthreshold': 'Flow Saturation Threshold',
1213
+ 'checkthreshold': 'The threshold value cannot be blank. Please fill in a positive integer within the range of 0-100!',
1214
+ 'pedestriancrossing': 'Pedestrian crossing',
1215
+ 'pedestriansecondarycrossing': 'Pedestrian secondary crossing',
1216
+ 'obliquepedestriancrossing': 'Oblique pedestrian crossing',
1217
+ 'sectionpedestriancrossing': 'Section pedestrian crossing',
1218
+ 'flipdisplay': 'Flip display',
1219
+ 'vehiclelane': 'Vehicle lane',
1220
+ 'sidewalk': 'Sidewalk',
1221
+ 'angle': 'Angle',
1222
+ 'basicinfo': 'Basic information',
1223
+ 'importfilesuccess': 'Import of JSON file succeeded!'
1224
+ }
1225
+ }
1226
+ }
1227
+
1228
+ export default en