12345678910111213141516171819202122232425 |
- // bao
- import { CloudPageZh } from "./CloudPage";
- import { CommodityConfigurationZh } from "./CommodityConfiguration";
- import { AuthorManagementZh } from "./AuthorManagement";
- import { SmartReportZh } from "./SmartReport";
- import { CategoryListZh } from "./CategoryList";
- import { ReportListZh } 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: CloudPageZh,
- CommodityConfiguration: CommodityConfigurationZh,
- AuthorManagement: AuthorManagementZh,
- ...SmartReportZh,
- CategoryList: CategoryListZh,
- ReportList: ReportListZh,
- },
- };
|