|
@@ -1,4 +1,35 @@
|
|
|
|
|
|
import { langMessageFactory } from './helper'
|
|
|
-const lang = langMessageFactory(import.meta.globEager('./zh/*.ts'))
|
|
|
-export default lang.zh
|
|
|
+import coord from "./zh/coord"
|
|
|
+import crop from "./zh/crop"
|
|
|
+import dataset from "./zh/dataset"
|
|
|
+import epoint from "./zh/epoint"
|
|
|
+import err from "./zh/err"
|
|
|
+import fire from "./zh/fire"
|
|
|
+import help from "./zh/help"
|
|
|
+import hotspot from "./zh/hotspot"
|
|
|
+import measure from "./zh/measure"
|
|
|
+import resStatus from "./zh/resStatus"
|
|
|
+import scene from "./zh/scene"
|
|
|
+import sys from "./zh/sys"
|
|
|
+import tool from "./zh/tool"
|
|
|
+import view from "./zh/view"
|
|
|
+// const lang = langMessageFactory(import.meta.globEager('./zh/*'))
|
|
|
+
|
|
|
+export default {
|
|
|
+ coord,
|
|
|
+ crop,
|
|
|
+ dataset,
|
|
|
+ epoint,
|
|
|
+ err,
|
|
|
+ fire,
|
|
|
+ help,
|
|
|
+ hotspot,
|
|
|
+ measure,
|
|
|
+ resStatus,
|
|
|
+ scene,
|
|
|
+ sys,
|
|
|
+ tool,
|
|
|
+ view,
|
|
|
+}
|
|
|
+
|