73 lines
3.3 KiB
PHP
Executable File
73 lines
3.3 KiB
PHP
Executable File
<?php
|
|
//
|
|
// +----------------------------------------------------------------------+
|
|
// |zen-cart Open Source E-commerce |
|
|
// +----------------------------------------------------------------------+
|
|
// | Copyright (c) 2003 The zen-cart developers |
|
|
// | |
|
|
// | http://www.zen-cart.com/index.php |
|
|
// | |
|
|
// | Portions Copyright (c) 2003 osCommerce |
|
|
// +----------------------------------------------------------------------+
|
|
// | This source file is subject to version 2.0 of the GPL license, |
|
|
// | that is bundled with this package in the file LICENSE, and is |
|
|
// | available through the world-wide-web at the following url: |
|
|
// | http://www.zen-cart.com/license/2_0.txt. |
|
|
// | If you did not receive a copy of the zen-cart license and are unable |
|
|
// | to obtain it through the world-wide-web, please send a note to |
|
|
// | license@zen-cart.com so we can mail you a copy immediately. |
|
|
// +----------------------------------------------------------------------+
|
|
// $Id: index.php 2539 2005-12-11 05:17:05Z ajeh $
|
|
//
|
|
|
|
define('HEADING_TITLE', 'Choose an action..');
|
|
|
|
define('BOX_TITLE_ORDERS', 'Orders');
|
|
define('BOX_TITLE_STATISTICS', 'Statistics');
|
|
|
|
define('BOX_ENTRY_SUPPORT_SITE', 'Support Site');
|
|
define('BOX_ENTRY_SUPPORT_FORUMS', 'Support Forums');
|
|
define('BOX_ENTRY_MAILING_LISTS', 'Mailing Lists');
|
|
define('BOX_ENTRY_BUG_REPORTS', 'Bug Reports');
|
|
|
|
define('BOX_ENTRY_FAQ', 'FAQ');
|
|
define('BOX_ENTRY_LIVE_DISCUSSIONS', 'Live Discussions');
|
|
define('BOX_ENTRY_CVS_REPOSITORY', 'CVS Repository');
|
|
define('BOX_ENTRY_INFORMATION_PORTAL', 'Information Portal');
|
|
|
|
define('BOX_CONNECTION_PROTECTED', 'You are protected by a %s secure SSL connection.');
|
|
define('BOX_CONNECTION_UNPROTECTED', 'You are <font color="#ff0000">not</font> protected by a secure SSL connection.');
|
|
define('BOX_CONNECTION_UNKNOWN', 'unknown');
|
|
|
|
define('CATALOG_CONTENTS', 'Contents');
|
|
define('TOOLS_BACKUP', 'Backup');
|
|
define('TOOLS_BANNERS', 'Banners');
|
|
define('TOOLS_FILES', 'Files');
|
|
|
|
// statistics
|
|
define('REPORTS_PRODUCTS', 'Products');
|
|
define('REPORTS_ORDERS', 'Orders');
|
|
|
|
define('BOX_ENTRY_CUSTOMERS', 'Customers:');
|
|
define('BOX_ENTRY_NEWSLETTERS', 'Newsletter subscribers:');
|
|
|
|
define('BOX_ENTRY_PRODUCTS', 'Products:');
|
|
define('BOX_ENTRY_PRODUCTS_OFF', 'Products deactivated:');
|
|
define('BOX_ENTRY_REVIEWS', 'Reviews:');
|
|
define('BOX_ENTRY_REVIEWS_PENDING', 'Reviews Pending Approval:');
|
|
|
|
define('BOX_ENTRY_NEW_CUSTOMERS', 'New customers:');
|
|
define('BOX_ENTRY_NEW_ORDERS', 'New orders:');
|
|
|
|
define('BOX_ENTRY_SPECIALS_EXPIRED','Specials Expired');
|
|
define('BOX_ENTRY_FEATURED_EXPIRED','Featured Products Expired');
|
|
define('BOX_ENTRY_SALEMAKER_EXPIRED','Sales Expired');
|
|
|
|
define('BOX_ENTRY_SPECIALS_ACTIVE','Specials Active');
|
|
define('BOX_ENTRY_FEATURED_ACTIVE','Featured Products Active');
|
|
define('BOX_ENTRY_SALEMAKER_ACTIVE','Sales Active');
|
|
|
|
define('LAST_10_DAYS', 'Counter History for last %s recorded days');
|
|
define('SESSION', 'Session');
|
|
define('TOTAL', 'Total');
|
|
?>
|