feat(i18n): translate error messages

This commit is contained in:
Amruth Pillai
2023-11-14 13:02:38 +01:00
parent 888b4db0bb
commit 2db52b7ef2
97 changed files with 10452 additions and 36506 deletions

View File

@ -0,0 +1,46 @@
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 error;
}
};