1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
| export default { home: { welcome: "Welcome" }, tabs: { more: "More", refresh: "Refresh", maximize: "Maximize", closeCurrent: "Close current", closeOther: "Close other", closeAll: "Close All" }, header: { componentSize: "Component size", language: "Language", layoutConfig: "Layout Config", layoutSwitch: "Layout Switch", layoutTheme: "Layout Theme", themeColor: "Theme Color", darkMode: "Dark Mode", greyMode: "Grey mode", weakMode: "Weak mode", viewSetting: "View Setting", collapseMenu: "Collapse Menu", breadcrumb: "Breadcrumb", breadcrumbIcon: "Breadcrumb Icon", tabs: "Tabs", tabsIcon: "Tabs Icon", pageFooter: "Page Footer", fullScreen: "Full Screen", exitFullScreen: "Exit Full Screen", personalData: "Personal Data", changePassword: "Change Password", orgLabel: "Organization:", deptLabel: "Department:", infoDialog: { title: "User BaseInfo", loginName: "Login Name:", org: "Organization:", dept: "Department:", role: "Role:", cnName: "Chinese Name:", tel: "Tel:", email: "Email:", lastLoginTime: "Last Login Time:", uptPwd: "UpdatePwd" }, pwdDialog: { title: "Update Password", oldPwd: "Old Password:", newPwd: "New Password:", confirmPwd: "Confirm Password:", oldPwdHolder: "please input old password!", newPwdHolder: "please input new password!", cofPwdHolder: "please confirm new password!", mesSuc: "update password success!", button: "Save" }, logout: { cofMes: "Are you sure to log out?", tipMes: "Kind Tips", mesSuc: "Logout Success!", name: "logout" } }, login: { login: "Login", userName: "userName", userNameRequired: "Please enter userName!", password: "password", passwordRequired: "Please enter password!", code: "code", codeRequired: "Please enter code!", codeError: "code error!", success: "Welcome to login!", firstLogin: "When you log in for the first time and the password expires, you need to change the password again!", companyName: "SwordGate Information", systemName: "Unified Regulatory Reporting Platform" }, footer: { copyright: "Copyright © 2022-2023 SwordGate Information All Rights Reserved" }, staticRouter: { login: "login", 403: "403 page", 404: "404 page", 500: "500 page" }, layout: { shortCompany: "SwordGate Info" }, button: { cancel: "Cancel", confirm: "Confirm" } };
|