34 lines
1.4 KiB
PHP
34 lines
1.4 KiB
PHP
<?php
|
|
// Heading
|
|
$_['heading_title'] = 'Backup & Restore';
|
|
|
|
// Text
|
|
$_['text_success'] = 'Success: You have successfully modified your database!';
|
|
|
|
$_['text_backup'] = 'Backing up table %s records %s to %s records';
|
|
$_['text_restore'] = 'Restoring %s of %s';
|
|
$_['text_option'] = 'Backup Options';
|
|
$_['text_history'] = 'Backup History';
|
|
$_['text_progress'] = 'Progress';
|
|
$_['text_import'] = 'For large backup files it is better to upload the SQL file via FTP to the <strong>~/storage/backup/</strong> directory.';
|
|
|
|
// Column
|
|
$_['column_filename'] = 'Filename';
|
|
$_['column_size'] = 'Size';
|
|
$_['column_date_added'] = 'Date Added';
|
|
$_['column_action'] = 'Action';
|
|
|
|
// Entry
|
|
$_['entry_progress'] = 'Progress';
|
|
$_['entry_export'] = 'Export';
|
|
|
|
// Error
|
|
$_['error_permission'] = 'Warning: You do not have permission to modify Backup & Restore!';
|
|
$_['error_export'] = 'Warning: You must select at least one table to export!';
|
|
$_['error_table'] = 'Table %s is not in the allowed list!';
|
|
$_['error_file'] = 'File could not be found!';
|
|
$_['error_directory'] = 'Directory could not be found!';
|
|
$_['error_not_found'] = 'Error: Could not find file %s !';
|
|
$_['error_headers_sent'] = 'Error: Headers already sent out!';
|
|
$_['error_upload_size'] = 'Upload file cannot be larger than %s!';
|