61 lines
2.7 KiB
PHP
61 lines
2.7 KiB
PHP
<?php
|
|
/* ----------------------------------------------------------------------
|
|
$Id: export_excel.php,v 1.3 2007/06/13 16:38:21 r23 Exp $
|
|
|
|
MyOOS [Shopsystem]
|
|
https://www.oos-shop.de
|
|
|
|
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
|
----------------------------------------------------------------------
|
|
Based on:
|
|
|
|
File: backup.php,v 1.16 2002/03/16 21:30:02 hpdl
|
|
----------------------------------------------------------------------
|
|
osCommerce, Open Source E-Commerce Solutions
|
|
http://www.oscommerce.com
|
|
|
|
Copyright (c) 2003 osCommerce
|
|
----------------------------------------------------------------------
|
|
Released under the GNU General Public License
|
|
---------------------------------------------------------------------- */
|
|
|
|
/* ----------------------------------------------------------------------
|
|
If you made a translation, please send to
|
|
lang@oos-shop.de
|
|
the translated file.
|
|
---------------------------------------------------------------------- */
|
|
|
|
|
|
define('HEADING_TITLE', 'Database Backup Manager');
|
|
|
|
define('TABLE_HEADING_TITLE', 'Title');
|
|
define('TABLE_HEADING_FILE_DATE', 'Date');
|
|
define('TABLE_HEADING_FILE_SIZE', 'Size');
|
|
define('TABLE_HEADING_ACTION', 'Action');
|
|
|
|
define('TEXT_INFO_HEADING_NEW_BACKUP', 'New Backup');
|
|
define('TEXT_INFO_HEADING_RESTORE_LOCAL', 'Restore Local');
|
|
define('TEXT_INFO_NEW_BACKUP', 'Do not interrupt the backup process which might take a couple of minutes.');
|
|
define('TEXT_INFO_UNPACK', '<br /><br />(after unpacking the file from the archive)');
|
|
define('TEXT_INFO_DATE', 'Date:');
|
|
define('TEXT_INFO_SIZE', 'Size:');
|
|
define('TEXT_INFO_COMPRESSION', 'Compression:');
|
|
define('TEXT_INFO_USE_GZIP', 'Use GZIP');
|
|
define('TEXT_INFO_USE_ZIP', 'Use ZIP');
|
|
define('TEXT_INFO_USE_NO_COMPRESSION', 'No Compression (Pure SQL)');
|
|
define('TEXT_INFO_DOWNLOAD_ONLY', 'Download only (do not store server side)');
|
|
define('TEXT_INFO_BEST_THROUGH_HTTPS', 'Best through a HTTPS connection');
|
|
define('TEXT_DELETE_INTRO', 'Are you sure you want to delete this backup?');
|
|
define('TEXT_NO_EXTENSION', 'None');
|
|
define('TEXT_EXPORT_DIRECTORY', 'Backup Directory:');
|
|
define('TEXT_FORGET', '(<u>forget</u>)');
|
|
|
|
define('ERROR_EXPORT_DIRECTORY_DOES_NOT_EXIST', 'Error!</strong> Backup directory does not exist. Please set this in configure.php.');
|
|
define('ERROR_EXPORT_DIRECTORY_NOT_WRITEABLE', 'Error!</strong> Backup directory is not writeable.');
|
|
define('ERROR_DOWNLOAD_LINK_NOT_ACCEPTABLE', 'Error!</strong> Download link not acceptable.');
|
|
|
|
define('SUCCESS_DATABASE_SAVED', 'Success!</strong> The database has been saved.');
|
|
define('SUCCESS_DATABASE_RESTORED', 'Success!</strong> The database has been restored.');
|
|
define('SUCCESS_EXPORT_DELETED', 'Success!</strong> The backup has been removed.');
|
|
|