mirror of
https://github.com/pelican-dev/panel.git
synced 2026-07-16 04:03:50 +03:00
39 lines
1.2 KiB
PHP
39 lines
1.2 KiB
PHP
<?php
|
|
|
|
return [
|
|
'empty_table' => 'Yay! No Errors!',
|
|
'empty_audit_log' => 'No admin actions have been logged yet.',
|
|
'model_label' => 'Admin Audit Log',
|
|
'model_label_plural' => 'Admin Audit Logs',
|
|
'total_logs' => 'Total Logs',
|
|
'error' => 'Error',
|
|
'warning' => 'Warning',
|
|
'notice' => 'Notice',
|
|
'info' => 'Info',
|
|
'debug' => 'Debug',
|
|
'navigation' => [
|
|
'panel_logs' => 'Panel Logs',
|
|
'admin_audit_log' => 'Admin Audit',
|
|
],
|
|
'table' => [
|
|
'actor' => 'Actor',
|
|
'event' => 'Event',
|
|
'description' => 'Description',
|
|
'ip' => 'IP Address',
|
|
'timestamp' => 'Time',
|
|
'system' => 'System',
|
|
],
|
|
'actions' => [
|
|
'upload_logs' => 'Upload Logs?',
|
|
'upload_logs_description' => 'This will upload :file to :url Are you sure you wish to do this?',
|
|
'view_logs' => 'View Logs',
|
|
'log_not_found' => 'Log not found!',
|
|
'log_not_found_description' => 'Could not find log for :filename',
|
|
'failed_to_upload' => 'Failed to upload.',
|
|
'failed_to_upload_description' => 'HTTP Status: :status',
|
|
'log_upload' => 'Log Uploaded!',
|
|
'log_upload_action' => 'View Log',
|
|
'upload_tooltip' => 'Upload to :url',
|
|
],
|
|
];
|