user.ts 493 B

123456789101112131415
  1. const userTrans = {
  2. createTitle: 'Create User',
  3. updateTitle: 'Update User',
  4. user: 'User',
  5. deleteWarning: 'You are trying to delete user. This action cannot be undone.',
  6. oldPassword: 'Current Password',
  7. newPassword: 'New Password',
  8. confirmPassword: 'Confirm Password',
  9. update: 'Update password',
  10. isNotSame: 'Confirm password is not same as new password',
  11. deleteTip:
  12. 'Please select at least one item to delete and root can not be deleted.',
  13. };
  14. export default userTrans;