mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-11 01:24:46 +02:00
34 lines
689 B
PHP
34 lines
689 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
|
|
'labels' => [
|
|
'model' => 'Exception',
|
|
'model_plural' => 'Exceptions',
|
|
'navigation' => 'Exception',
|
|
'navigation_group' => 'Settings',
|
|
|
|
'tabs' => [
|
|
'exception' => 'Exception',
|
|
'headers' => 'Headers',
|
|
'cookies' => 'Cookies',
|
|
'body' => 'Body',
|
|
'queries' => 'Queries',
|
|
],
|
|
],
|
|
|
|
'empty_list' => 'Horray! just sit back & enjoy 😎',
|
|
|
|
'columns' => [
|
|
'method' => 'Method',
|
|
'path' => 'Path',
|
|
'type' => 'Type',
|
|
'code' => 'Code',
|
|
'ip' => 'IP',
|
|
'occurred_at' => 'Occurred at',
|
|
],
|
|
|
|
];
|