en.ts 935 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. import type { LocaleMessages } from 'vue-i18n';
  2. const locale: LocaleMessages<I18nType.Schema> = {
  3. message: {
  4. system: {
  5. title: 'SoybeanAdmin'
  6. },
  7. routes: {
  8. dashboard: {
  9. dashboard: 'Dashboard',
  10. workbench: 'Workbench'
  11. },
  12. management: {
  13. _value: 'System Management',
  14. auth: 'Auth',
  15. role: 'Role',
  16. route: 'Route',
  17. user: 'User',
  18. sort: 'category',
  19. student: 'Student',
  20. attendance: 'student attendance'
  21. },
  22. lesson: {
  23. _value: 'Lesson Management',
  24. group: 'class',
  25. classroom: 'classroom',
  26. schedule: 'schedule',
  27. calendar: 'calendar',
  28. student: 'group student',
  29. checkin: 'student sign in',
  30. score: 'score'
  31. },
  32. archives: {
  33. _value: 'archives',
  34. students: 'students info'
  35. },
  36. about: 'About'
  37. }
  38. }
  39. };
  40. export default locale;