@better-auth-ui/core
Version:
Authentication components and data utilities for [Better Auth](https://better-auth.com), available for React and Solid.
37 lines (35 loc) • 1.58 kB
text/typescript
export const deviceAuthorizationLocalization = {
/** @remarks `"Device Authorization"` */
deviceAuthorization: "Device Authorization",
/** @remarks `"Enter the code displayed on your device."` */
deviceAuthorizationDescription: "Enter the code displayed on your device.",
/** @remarks `"Device code"` */
deviceCode: "Device code",
/** @remarks `"The code is invalid or has expired."` */
invalidDeviceCode: "The code is invalid or has expired.",
/** @remarks `"Continue"` */
continue: "Continue",
/** @remarks `"Approve Device"` */
approveDevice: "Approve Device",
/** @remarks `"A device is requesting access to your account."` */
approveDeviceDescription: "A device is requesting access to your account.",
/** @remarks `"Signed in as"` */
signedInAs: "Signed in as",
/** @remarks `"Approve"` */
approve: "Approve",
/** @remarks `"Deny"` */
deny: "Deny",
/** @remarks `"Device Approved"` */
deviceApproved: "Device Approved",
/** @remarks `"The device can now access your account. You can return to it and continue."` */
deviceApprovedDescription:
"The device can now access your account. You can return to it and continue.",
/** @remarks `"Device Denied"` */
deviceDenied: "Device Denied",
/** @remarks `"The device was not granted access to your account."` */
deviceDeniedDescription: "The device was not granted access to your account.",
/** @remarks `"Return to application"` */
returnToApplication: "Return to application"
}
export type DeviceAuthorizationLocalization =
typeof deviceAuthorizationLocalization