2023-11-27 15:17:01 +08:00
|
|
|
import enLocale from 'element-ui/lib/locale/lang/en'
|
|
|
|
|
import en from './en'
|
2023-11-29 15:44:47 +08:00
|
|
|
import menu from './menu/en'
|
2023-11-27 15:17:01 +08:00
|
|
|
import param from './param/en'
|
2023-11-29 15:44:47 +08:00
|
|
|
import instruction from './instruction/en'
|
2023-11-29 16:09:29 +08:00
|
|
|
import task from './task/en'
|
2023-11-29 19:09:22 +08:00
|
|
|
import history from './history/en'
|
2023-11-30 10:46:21 +08:00
|
|
|
import device from './device/en'
|
|
|
|
|
import opc from './opc/en'
|
|
|
|
|
import protocol from './protocol/en'
|
|
|
|
|
import address from './address/en'
|
|
|
|
|
import storageCell from './storageCell/en'
|
|
|
|
|
import route from './route/en'
|
2023-11-30 10:54:39 +08:00
|
|
|
import auto from './auto/en'
|
2023-11-30 14:33:32 +08:00
|
|
|
import monitor from './monitor/en'
|
2023-11-30 15:07:13 +08:00
|
|
|
import timing from './timing/en'
|
2023-11-30 16:24:55 +08:00
|
|
|
import config from './config/en'
|
2023-11-30 14:08:17 +08:00
|
|
|
import customPolicy from './customPolicy/en'
|
2023-11-27 15:17:01 +08:00
|
|
|
|
|
|
|
|
export default {
|
2023-11-30 13:32:57 +08:00
|
|
|
...enLocale,
|
|
|
|
|
...en,
|
|
|
|
|
...menu,
|
|
|
|
|
...param,
|
|
|
|
|
...instruction,
|
|
|
|
|
...task,
|
|
|
|
|
...history,
|
|
|
|
|
...device,
|
|
|
|
|
...opc,
|
|
|
|
|
...protocol,
|
|
|
|
|
...address,
|
|
|
|
|
...storageCell,
|
|
|
|
|
...route,
|
2023-11-30 14:08:17 +08:00
|
|
|
...auto,
|
2023-12-04 10:55:51 +08:00
|
|
|
...customPolicy,
|
2023-11-30 16:24:55 +08:00
|
|
|
...monitor,
|
|
|
|
|
...timing,
|
|
|
|
|
...config
|
2023-11-30 13:32:57 +08:00
|
|
|
}
|
2023-11-30 16:24:55 +08:00
|
|
|
|