| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- // 导入模块化的翻译文件
- import components from './modules/components/en_US';
- import system from './modules/system/index_en';
- import monitor from './modules/monitor/index_en';
- import setting from './modules/setting/index_en';
- import tool from './modules/tool/en_US';
- import project from './modules/project/index_en';
- export default {
- // 路由国际化
- route: {
- dashboard: 'Home Page',
- document: 'Document'
- },
- // 登录页面国际化
- login: {
- selectPlaceholder: 'Please select/enter a company name',
- username: 'Username',
- password: 'Password',
- login: 'Login',
- logging: 'Logging...',
- code: 'Verification Code',
- rememberPassword: 'Remember me',
- switchRegisterPage: 'Sign up now',
- rule: {
- tenantId: {
- required: 'Please enter your tenant id'
- },
- username: {
- required: 'Please enter your account'
- },
- password: {
- required: 'Please enter your password'
- },
- code: {
- required: 'Please enter a verification code'
- }
- },
- social: {
- wechat: 'Wechat Login',
- maxkey: 'MaxKey Login',
- topiam: 'TopIam Login',
- gitee: 'Gitee Login',
- github: 'Github Login'
- }
- },
- // 注册页面国际化
- register: {
- selectPlaceholder: 'Please select/enter a company name',
- username: 'Username',
- password: 'Password',
- confirmPassword: 'Confirm Password',
- register: 'Register',
- registering: 'Registering...',
- registerSuccess: 'Congratulations, your {username} account has been registered!',
- code: 'Verification Code',
- switchLoginPage: 'Log in with an existing account',
- rule: {
- tenantId: {
- required: 'Please enter your tenant id'
- },
- username: {
- required: 'Please enter your account',
- length: 'The length of the user account must be between {min} and {max}'
- },
- password: {
- required: 'Please enter your password',
- length: 'The user password must be between {min} and {max} in length',
- pattern: "Can't contain illegal characters: {strings}"
- },
- code: {
- required: 'Please enter a verification code'
- },
- confirmPassword: {
- required: 'Please enter your password again',
- equalToPassword: 'The password entered twice is inconsistent'
- }
- }
- },
- // 公共组件国际化(从模块导入)
- components,
- // 导航栏国际化
- navbar: {
- full: 'Full Screen',
- language: 'Language',
- dashboard: 'Dashboard',
- document: 'Document',
- message: 'Message',
- layoutSize: 'Layout Size',
- selectTenant: 'Select Company',
- layoutSetting: 'Layout Setting',
- personalCenter: 'Personal Center',
- logout: 'Logout',
- logoutConfirm: 'Are you sure you want to log out?',
- logoutTitle: 'Confirm',
- confirm: 'Confirm',
- cancel: 'Cancel'
- },
- // 系统管理模块(包含用户、角色等)
- ...system,
- // 监控管理模块
- ...monitor,
- // 设置管理模块
- ...setting,
- // 工具模块
- ...tool,
- // 项目管理模块
- project
- };
|