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