@better-auth-ui/core
Version:
Authentication components and data utilities for [Better Auth](https://better-auth.com), available for React and Solid.
25 lines (17 loc) • 714 B
text/typescript
export const usernameLocalization = {
/** @remarks `"Username"` */
username: "Username",
/** @remarks `"Username"` */
usernamePlaceholder: "Username",
/** @remarks `"Username or Email"` */
usernameOrEmailPlaceholder: "Username or email",
/** @remarks `"Username is available"` */
usernameAvailable: "Username is available",
/** @remarks `"Username is already taken. Please try another."` */
usernameTaken: "Username is already taken. Please try another.",
/** @remarks `"Display Username"` */
displayUsername: "Display Username",
/** @remarks `"Display Username"` */
displayUsernamePlaceholder: "Display Username"
}
export type UsernameLocalization = typeof usernameLocalization