superuserAccessErrors.tsx 485 B

123456789
  1. // TODO(epurkhiser): These can't be translated with `t()` because they're an
  2. // Enum. We should probably just use a regular map
  3. export enum ErrorCodes {
  4. invalidPassword = 'Incorrect password',
  5. invalidSSOSession = 'Your SSO Session has expired, please reauthenticate',
  6. invalidAccessCategory = 'Please fill out the access category and reason correctly',
  7. noAuthenticator = 'Please add a U2F authenticator to your account',
  8. unknownError = 'An error ocurred, please try again',
  9. }