24 lines
635 B
PHP
24 lines
635 B
PHP
<?php
|
|
|
|
// Audit log page strings (R16). Shared buttons live in common.php.
|
|
return [
|
|
// Header
|
|
'eyebrow' => 'Security',
|
|
'heading' => 'Audit log',
|
|
'event_count' => ':count events',
|
|
|
|
// Events panel
|
|
'panel_title' => 'Events',
|
|
'panel_subtitle' => 'last 50 · newest first',
|
|
'search_label' => 'Search audit log',
|
|
'search_placeholder' => 'Actor, action, target …',
|
|
|
|
// Empty state
|
|
'empty_title' => 'No events',
|
|
'empty_filtered' => 'No audit entries found for “:query”.',
|
|
'empty_none' => 'There are no audit entries yet.',
|
|
|
|
// Page title
|
|
'title' => 'Audit log — Clusev',
|
|
];
|