123456789101112131415161718192021222324 |
- import { CloudPageEn } from "./CloudPage";
- import { CommodityConfigurationEn } from "./CommodityConfiguration";
- import { AuthorManagementEn } from "./AuthorManagement";
- import { SmartReportEn } from "./SmartReport";
- import { CategoryListEn } from "./CategoryList";
- import { ReportListEn } from "./ReportList";
- export default {
- ReportManage: {
- ReportAdd: {
- refresh_btn: "One click refresh",
- preview_btn: "Preview",
- draft_btn: "Save draft",
- input_content: "please input content",
- publish_btn: "Publish",
- },
- CloudPage: CloudPageEn,
- CommodityConfiguration: CommodityConfigurationEn,
- AuthorManagement: AuthorManagementEn,
- ...SmartReportEn,
- CategoryList: CategoryListEn,
- ReportList: ReportListEn,
- },
- };
|