Add task management views

This commit is contained in:
Dane Everitt 2017-01-21 15:40:46 -05:00
parent aea9b020c5
commit 0e23f87724
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
7 changed files with 473 additions and 20 deletions

View file

@ -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.',

View file

@ -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',
];