openatc-components 0.4.62 → 0.4.63

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