zh_CN.ts 649 B

1234567891011121314151617181920212223242526272829
  1. /**
  2. * 文件表 国际化信息
  3. */
  4. export default {
  5. trans: true,
  6. key: 'system.views.file',
  7. data: {
  8. title: {
  9. fileId: '文件ID',
  10. fileStorageId: '文件存储器',
  11. fileName: '文件名',
  12. type: '类型',
  13. contentType: '文件类型',
  14. fileSize: '文件大小',
  15. },
  16. validate: {
  17. fileId: '请输入文件ID',
  18. fileStorageId: '请输入文件存储器',
  19. fileName: '请输入文件名',
  20. type: '请输入类型',
  21. },
  22. rules: {},
  23. search: {
  24. fileName: '请输入文件名',
  25. type: '请输入类型',
  26. fileStorageId: '请输入文件存储器',
  27. },
  28. },
  29. };