60 lines
2.9 KiB
PHP
Executable File
60 lines
2.9 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: reviews.php 1969 2005-09-13 06:57:21Z drbyte $
|
|
//
|
|
|
|
define('HEADING_TITLE', 'Reviews');
|
|
|
|
define('TABLE_HEADING_PRODUCTS', 'Products');
|
|
define('TABLE_HEADING_CUSTOMER_NAME','Customer Name');
|
|
define('TABLE_HEADING_RATING', 'Rating');
|
|
define('TABLE_HEADING_DATE_ADDED', 'Date Added');
|
|
define('TABLE_HEADING_STATUS', 'Status');
|
|
define('TABLE_HEADING_ACTION', 'Action');
|
|
|
|
define('ENTRY_PRODUCT', 'Product:');
|
|
define('ENTRY_FROM', 'From:');
|
|
define('ENTRY_DATE', 'Date:');
|
|
define('ENTRY_REVIEW', 'Review:');
|
|
define('ENTRY_REVIEW_TEXT', '<small><font color="#ff0000"><b>NOTE:</b></font></small> HTML is not translated! ');
|
|
define('ENTRY_RATING', 'Rating:');
|
|
|
|
define('TEXT_INFO_DELETE_REVIEW_INTRO', 'Are you sure you want to delete this review?');
|
|
|
|
define('TEXT_INFO_DATE_ADDED', 'Date Added:');
|
|
define('TEXT_INFO_LAST_MODIFIED', 'Last Modified:');
|
|
define('TEXT_INFO_IMAGE_NONEXISTENT', 'IMAGE DOES NOT EXIST');
|
|
define('TEXT_INFO_REVIEW_AUTHOR', 'Author:');
|
|
define('TEXT_INFO_REVIEW_RATING', 'Rating:');
|
|
define('TEXT_INFO_REVIEW_READ', 'Read:');
|
|
define('TEXT_INFO_REVIEW_SIZE', 'Size:');
|
|
define('TEXT_INFO_PRODUCTS_AVERAGE_RATING', 'Average Rating:');
|
|
|
|
define('TEXT_OF_5_STARS', '%s of 5 Stars!');
|
|
define('TEXT_GOOD', '<small><font color="#ff0000"><b>GOOD</b></font></small>');
|
|
define('TEXT_BAD', '<small><font color="#ff0000"><b>BAD</b></font></small>');
|
|
define('TEXT_INFO_HEADING_DELETE_REVIEW', 'Delete Review');
|
|
|
|
define('TEXT_ALL_STATUS','--Any--');
|
|
define('TEXT_PENDING_APPROVAL','Pending Approval');
|
|
define('TEXT_APPROVED','Approved');
|
|
define('HEADING_TITLE_STATUS','Status');
|
|
|
|
?>
|