export interface WebhooksLocalization { /** * Webhook page strings */ webhooks: { /** * Webhook page title */ pageTitle: string; /** * Webhooks Table search input placeholder */ searchInputPlaceholder: string; /** * Add new webhook button text */ addWebhook: string; /** * Text to be displayed as table placeholder while loading content based on search query */ searchingPlaceholder: string; /** * Placeholder title to be displayed no webhooks added yet */ noWebhooksYet: string; /** * Placeholder description to be displayed no webhooks added yet */ noWebhooksYetDescription: 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; /** * Webhooks table row action for edit webhooks */ editWebhook: string; /** * Webhooks table row action for delete webhooks */ deleteWebhook: string; /** * Webhooks table name header text */ nameHeader: string; /** * Webhooks table status header text */ statusHeader: string; }; /** * Add / Edit Webhook dialog strings */ webhooks_AddEditWebhook: { /** * Add Webhook dialog title */ addTitle: string; /** * Edit Webhook dialog title */ editTitle: string; /** * Webhook Name input label */ nameInputLabel: string; /** * Webhook Name input placeholder */ nameInputPlaceholder: string; /** * Error displayed if Webhook Name is empty */ nameIsRequired: string; /** * Webhook URL input label */ urlInputLabel: string; /** * Webhook URL input placeholder */ urlInputPlaceholder: string; /** * Error displayed if Webhook URL is empty */ urlIsRequired: string; /** * Error displayed if Webhook URL is not valid URL */ urlIsInvalid: string; /** * Webhook Secret key input label */ secretKeyInputLabel: string; /** * Webhook Secret key input placeholder */ secretKeyInputPlaceholder: string; /** * Error displayed if Webhook Secret key length bellow 8 characters */ secretKeyLengthAtLeast8: string; /** * Webhook Events select input label */ eventsInputLabel: string; /** * Webhook Events select input placeholder */ eventsInputPlaceholder: string; /** * Error displayed if no selected events */ eventsIsRequired: string; /** * Add new webhook dialog cancel button text */ cancel: string; /** * Add new webhook dialog submit button text */ create: string; /** * Edit webhook Submit button text */ edit: string; }; /** * Delete Webhook dialog strings */ webhooks_DeleteWebhook: { /** * Delete webhook dialog title */ title: string; /** * Delete webhook message before {webhook name} */ areYouSureDeleteWebhook1: string; /** * Delete webhook message after {webhook name} */ areYouSureDeleteWebhook2: string; /** * Delete webhook Cancel button text */ cancel: string; /** * Delete webhook Submit button text */ delete: string; }; }