UNPKG

@better-auth-ui/core

Version:

Authentication components and data utilities for [Better Auth](https://better-auth.com), available for React and Solid.

122 lines (121 loc) 4.72 kB
export declare const oauthProviderLocalization: { /** @remarks `"Authorize {{client}}"` */ authorize: string; /** @remarks `"{{client}} wants to access your account."` */ authorizationDescription: string; /** @remarks `"This will allow {{client}} to:"` */ requestedPermissions: string; /** @remarks `"Signed in as"` */ signedInAs: string; /** @remarks `"Allow"` */ allow: string; /** @remarks `"Cancel"` */ cancel: string; /** @remarks `"Privacy policy"` */ privacyPolicy: string; /** @remarks `"Terms of service"` */ termsOfService: string; /** @remarks `"Invalid authorization request"` */ invalidRequest: string; /** @remarks `"This authorization request is missing required information or is no longer valid."` */ invalidRequestDescription: string; /** @remarks `"Application"` */ application: string; /** @remarks `"Choose an account"` */ selectAccount: string; /** @remarks `"Pick the account you want to use with {{client}}."` */ selectAccountDescription: string; /** @remarks `"Current"` */ currentAccount: string; /** @remarks `"Continue"` */ continue: string; /** @remarks `"No accounts available"` */ noAccounts: string; /** @remarks `"Sign in to continue to {{client}}."` */ noAccountsDescription: string; /** @remarks `"Account created"` */ accountCreated: string; /** @remarks `"Taking you back to {{client}}."` */ continuing: string; /** @remarks `"Your account is ready, but we could not send you back to {{client}}."` */ continueFailed: string; /** @remarks `"Try again"` */ tryAgain: string; /** @remarks `"Connected applications"` */ connectedApplications: string; /** @remarks `"No connected applications"` */ noConnectedApplications: string; /** @remarks `"Applications you authorize will show up here."` */ connectedApplicationsDescription: string; /** @remarks `"Last authorized"` */ lastAuthorized: string; /** @remarks `"Remove authorization"` */ removeAuthorization: string; /** @remarks `"Remove authorization?"` */ removeAuthorizationTitle: string; /** @remarks `"This application will need your approval before receiving new access. Existing tokens may remain valid until they expire."` */ removeAuthorizationDescription: string; /** @remarks `"Remove"` */ remove: string; /** @remarks `"OAuth clients"` */ oauthClients: string; /** @remarks `"Create and manage applications that can request access to accounts."` */ oauthClientsDescription: string; /** @remarks `"No OAuth clients"` */ noOAuthClients: string; /** @remarks `"Create a client when your application is ready to use OAuth."` */ noOAuthClientsDescription: string; /** @remarks `"Create client"` */ createClient: string; /** @remarks `"Edit client"` */ editClient: string; /** @remarks `"Client name"` */ clientName: string; /** @remarks `"Application type"` */ applicationType: string; /** @remarks `"Web"` */ webApplication: string; /** @remarks `"Native"` */ nativeApplication: string; /** @remarks `"Redirect URLs"` */ redirectUrls: string; /** @remarks `"Enter one URL per line."` */ redirectUrlsDescription: string; /** @remarks `"Enter a valid absolute URL."` */ invalidUrl: string; /** @remarks `"Application URL"` */ applicationUrl: string; /** @remarks `"Logo URL"` */ logoUrl: string; /** @remarks `"Scopes"` */ scopes: string; /** @remarks `"Save changes"` */ saveChanges: string; /** @remarks `"Client ID"` */ clientId: string; /** @remarks `"Client secret"` */ clientSecret: string; /** @remarks `"Copy this secret now. It will not be shown again."` */ clientSecretWarning: string; /** @remarks `"Rotate secret"` */ rotateSecret: string; /** @remarks `"Rotate client secret?"` */ rotateSecretTitle: string; /** @remarks `"The current secret will stop working immediately."` */ rotateSecretDescription: string; /** @remarks `"Delete client"` */ deleteClient: string; /** @remarks `"Delete OAuth client?"` */ deleteClientTitle: string; /** @remarks `"This permanently removes the client and stops new authorization requests."` */ deleteClientDescription: string; /** @remarks `"Enabled"` */ enabled: string; /** @remarks `"Disabled"` */ disabled: string; /** @remarks `"Client created"` */ clientCreated: string; /** @remarks `"Secret rotated"` */ secretRotated: string; }; export type OAuthProviderLocalization = typeof oauthProviderLocalization;