28 lines
1.1 KiB
PHP
28 lines
1.1 KiB
PHP
<?php
|
|
// Heading
|
|
$_['heading_title'] = 'Cron Jobs';
|
|
|
|
// Text
|
|
$_['text_success'] = 'Success: You have modified cron jobs!';
|
|
$_['text_instruction'] = 'CRON Instructions';
|
|
$_['text_list'] = 'Cron List';
|
|
$_['text_cron_1'] = 'Cron Job\'s are scheduled tasks that are run periodically. To setup your servers to use cron job you can read the <a href="http://docs.opencart.com/extension/cron/" target="_blank" class="alert-link">opencart documentation</a> page.';
|
|
$_['text_cron_2'] = 'You need to set your Cron task to run every hour.';
|
|
$_['text_info'] = 'CRON Information';
|
|
$_['text_hour'] = 'Hour';
|
|
$_['text_day'] = 'Day';
|
|
$_['text_month'] = 'Month';
|
|
|
|
// Column
|
|
$_['column_code'] = 'Cron Code';
|
|
$_['column_cycle'] = 'Cycle';
|
|
$_['column_date_added'] = 'Date Added';
|
|
$_['column_date_modified'] = 'Date Modified';
|
|
$_['column_action'] = 'Action';
|
|
|
|
// entry
|
|
$_['entry_cron'] = 'Cron URL';
|
|
$_['entry_description'] = 'Description';
|
|
|
|
// Error
|
|
$_['error_permission'] = 'Warning: You do not have permission to modify cron jobs!'; |