en.ts 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. export default {
  2. // Page Title
  3. pageTitle: 'Flow Approval Test',
  4. // Search and Form
  5. title: 'Title',
  6. status: 'Approval Status',
  7. userId: 'User ID',
  8. age: 'Age',
  9. // Placeholders
  10. enterTitle: 'Please enter title',
  11. selectStatus: 'Please select approval status',
  12. enterAge: 'Please enter age',
  13. // Common Operations
  14. search: 'Search',
  15. reset: 'Reset',
  16. add: 'Add',
  17. edit: 'Edit',
  18. delete: 'Delete',
  19. detail: 'Detail',
  20. operation: 'Operation',
  21. confirm: 'Confirm',
  22. cancel: 'Cancel',
  23. // Table Columns
  24. primaryKey: 'Primary Key',
  25. titleCol: 'Title',
  26. statusCol: 'Approval Status',
  27. userIdCol: 'User ID',
  28. ageCol: 'Age',
  29. // Validation Messages
  30. idRequired: 'Primary key cannot be empty',
  31. statusRequired: 'Approval status cannot be empty',
  32. // Success Messages
  33. addSuccess: 'Added successfully',
  34. editSuccess: 'Modified successfully',
  35. deleteSuccess: 'Deleted successfully',
  36. // Confirmation Messages
  37. confirmDeleteSelected: 'Are you sure you want to delete the selected data?',
  38. confirmDeleteSingle: 'This operation will permanently delete the data, do you want to continue?',
  39. pleaseSelectDeleteData: 'Please select the data to delete.',
  40. // Detail Page
  41. detailTitle: 'Flow Approval Test Detail',
  42. tabFormDetail: 'Form Detail',
  43. tabApprovalRecord: 'Approval Record',
  44. tabFlowChart: 'Flow Chart',
  45. // Dialog Titles
  46. addDialogTitle: 'Add Flow Approval Test',
  47. editDialogTitle: 'Edit Flow Approval Test',
  48. // Tips
  49. tip: 'Tip',
  50. expandSearch: 'Expand Search',
  51. collapseSearch: 'Collapse Search'
  52. }