Files
xin-school/web/locales/en_US/index.ts
T
2026-06-17 10:52:47 +08:00

130 lines
3.8 KiB
TypeScript

import menu from "./menu";
import login from "./login";
import dashboardAnalysis from "./dashboard/analysis";
import dashboardMonitor from "./dashboard/monitor";
import dashboardWorkplace from "./dashboard/workplace";
import systemInfo from "./system/info";
import systemConfig from "./system/config";
import systemDept from "./system/dept";
import systemDict from "./system/dict";
import systemFile from "./system/file";
import systemMail from "./system/mail";
import systemStorage from "./system/storage";
import systemUser from "./system/user";
import systemRole from "./system/role";
import systemRule from "./system/rule";
import systemAi from "./system/ai";
import aiChat from "./ai/chat";
import aiConversation from "./ai/conversation";
import aiAgent from "./ai/agent";
import memberUser from "./member/user";
import memberAddress from "./member/address";
import forumCategory from "./forum/category";
import forumPost from "./forum/post";
import forumComment from "./forum/comment";
import forumSensitiveWord from "./forum/sensitive-word";
import forumPostLike from "./forum/post-like";
import forumPostFavorite from "./forum/post-favorite";
import merchantCategory from "./merchant/category";
import merchantStore from "./merchant/store";
import merchantProductCategory from "./merchant/product-category";
import merchantProduct from "./merchant/product";
import merchantPrinter from "./merchant/printer";
import merchantPrintTask from "./merchant/print-task";
import merchantOrder from "./merchant/order";
import merchantRefund from "./merchant/refund";
import taskCategory from "./task/category";
import taskOrderErrand from "./task/order-errand";
import taskOrderPickup from "./task/order-pickup";
import taskOrderRental from "./task/order-rental";
import taskBid from "./task/bid";
import runnerApplication from "./runner/application";
import runnerWorker from "./runner/worker";
import runnerCreditLog from "./runner/credit-log";
import runnerComplaint from "./runner/complaint";
import runnerComplaintAppeal from "./runner/complaint-appeal";
import financeTaskPayment from "./finance/task-payment";
import financeDeposit from "./finance/deposit";
import financeDepositPayment from "./finance/deposit-payment";
import financeWithdrawal from "./finance/withdrawal";
import financeTransaction from "./finance/transaction";
import financeOrderPayment from "./finance/order-payment";
import financeMerchantWithdrawal from "./finance/merchant-withdrawal";
import userProfile from "./user/profile";
import xinForm from "./components/xin-form";
import xinTable from "./components/xin-table";
import xinCrud from "./components/xin-crud";
import layout from "./layout/layout";
export default {
...menu,
...login,
...dashboardAnalysis,
...dashboardMonitor,
...dashboardWorkplace,
...systemInfo,
...systemConfig,
...systemDept,
...systemDict,
...systemFile,
...systemMail,
...systemStorage,
...systemUser,
...systemRole,
...systemRule,
...systemAi,
...aiChat,
...aiConversation,
...aiAgent,
...memberUser,
...memberAddress,
...forumCategory,
...forumPost,
...forumComment,
...forumSensitiveWord,
...forumPostLike,
...forumPostFavorite,
...merchantCategory,
...merchantStore,
...merchantProductCategory,
...merchantProduct,
...merchantPrinter,
...merchantPrintTask,
...merchantOrder,
...merchantRefund,
...taskCategory,
...taskOrderErrand,
...taskOrderPickup,
...taskOrderRental,
...taskBid,
...runnerApplication,
...runnerWorker,
...runnerCreditLog,
...runnerComplaint,
...runnerComplaintAppeal,
...financeTaskPayment,
...financeDeposit,
...financeDepositPayment,
...financeWithdrawal,
...financeTransaction,
...financeOrderPayment,
...financeMerchantWithdrawal,
...userProfile,
...xinForm,
...xinTable,
...xinCrud,
...layout,
};