You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
947 B

1 year ago
1 month ago
1 year ago
1 month ago
1 year ago
1 year ago
1 year ago
1 year ago
  1. import cnUser from './user/cnUser';
  2. import cnRole from './role/cnRole';
  3. import cnFactory from './factory/cnFactory';
  4. import cnLabelSetting from './labelSetting/cnLabelSetting';
  5. export default {
  6. user: cnUser,//每个人写每个人自己负责模块的语言,通过这个js文件这种方式统一引入
  7. role: cnRole,
  8. factory: cnFactory,
  9. labelSetting: cnLabelSetting,
  10. home: {
  11. title: "旭捷",
  12. welcome: "欢迎",
  13. greeting: "{name}!"
  14. },
  15. login: {
  16. title: "用户登陆",
  17. accountPlaceholder: "帐号",
  18. passwordPlaceholder: "密码",
  19. selectSitePlaceholder: "请选择工厂",
  20. selectLanguagePlaceholder: "请选择语言",
  21. accountRequired: "帐号不能为空",
  22. passwordRequired: "密码不能为空",
  23. siteRequired: "请选择工厂",
  24. getSiteListFailed: "获取工厂列表失败",
  25. languageOptionCn: "中文",
  26. languageOptionEn: "英文"
  27. },
  28. button: {
  29. login: "登录"
  30. },
  31. }