File tree Expand file tree Collapse file tree 3 files changed +3
-0
lines changed
packages/translations/src Expand file tree Collapse file tree 3 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ export const enUS = {
2525 networkRequestFailed : "Unable to connect to the server. Please check your internet connection" ,
2626 tooManyRequests : "Too many failed attempts. Please try again later" ,
2727 emailAlreadyInUse : "An account already exists with this email" ,
28+ invalidCredential : "The provided credentials are invalid." ,
2829 weakPassword : "Password should be at least 8 characters" ,
2930 unverifiedEmail : "Please verify your email address to continue." ,
3031 operationNotAllowed : "This operation is not allowed. Please contact support." ,
Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ export const ERROR_CODE_MAP = {
2424 "auth/invalid-email" : "invalidEmail" ,
2525 "auth/unverified-email" : "unverifiedEmail" ,
2626 "auth/user-disabled" : "userDisabled" ,
27+ "auth/invalid-credential" : "invalidCredential" ,
2728 "auth/network-request-failed" : "networkRequestFailed" ,
2829 "auth/too-many-requests" : "tooManyRequests" ,
2930 "auth/email-already-in-use" : "emailAlreadyInUse" ,
Original file line number Diff line number Diff line change @@ -33,6 +33,7 @@ export type Translations = {
3333 networkRequestFailed ?: string ;
3434 tooManyRequests ?: string ;
3535 emailAlreadyInUse ?: string ;
36+ invalidCredential ?: string ;
3637 weakPassword ?: string ;
3738 operationNotAllowed ?: string ;
3839 invalidPhoneNumber ?: string ;
You can’t perform that action at this time.
0 commit comments