@better-auth-ui/core
Version:
Authentication components and data utilities for [Better Auth](https://better-auth.com), available for React and Solid.
30 lines (28 loc) • 1.11 kB
text/typescript
export const emailOtpLocalization = {
/** @remarks `"Email Code"` */
emailOtp: "Email Code",
/** @remarks `"Send code"` */
sendCode: "Send code",
/** @remarks `"Code"` */
code: "Code",
/** @remarks `"Verify code"` */
verifyCode: "Verify code",
/** @remarks `"We sent a code to {{email}}"` */
codeSentTo: "We sent a code to {{email}}",
/** @remarks `"Enter the {{length}}-digit code"` */
codeLengthMismatch: "Enter the {{length}}-digit code",
/** @remarks `"Use a different email"` */
useDifferentEmail: "Use a different email",
/** @remarks `"Code sent"` */
codeSent: "Code sent",
/** @remarks `"Email verified"` */
emailVerified: "Email verified",
/** @remarks `"Confirm your current email"` */
confirmCurrentEmail: "Confirm your current email",
/** @remarks `"Confirm your new email"` */
confirmNewEmail: "Confirm your new email",
/** @remarks `"Enter the code we sent to {{email}} to finish the change"` */
confirmEmailDescription:
"Enter the code we sent to {{email}} to finish the change"
}
export type EmailOtpLocalization = typeof emailOtpLocalization