Add task management views
This commit is contained in:
parent
aea9b020c5
commit
0e23f87724
7 changed files with 473 additions and 20 deletions
|
@ -6,6 +6,37 @@ return [
|
|||
'header' => 'Server Console',
|
||||
'header_sub' => 'Control your server in real time.',
|
||||
],
|
||||
'tasks' => [
|
||||
'header' => 'Scheduled Tasks',
|
||||
'header_sub' => 'Automate your server.',
|
||||
'current' => 'Current Scheduled Tasks',
|
||||
'actions' => [
|
||||
'command' => 'Send Command',
|
||||
'power' => 'Send Power Toggle',
|
||||
],
|
||||
'new_task' => 'Add New Task',
|
||||
'toggle' => 'Toggle Status',
|
||||
'new' => [
|
||||
'header' => 'New Task',
|
||||
'header_sub' => 'Create a new scheduled task for this server.',
|
||||
'day_of_week' => 'Day of Week',
|
||||
'custom' => 'Custom Value',
|
||||
'day_of_month' => 'Day of Month',
|
||||
'hour' => 'Hour',
|
||||
'minute' => 'Minute',
|
||||
'sun' => 'Sunday',
|
||||
'mon' => 'Monday',
|
||||
'tues' => 'Tuesday',
|
||||
'wed' => 'Wednesday',
|
||||
'thurs' => 'Thursday',
|
||||
'fri' => 'Friday',
|
||||
'sat' => 'Saturday',
|
||||
'submit' => 'Create Task',
|
||||
'type' => 'Task Type',
|
||||
'payload' => 'Task Payload',
|
||||
'payload_help' => 'For example, if you selected <code>Send Command</code> enter the command here. If you selected <code>Send Power Option</code> put the power action here (e.g. <code>restart</code>).',
|
||||
],
|
||||
],
|
||||
'users' => [
|
||||
'header' => 'Manage Users',
|
||||
'header_sub' => 'Control who can access your server.',
|
||||
|
|
|
@ -51,4 +51,12 @@ return [
|
|||
'none' => 'None',
|
||||
'cancel' => 'Cancel',
|
||||
'created_at' => 'Created At',
|
||||
'action' => 'Action',
|
||||
'data' => 'Data',
|
||||
'queued' => 'Queued',
|
||||
'last_run' => 'Last Run',
|
||||
'next_run' => 'Next Run',
|
||||
'yes' => 'Yes',
|
||||
'no' => 'No',
|
||||
'delete' => 'Delete',
|
||||
];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue