export interface AuditLogsLocalization { /** * AuditLogs page strings */ auditLogs: { /** * AuditLogs page title */ pageTitle: string; /** * Audit logs table search input placeholder */ searchInputPlaceholder: string; /** * Audit logs extract logs as CSV file menu button text */ downloadCsv: string; /** * Audit logs extract logs as CSV file button text */ downloadCsvPrimaryButton: 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; /** * Text to be displayed as table placeholder while loading content based on search query */ searchingPlaceholder: string; /** * Clear filters text */ clear: string; /** * Cancel filter in filter popup */ cancel: string; /** * Filter button in filter popup */ filter: string; /** * Filter popup title */ filterBy: string; /** * Impersonated By tooltip */ impersonatedByTooltip: string; }; }