File size: 2,981 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
import { t } from "@lingui/macro";
import { ErrorMessage } from "@reactive-resume/utils";
export const translateError = (error: ErrorMessage) => {
switch (error) {
case ErrorMessage.InvalidCredentials: {
return t`It doesn't look like a user exists with the credentials you provided.`;
}
case ErrorMessage.UserAlreadyExists: {
return t`A user with this email address and/or username already exists.`;
}
case ErrorMessage.SecretsNotFound: {
return t`User does not have an associated 'secrets' record. Please report this issue on GitHub.`;
}
case ErrorMessage.OAuthUser: {
return t`This email address is associated with an OAuth account. Please sign in with your OAuth provider.`;
}
case ErrorMessage.InvalidResetToken: {
return t`It looks like the reset token you provided is invalid. Please try restarting the password reset process again.`;
}
case ErrorMessage.InvalidVerificationToken: {
return t`It looks like the verification token you provided is invalid. Please try restarting the verification process again.`;
}
case ErrorMessage.EmailAlreadyVerified: {
return t`It looks like your email address has already been verified.`;
}
case ErrorMessage.TwoFactorNotEnabled: {
return t`Two-factor authentication is not enabled for this account.`;
}
case ErrorMessage.TwoFactorAlreadyEnabled: {
return t`Two-factor authentication is already enabled for this account.`;
}
case ErrorMessage.InvalidTwoFactorCode: {
return t`It looks like the two-factor authentication code you provided is invalid. Please try again.`;
}
case ErrorMessage.InvalidTwoFactorBackupCode: {
return t`It looks like the backup code you provided is invalid or used. Please try again.`;
}
case ErrorMessage.InvalidBrowserConnection: {
return t`There was an error connecting to the browser. Please make sure 'chrome' is running and reachable.`;
}
case ErrorMessage.ResumeSlugAlreadyExists: {
return t`A resume with this slug already exists, please pick a different unique identifier.`;
}
case ErrorMessage.ResumeNotFound: {
return t`It looks like the resume you're looking for doesn't exist.`;
}
case ErrorMessage.ResumeLocked: {
return t`The resume you want to update is locked, please unlock if you wish to make any changes to it.`;
}
case ErrorMessage.ResumePrinterError: {
return t`Something went wrong while printing your resume. Please try again later or raise an issue on GitHub.`;
}
case ErrorMessage.ResumePreviewError: {
return t`Something went wrong while grabbing a preview your resume. Please try again later or raise an issue on GitHub.`;
}
case ErrorMessage.SomethingWentWrong: {
return t`Something went wrong while processing your request. Please try again later or raise an issue on GitHub.`;
}
default: {
return null;
}
}
};
|