export interface ApiTokensLocalization { /** * Tenant tokens page strings */ apiTokens: { /** * Api tokens page title */ pageTitle: string; /** * Personal tokens Table search input placeholder */ searchInputPlaceholder: string; /** * Table action button to generate new tokens */ generateTokenButton: string; /** * Placeholder title to be displayed no api tokens added yet */ noApiTokensYet: string; /** * Placeholder description to be displayed no api tokens added yet */ noApiTokensYetDescription: string; /** * Placeholder title to be displayed no results found while searching */ noResultFound: string; /** * Placeholder description to be displayed no results found while searching */ noResultFoundDescription: string; /** * Table column text to be display as 'clientId' header */ clientIdHeader: string; /** * Table column text to be display as 'createOn' header */ createdOnHeader: string; /** * Table column text to be display as 'Token Roles' header */ rolesHeader: string; /** * Table column text to be display as 'Create by user' header */ createdByHeader: string; /** * Table column text to be display as 'Type' header */ typeHeader: string; /** * Table column text to be display as 'Expires' header */ expiresHeader: string; /** * Text to be display as 'Access Token' under type header */ accessTokenType: string; /** * Text to be display as 'Client Credentials' under type header */ clientCredentialsType: string; /** * Chip label to be display as 'Expired' under expires header */ expiredChipLabel: string; /** * Chip label to be display as 'Never' under expires header */ neverChipLabel: string; /** * Table action text for deleting tokens */ deleteApiTokenAction: string; }; /** * Add new "Tenant" token dialog strings */ apiTokens_AddToken: { /** * Dialog default title text */ title: string; /** * Dialog Title to be displayed after successfully generate new personal token */ successTitle: string; /** * Add "Tenant" token description input label */ descriptionInputLabel: string; /** * Error displayed if description input is empty */ descriptionIsRequired: string; /** * Add "Tenant" token roles select label */ rolesInputLabel: string; /** * Add "Tenant" token roles input placeholder */ rolesInputPlaceholder: string; /** * Error displayed if no roles selected */ rolesIsRequired: string; /** * Expires select label display as 'This token will expire' */ expiresInputLabel: string; /** * Expires option display as 'never' it's value: null */ neverExpire: string; /** * Expires option display as 'After 1 day' it's value: 1 */ expireAfter1Day: string; /** * Expires option display as 'After 7 days' it's value: 7 */ expireAfter7Days: string; /** * Expires option display as 'After 30 days' it's value: 30 */ expireAfter30Days: string; /** * Expires option display as 'After 90 days' it's value: 90 */ expireAfter90Days: string; /** * Expires option display as 'After 365 days' it's value: 365 */ expireAfter365Days: string; /** * Generate token client id label */ clientId: string; /** * Generate token secret key label */ secretKey: string; /** * Generate token access token label */ accessToken: string; /** * Copy and Save text display as note after generated new token */ copyAndSaveId: string; /** * Copy and Save text display as note after generated new access token */ copyAndSaveAccessToken: string; /** * Add new token cancel button text */ cancel: string; /** * Add new token submit button text */ create: string; /** * Close button after successfully generate new token */ done: string; }; /** * Confirmation Dialog for Delete "Tenant" strings */ apiTokens_DeleteToken: { /** * Dialog title */ title: string; /** * Delete "Tenant" token message displayed before the token id */ areYouSureDeleteApiToken1: string; /** * Delete "Tenant" token message displayed after the token id */ areYouSureDeleteApiToken2: string; /** * Delete "Tenant" token cancel button text */ cancel: string; /** * Delete "Tenant" token submit button text */ delete: string; }; }