@better-auth-ui/core
Version:
Authentication components and data utilities for [Better Auth](https://better-auth.com), available for React and Solid.
59 lines (57 loc) • 1.98 kB
text/typescript
export const apiKeyLocalization = {
/** @remarks `"API key"` */
apiKey: "API key",
/** @remarks `"API keys"` */
apiKeys: "API keys",
/** @remarks `"Create an API key for programmatic access to your account."` */
apiKeysDescription:
"Create an API key for programmatic access to your account.",
/** @remarks `"Create API key"` */
createApiKey: "Create API key",
/** @remarks `"No API keys"` */
noApiKeys: "No API keys",
/** @remarks `"Name"` */
name: "Name",
/** @remarks `"Expiration"` */
expiration: "Expiration",
/** @remarks `"day"` */
day: "day",
/** @remarks `"days"` */
days: "days",
/** @remarks `"Never"` */
never: "Never",
/** @remarks `"Created"` */
created: "Created",
/** @remarks `"Expires"` */
expires: "Expires",
/** @remarks `"Never expires"` */
neverExpires: "Never expires",
/** @remarks `"New API key"` */
newApiKey: "New API key",
/** @remarks `"Copy this key now. For security reasons you will not be able to see it again."` */
newApiKeyWarning:
"This is the only time you'll see this API key. Copy and store it somewhere safe.",
/** @remarks `"Delete API key"` */
deleteApiKey: "Delete API key",
/** @remarks `"This action cannot be undone. Any service using this API key will stop working immediately."` */
deleteApiKeyWarning:
"This action cannot be undone. Any service using this API key will stop working immediately.",
/** @remarks `"I've saved my key"` */
dismissNewKey: "I've saved my key",
editApiKey: "Edit API key",
configuration: "Configuration",
enabled: "Enabled",
disabled: "Disabled",
requests: "Requests",
remaining: "Remaining",
lastRequest: "Last request",
neverRequested: "Never requested",
sortBy: "Sort by",
newest: "Newest",
oldest: "Oldest",
nameAscending: "Name A–Z",
nameDescending: "Name Z–A",
previousPage: "Previous page",
nextPage: "Next page"
}
export type ApiKeyLocalization = typeof apiKeyLocalization