openatc-components 0.2.66 → 0.2.69

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